diff --git a/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.cxx b/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.cxx old mode 100755 new mode 100644 index 538c1e69e8ceb68938186f0bf4248dca81e2fb0b..10f1ace1032c8f879f04729847e72ed2a47f10f4 --- a/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.cxx +++ b/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -26,7 +26,7 @@ PURPOSE: correct time for EM clusters #include "CaloCondBlobObjs/CaloCondUtils.h" #include "AthenaKernel/IOVSvcDefs.h" - +#include "AsgTools/MsgStream.h" using xAOD::CaloCluster; @@ -34,8 +34,7 @@ using xAOD::CaloCluster; CaloClusterTimeTool::CaloClusterTimeTool (const std::string& type,const std::string& name,const IInterface* parent) : AthAlgTool( type, name, parent ), m_LArOnlineIDHelper(nullptr), - m_calo_id(nullptr), - m_LArCablingService("LArCablingService") + m_calo_id(nullptr) { declareInterface<ICaloClusterTimeTool>(this); @@ -49,28 +48,28 @@ CaloClusterTimeTool::~CaloClusterTimeTool() {} StatusCode CaloClusterTimeTool::initialize(){ - msg() << MSG::INFO << "initialize CaloClusterTimeTool " << endmsg; + ATH_MSG_INFO( "initialize CaloClusterTimeTool " ); StatusCode sc = StatusCode::SUCCESS; sc = AthAlgTool::initialize(); if (sc.isFailure()) { - msg() << MSG::ERROR << "Could not initialize AthAlgTool for CaloClusterTimeTool " << endmsg; + ATH_MSG_ERROR( "Could not initialize AthAlgTool for CaloClusterTimeTool " ); return StatusCode::SUCCESS; } else { - msg() << MSG::INFO << "initialize AthAlgTool for CaloClusterTimeTool " << endmsg; + ATH_MSG_INFO( "initialize AthAlgTool for CaloClusterTimeTool " ); } // Retrieve online ID helper sc = detStore()->retrieve(m_LArOnlineIDHelper, "LArOnlineID"); if (sc.isFailure()) { - msg()<< MSG::ERROR << "Could not get LArOnlineIDHelper" << endmsg; + ATH_MSG_ERROR( "Could not get LArOnlineIDHelper" ); return StatusCode::SUCCESS; } else{ - msg() << MSG::INFO << "LArOnlineIDHelper is retrieved" << endmsg; + ATH_MSG_INFO( "LArOnlineIDHelper is retrieved" ); } // Retrieve CaloCell_ID @@ -83,51 +82,43 @@ StatusCode CaloClusterTimeTool::initialize(){ ATH_MSG_INFO("pointer to Calo ID is retrieved"); } - // Retrieve LArCabling Service - sc=m_LArCablingService.retrieve(); - if (sc.isFailure()) { - msg() << MSG::ERROR << "Could not retrieve LArCabling Service " << endmsg; - return StatusCode::SUCCESS; - } - else{ - msg() << MSG::DEBUG << "LArCabling Service is retrieved" << endmsg; - } + ATH_CHECK( m_cablingKey.initialize() ); // register callback if(m_keyFebOffset!=""){ sc = detStore()->regFcn(&CaloClusterTimeTool::updateFebOffsetMap, this, m_febOffsetColl, m_keyFebOffset); if (sc.isFailure()) { - msg()<< MSG::ERROR << "Could not register callback" << endmsg; + ATH_MSG_ERROR( "Could not register callback" ); return StatusCode::SUCCESS; } else{ - msg() << MSG::INFO << "callback is registered" << endmsg; + ATH_MSG_INFO( "callback is registered" ); } } if(m_keyRunOffset!=""){ sc = detStore()->regFcn(&CaloClusterTimeTool::updateRunOffsetMap, this, m_runOffsetColl, m_keyRunOffset); if (sc.isFailure()) { - msg()<< MSG::ERROR << "Could not register callback" << endmsg; + ATH_MSG_ERROR( "Could not register callback" ); return StatusCode::SUCCESS; } else{ - msg() << MSG::INFO << "callback is registered" << endmsg; + ATH_MSG_INFO( "callback is registered" ); } } - msg() << MSG::INFO << "CaloClusterTimeTool is initialized " << endmsg; + ATH_MSG_INFO( "CaloClusterTimeTool is initialized " ); return sc; } -StatusCode CaloClusterTimeTool::updateFebOffsetMap(IOVSVC_CALLBACK_ARGS_K(keys)){ - msg() << MSG::DEBUG << "CaloClusterTimeTool updateFebOffsetMap is called" << endmsg; +StatusCode CaloClusterTimeTool::updateFebOffsetMap(IOVSVC_CALLBACK_ARGS_K(/*keys*/)){ + ATH_MSG_DEBUG( "CaloClusterTimeTool updateFebOffsetMap is called" ); std::list<std::string>::const_iterator itr; - for(itr=keys.begin(); itr!=keys.end(); ++itr){ - msg() << *itr <<""; - } - msg() << endmsg; + //for(itr=keys.begin(); itr!=keys.end(); ++itr){ + // msg() << *itr <<""; + //} + //msg() << endreq; CondAttrListCollection::const_iterator iColl = m_febOffsetColl->begin(); CondAttrListCollection::const_iterator last = m_febOffsetColl->end(); @@ -149,13 +140,13 @@ StatusCode CaloClusterTimeTool::updateFebOffsetMap(IOVSVC_CALLBACK_ARGS_K(keys)) return StatusCode::SUCCESS; } -StatusCode CaloClusterTimeTool::updateRunOffsetMap(IOVSVC_CALLBACK_ARGS_K(keys)){ - msg() << MSG::DEBUG << "CaloClusterTimeTool updateRunOffsetMap is called" << endmsg; +StatusCode CaloClusterTimeTool::updateRunOffsetMap(IOVSVC_CALLBACK_ARGS_K(/*keys*/)){ + ATH_MSG_DEBUG( "CaloClusterTimeTool updateRunOffsetMap is called" ); std::list<std::string>::const_iterator itr; - for(itr=keys.begin(); itr!=keys.end(); ++itr){ - msg() << *itr <<""; - } - msg() << endmsg; + //for(itr=keys.begin(); itr!=keys.end(); ++itr){ + // msg() << *itr <<""; + //} + //msg() << endreq; CondAttrListCollection::const_iterator iColl = m_runOffsetColl->begin(); CondAttrListCollection::const_iterator last = m_runOffsetColl->end(); @@ -181,7 +172,7 @@ StatusCode CaloClusterTimeTool::updateRunOffsetMap(IOVSVC_CALLBACK_ARGS_K(keys)) void CaloClusterTimeTool::makeClusterTimeCorrection(float pv_z, const CaloCluster* cluster, float& time, float& error, unsigned int& flag) { - msg(MSG::DEBUG) << " during CaloClusterTimeTool::makeClusterTimeCorrection " << endmsg; + ATH_MSG_DEBUG( " during CaloClusterTimeTool::makeClusterTimeCorrection " ); error=0.; flag=0x0; @@ -209,7 +200,7 @@ void CaloClusterTimeTool::makeClusterTimeCorrection(float pv_z, const CaloCluste } else{ flag += ( 0x1 << CELL_INFO_MISSING); - msg() << MSG::WARNING << "cell link is invalid " << endmsg; + ATH_MSG_WARNING( "cell link is invalid " ); } if(cell_maxE){ @@ -217,18 +208,18 @@ void CaloClusterTimeTool::makeClusterTimeCorrection(float pv_z, const CaloCluste } else{ flag += ( 0x1 << CLUS_GOODMIDCELL_MISSING); - msg() << MSG::WARNING << "no cell found in middle layer with max energy > 5 GeV and good quality " << endmsg; + ATH_MSG_WARNING( "no cell found in middle layer with max energy > 5 GeV and good quality " ); } } else{ flag += ( 0x1 << CLUS_INFO_MISSING); - msg() << MSG::WARNING << "cluster is empty " << endmsg; + ATH_MSG_WARNING( "cluster is empty " ); } } void CaloClusterTimeTool::makeCellTimeCorrection(float pv_z,const CaloCell* cell, float & time, float & error, unsigned int& flag){ - msg() << MSG::DEBUG << " during CaloClusterTimeTool::makeCellTimeCorrection " << endmsg; + ATH_MSG_DEBUG( " during CaloClusterTimeTool::makeCellTimeCorrection " ); time = cell->time(); error=0.; @@ -275,7 +266,7 @@ void CaloClusterTimeTool::makeCellTimeCorrection(float pv_z,const CaloCell* cell } }// end if LAr EM else{ - msg() << MSG::WARNING <<"channel is not in EMEC or EMB no correction" << endmsg; + ATH_MSG_WARNING( "channel is not in EMEC or EMB no correction" ); flag += ( 0x1 << CELL_NO_EM); return; } @@ -333,16 +324,22 @@ void CaloClusterTimeTool::makeCellTimeCorrection(float pv_z,const CaloCell* cell flag += ( 0x1 << DB_ALL_MISSING); } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return; + } //if(run_number < 177986 || run_number > 191933) flag += ( 0x1 << RUN_NO_OUT_OF_RANGE); IdentifierHash cell_onHash = caloDDEl->onl1(); HWIdentifier cell_onID = m_LArOnlineIDHelper->channel_Id(cell_onHash) ; - HWIdentifier cell_onID_1 = m_LArCablingService->createSignalChannelID(cell_ID); + HWIdentifier cell_onID_1 = cabling->createSignalChannelID(cell_ID); HWIdentifier feb_onID = m_LArOnlineIDHelper->feb_Id(cell_onID_1); HWIdentifier ft_onID = m_LArOnlineIDHelper->feedthrough_Id(cell_onID_1); bool ifValidId = m_LArOnlineIDHelper->isValidId(ft_onID); - msg() << MSG::DEBUG <<"ifValidId="<<ifValidId << endmsg; + ATH_MSG_DEBUG("ifValidId="<<ifValidId ); if(!ifValidId) { - msg() << MSG::WARNING <<"ft_onID is not valid" << endmsg; + ATH_MSG_WARNING( "ft_onID is not valid" ); flag += ( 0x1 << CELL_FTONID_INVALID); return; } @@ -424,7 +421,7 @@ void CaloClusterTimeTool::makeCellTimeCorrection(float pv_z,const CaloCell* cell float CaloClusterTimeTool::energyCorr(float eneOff[], int num, float energy){ ATH_MSG_DEBUG("inside energyCorr"); if(num < 15){ - msg() << MSG::ERROR << "less than 15 parameters are passed to energyCorr" << endmsg; + ATH_MSG_ERROR( "less than 15 parameters are passed to energyCorr" ); return 0; } @@ -482,7 +479,7 @@ float CaloClusterTimeTool::pvCorr(float cellX, float cellY, float cellZ, float p float CaloClusterTimeTool::errorCompute(float errOff[], int num, float energy){ ATH_MSG_DEBUG("inside errorCompute"); if(num < 2){ - msg() << MSG::ERROR << "less than 2 parameters are passed to errorCompute" << endmsg; + ATH_MSG_ERROR( "less than 2 parameters are passed to errorCompute" ); return 0; } diff --git a/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.h b/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.h index 277c04926ba6838cb392a395f05d49028b15ee42..c964a96e03b1bb015fb1d763f87d78c42c910277 100644 --- a/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.h +++ b/Calorimeter/CaloClusterCorrection/src/CaloClusterTimeTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef CALOCLUSTERTIMETOOL_H @@ -27,8 +27,7 @@ PURPOSE: correct time for EM clusters #include "CaloEvent/CaloCell.h" #include "CaloIdentifier/CaloCell_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" - +#include "LArCabling/LArOnOffIdMapping.h" #include <string> #include <vector> @@ -107,7 +106,7 @@ private: const LArOnlineID* m_LArOnlineIDHelper; const CaloCell_ID* m_calo_id; - ToolHandle<LArCablingService> m_LArCablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const DataHandle<CondAttrListCollection> m_febOffsetColl; const DataHandle<CondAttrListCollection> m_runOffsetColl; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadLArRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadLArRetriever.h index b06f931267310601096723b0880d6e31f958f1ec..66e9a46fc55155c23430356f74fef9cddf2a04fa 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadLArRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadLArRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_BADLARRETRIEVER_H @@ -11,7 +11,7 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" @@ -66,7 +66,7 @@ namespace JiveXML{ const CaloIdManager* m_calo_id_man; const CaloCell_ID* m_calocell_id; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /// for properties std::string m_sgKey; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadTileRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadTileRetriever.h index f3335a90ea2d7b76e7b6ea65c4b217ed8b38eb75..84e8273c18a3e9ab316b0d885c8135086467b0be 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadTileRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/BadTileRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_BADTILERETRIEVER_H @@ -11,7 +11,6 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloFCalRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloFCalRetriever.h index bcda5f372ce6cbd6bf023440bb41f23f8c0b2b2a..62fe4e698fb23db7823fa2b5bbc9c5994bdb4375 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloFCalRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloFCalRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_CALOFCALRETRIEVER_H @@ -11,7 +11,7 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" @@ -70,7 +70,7 @@ namespace JiveXML{ const CaloIdManager* m_calo_id_man; const CaloCell_ID* m_calocell_id; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /// for properties std::string m_sgKey; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloHECRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloHECRetriever.h index c7b053e31dc134251c452efa2b4ee5d96aa180ab..d06633e4995fe2638c4f2f842a9fe66937783d57 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloHECRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloHECRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_CALOHECRETRIEVER_H @@ -11,7 +11,7 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" @@ -70,7 +70,7 @@ namespace JiveXML{ const CaloIdManager* m_calo_id_man; const CaloCell_ID* m_calocell_id; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /// for properties std::string m_sgKey; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloLArRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloLArRetriever.h index 21234abe3a68d07f31c402a83ca8a7c6fab5a0ea..cc7157d011d850942ae7d7c3f536118ccc755a43 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloLArRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloLArRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_CALOLARRETRIEVER_H @@ -11,7 +11,7 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" @@ -70,7 +70,7 @@ namespace JiveXML{ const CaloIdManager* m_calo_id_man; const CaloCell_ID* m_calocell_id; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /// for properties std::string m_sgKey; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloTileRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloTileRetriever.h index 53abb0a942b80785c38ff7eae12c8acd111f2de8..17aa9a9e89adecce65acf85633a56a4b611689fd 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloTileRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/CaloTileRetriever.h @@ -15,7 +15,6 @@ #include "TileConditions/ITileBadChanTool.h" #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" diff --git a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/LArDigitRetriever.h b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/LArDigitRetriever.h index 227ca36c4fc685cd6477a41a9eb8d7ac82716a98..69a7c5b9c86f1d7d105f5b82de58d40f5b216ca2 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/LArDigitRetriever.h +++ b/Calorimeter/CaloCnv/CaloJiveXML/CaloJiveXML/LArDigitRetriever.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef JIVEXML_LARDIGITRETRIEVER_H @@ -11,7 +11,7 @@ #include <map> #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "JiveXML/IDataRetriever.h" #include "AthenaBaseComps/AthAlgTool.h" @@ -75,7 +75,7 @@ namespace JiveXML{ std::string m_sgKey; std::string m_sgKeyLArDigit[2]; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const CaloIdManager* m_calo_id_man; const CaloCell_ID* m_calocell_id; diff --git a/Calorimeter/CaloCnv/CaloJiveXML/src/BadLArRetriever.cxx b/Calorimeter/CaloCnv/CaloJiveXML/src/BadLArRetriever.cxx index e446f4ecfceee8f6fe7d236bfa738a96840a5c2b..a07815054c089c2e930805e8ef31058e84cd5e45 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/src/BadLArRetriever.cxx +++ b/Calorimeter/CaloCnv/CaloJiveXML/src/BadLArRetriever.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloJiveXML/BadLArRetriever.h" @@ -18,7 +18,6 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "Identifier/HWIdentifier.h" -#include "LArCabling/LArCablingService.h" using Athena::Units::GeV; @@ -32,8 +31,7 @@ namespace JiveXML { **/ BadLArRetriever::BadLArRetriever(const std::string& type,const std::string& name,const IInterface* parent): AthAlgTool(type,name,parent), - m_typeName("BadLAr"), - m_larCablingSvc("LArCablingService") + m_typeName("BadLAr") { //Only declare the interface @@ -61,6 +59,8 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Initialising Tool" << endmsg; + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -115,15 +115,15 @@ namespace JiveXML { CaloCellContainer::const_iterator it2 = cellContainer->endConstCalo(CaloCell_ID::LAREM); - if(m_larCablingSvc.retrieve().isFailure()) - ATH_MSG_ERROR ("Could not retrieve LArCablingService"); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; const LArOnlineID* onlineId; if ( detStore()->retrieve(onlineId, "LArOnlineID").isFailure()) { if (msgLvl(MSG::ERROR)) msg(MSG::ERROR) << "in getBadLArData(),Could not get LArOnlineID!" << endmsg; } - if (m_doBadLAr==true) { + if (m_doBadLAr && cabling) { double energyGeV; @@ -137,7 +137,7 @@ namespace JiveXML { if ((((*it1)->provenance()&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full conditions for LAr //Identifier cellid = (*it1)->ID(); - HWIdentifier LArhwid = m_larCablingSvc->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); + HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); energyGeV = (*it1)->energy()*(1./GeV); if (energyGeV == 0) energyGeV = 0.001; // 1 MeV due to LegoCut > 0.0 (couldn't be >= 0.0) diff --git a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloFCalRetriever.cxx b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloFCalRetriever.cxx index a1046b8c23582b7169577913e6c407d93b3981af..feaacd0c3b055b3d280929a99e4be5c7d0061c1a 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloFCalRetriever.cxx +++ b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloFCalRetriever.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloJiveXML/CaloFCalRetriever.h" @@ -18,7 +18,6 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "Identifier/HWIdentifier.h" -#include "LArCabling/LArCablingService.h" using Athena::Units::GeV; @@ -32,8 +31,7 @@ namespace JiveXML { **/ CaloFCalRetriever::CaloFCalRetriever(const std::string& type,const std::string& name,const IInterface* parent): AthAlgTool(type,name,parent), - m_typeName("FCAL"), - m_larCablingSvc("LArCablingService") + m_typeName("FCAL") { //Only declare the interface @@ -65,6 +63,8 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Initialising Tool" << endmsg; + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -128,9 +128,13 @@ namespace JiveXML { CaloCellContainer::const_iterator it1 = cellContainer->beginConstCalo(CaloCell_ID::LARFCAL); CaloCellContainer::const_iterator it2 = cellContainer->endConstCalo(CaloCell_ID::LARFCAL); - - if(m_larCablingSvc.retrieve().isFailure()) - ATH_MSG_ERROR ("Could not retrieve LArCablingService"); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + + if(!cabling) { + ATH_MSG_WARNING( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return DataMap; + } const ILArPedestal* larPedestal = nullptr; if(m_doFCalCellDetails){ @@ -166,7 +170,7 @@ namespace JiveXML { if ((((*it1)->provenance()&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full conditions for FCal Identifier cellid = (*it1)->ID(); - HWIdentifier LArhwid = m_larCablingSvc->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); + HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); //ignore FCal cells that are to be masked if (m_doMaskLArChannelsM5){ diff --git a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloHECRetriever.cxx b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloHECRetriever.cxx index f7bb441203cfa0ace18df03b7f57e1a5bfeb6846..1b783e66fd2dc1a46d7b54dfccec23fdb55bd0b6 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloHECRetriever.cxx +++ b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloHECRetriever.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloJiveXML/CaloHECRetriever.h" @@ -18,7 +18,6 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "Identifier/HWIdentifier.h" -#include "LArCabling/LArCablingService.h" using Athena::Units::GeV; @@ -32,8 +31,7 @@ namespace JiveXML { **/ CaloHECRetriever::CaloHECRetriever(const std::string& type,const std::string& name,const IInterface* parent): AthAlgTool(type,name,parent), - m_typeName("HEC"), - m_larCablingSvc("LArCablingService") + m_typeName("HEC") { //Only declare the interface @@ -65,6 +63,8 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Initialising Tool" << endmsg; + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -125,8 +125,12 @@ namespace JiveXML { CaloCellContainer::const_iterator it2 = cellContainer->endConstCalo(CaloCell_ID::LARHEC); - if(m_larCablingSvc.retrieve().isFailure()) - ATH_MSG_ERROR ("Could not retrieve LArCablingService"); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR ("Could not get cabling mapping from key " << m_cablingKey.key() ); + return DataMap; + } const ILArPedestal* larPedestal = nullptr; if(m_doHECCellDetails){ @@ -162,7 +166,7 @@ namespace JiveXML { if ((((*it1)->provenance()&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full conditions for HEC Identifier cellid = (*it1)->ID(); - HWIdentifier LArhwid = m_larCablingSvc->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); + HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); //ignore HEC cells that are to be masked if (m_doMaskLArChannelsM5){ diff --git a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloLArRetriever.cxx b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloLArRetriever.cxx index e61e10d97437ee84628bf798ae539477fd9bba88..0691e794f085f7e36a47894311c3608f105484b2 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/src/CaloLArRetriever.cxx +++ b/Calorimeter/CaloCnv/CaloJiveXML/src/CaloLArRetriever.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloJiveXML/CaloLArRetriever.h" @@ -18,7 +18,6 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "Identifier/HWIdentifier.h" -#include "LArCabling/LArCablingService.h" using Athena::Units::GeV; @@ -32,8 +31,7 @@ namespace JiveXML { **/ CaloLArRetriever::CaloLArRetriever(const std::string& type,const std::string& name,const IInterface* parent): AthAlgTool(type,name,parent), - m_typeName("LAr"), - m_larCablingSvc("LArCablingService") + m_typeName("LAr") { //Only declare the interface @@ -65,6 +63,8 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Initialising Tool" << endmsg; + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -125,9 +125,6 @@ namespace JiveXML { CaloCellContainer::const_iterator it2 = cellContainer->endConstCalo(CaloCell_ID::LAREM); - if(m_larCablingSvc.retrieve().isFailure()) - ATH_MSG_ERROR ("Could not retrieve LArCablingService"); - const ILArPedestal* larPedestal = nullptr; if(m_doLArCellDetails){ if( detStore()->retrieve(larPedestal).isFailure() ){ @@ -155,6 +152,12 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Start iterator loop over cells" << endmsg; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return DataMap; + } for(;it1!=it2;it1++){ @@ -166,7 +169,7 @@ namespace JiveXML { if ((((*it1)->provenance()&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full conditions for LAr Identifier cellid = (*it1)->ID(); - HWIdentifier LArhwid = m_larCablingSvc->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); + HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); //ignore LAr cells that are to be masked if (m_doMaskLArChannelsM5){ diff --git a/Calorimeter/CaloCnv/CaloJiveXML/src/LArDigitRetriever.cxx b/Calorimeter/CaloCnv/CaloJiveXML/src/LArDigitRetriever.cxx index c231f1cbb6d4a55f6b87f2b62636f5587b151ac8..5dcaf68e7c1a1064360d21475874da464f2364ae 100644 --- a/Calorimeter/CaloCnv/CaloJiveXML/src/LArDigitRetriever.cxx +++ b/Calorimeter/CaloCnv/CaloJiveXML/src/LArDigitRetriever.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloJiveXML/LArDigitRetriever.h" @@ -19,7 +19,6 @@ #include "LArRawEvent/LArRawChannelContainer.h" #include "Identifier/HWIdentifier.h" #include "CaloIdentifier/TileID.h" -#include "LArCabling/LArCablingService.h" using CLHEP::GeV; @@ -33,8 +32,7 @@ namespace JiveXML { **/ LArDigitRetriever::LArDigitRetriever(const std::string& type,const std::string& name,const IInterface* parent): AthAlgTool(type,name,parent), - m_typeName("LArDigit"), - m_larCablingSvc("LArCablingService") + m_typeName("LArDigit") { //Only declare the interface @@ -74,6 +72,8 @@ namespace JiveXML { if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Initialising Tool" << endmsg; + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -183,11 +183,6 @@ namespace JiveXML { if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Could not retrieve LArDigits" << endmsg; } -//--- initialize the LArCablingService tool, which can be -//--- used to convert between online and hardware ID-- - - if(m_larCablingSvc.retrieve().isFailure()) - ATH_MSG_ERROR ("Could not retrieve LArCablingService"); const ILArPedestal* larPedestal; if ( detStore()->retrieve(larPedestal).isFailure()){ @@ -212,6 +207,12 @@ namespace JiveXML { //Loop over the digits and find Cell (LAr,HEC, FCAL) //------------------------------------------------------ + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return DataMap; + } if (!scLArDigit.isFailure() && m_doDigit==true) { @@ -228,9 +229,9 @@ namespace JiveXML { for (;itLAr!=itLArEnd;itLAr++){ LArHardwareId = (*itLAr)->hardwareID(); - if (!m_larCablingSvc->isOnlineConnected(LArHardwareId))continue; + if (!cabling->isOnlineConnected(LArHardwareId))continue; - LArId = m_larCablingSvc->cnvToIdentifier(LArHardwareId); //converter + LArId = cabling->cnvToIdentifier(LArHardwareId); //converter const IdentifierHash cellhash=m_calocell_id->calo_cell_hash(LArId); //fast method to find cell int Index = cellContainer->findIndex(cellhash); //find Cell Index @@ -386,7 +387,7 @@ namespace JiveXML { if (Index >= 0 && cellIndex[Index] == Index) continue; //test whether this cell was already retrieved - HWIdentifier LArhwid = m_larCablingSvc->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); + HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash()); if (m_calocell_id->is_tile(cellid) ) continue; if (((((*it1)->provenance())&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full condition for LAr cells diff --git a/Calorimeter/CaloCnv/CaloTTDetDescrCnv/src/CaloTTMgrDetDescrCnv.cxx b/Calorimeter/CaloCnv/CaloTTDetDescrCnv/src/CaloTTMgrDetDescrCnv.cxx old mode 100755 new mode 100644 index 095073b9966995f14df904b9509a2bc28e3ea19b..fb8e446005e726190a4aa3635a351b051548b116 --- a/Calorimeter/CaloCnv/CaloTTDetDescrCnv/src/CaloTTMgrDetDescrCnv.cxx +++ b/Calorimeter/CaloCnv/CaloTTDetDescrCnv/src/CaloTTMgrDetDescrCnv.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /*************************************************************************** @@ -28,7 +28,6 @@ #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetDescrElement.h" -#include "LArCabling/LArCablingService.h" #include "CaloTriggerTool/CaloTriggerTowerService.h" // Instantiation of a static factory class used by clients to create @@ -153,16 +152,12 @@ CaloTTMgrDetDescrCnv::createObj(IOpaqueAddress* pAddr, DataObject*& pObj) if (outputLevel <= MSG::DEBUG) log << MSG::DEBUG << " Retrieved CaloDetDescr Manager " << endmsg; } - // Retrieve LArCablingSvc also needed to build TT geometry IToolSvc* toolSvc; status = service( "ToolSvc",toolSvc ); if(! status.isSuccess()) { return status; } - LArCablingService* cablingSvc; - status =toolSvc->retrieveTool("LArCablingService",cablingSvc); - if(!status.isSuccess() ) return status; - + CaloTriggerTowerService* ttSvc; status =toolSvc->retrieveTool("CaloTriggerTowerService",ttSvc); if(!status.isSuccess() ) return status; diff --git a/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.cxx b/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.cxx index ca3c8cfa15eeed0c7e9afbca4cd7f9d45efb5651..0f1785f5c233feda80d1f274d0f35edf1ae451db 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.cxx +++ b/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloAddCellPedShift.h" #include "CaloIdentifier/CaloGain.h" #include "CaloEvent/CaloCell.h" #include "Identifier/Identifier.h" -#include "LArCabling/LArCablingService.h" //=== AttributeList #include "CoralBase/Blob.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" @@ -20,7 +19,6 @@ CaloAddCellPedShift::CaloAddCellPedShift(const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name,pSvcLocator), m_thistSvc(0), - m_cablingService("LArCablingService"), m_calo_id(0), m_onlineID(0), m_caloCoolIdTool("CaloCoolIdTool"), @@ -65,7 +63,7 @@ StatusCode CaloAddCellPedShift::initialize() ATH_MSG_INFO ( " registered a callback for " << m_folderName << " folder " ); ATH_CHECK( m_caloCoolIdTool.retrieve() ); - ATH_CHECK( m_cablingService.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( detStore()->retrieve(m_onlineID,"LArOnlineID") ); ATH_CHECK( service("THistSvc",m_thistSvc) ); @@ -145,6 +143,13 @@ StatusCode CaloAddCellPedShift::stop() std::vector<float> pedShiftValue; pedShiftValue.resize(ncell,0.); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + FILE* finput = fopen(m_fname.c_str(),"r"); ATH_MSG_INFO ( " opened file " << m_fname ); int bec; @@ -156,7 +161,7 @@ StatusCode CaloAddCellPedShift::stop() while( fscanf(finput,"%d %d %d %d %d %f",&bec,&pos_neg,&FT,&slot,&channel,&pedShift) != EOF ) { ATH_MSG_INFO ( " read linbe " << bec << " " << pos_neg << " " << FT << " " << slot << " " << channel << " " << pedShift ); HWIdentifier hwid = m_onlineID->channel_Id(bec,pos_neg,FT,slot,channel); - Identifier id = m_cablingService->cnvToIdentifier( hwid); + Identifier id = cabling->cnvToIdentifier( hwid); IdentifierHash idHash = m_calo_id->calo_cell_hash(id); int ii = (int) (idHash); pedShiftValue[ii] = pedShift; @@ -245,7 +250,7 @@ StatusCode CaloAddCellPedShift::stop() m_layer = m_calo_id->calo_sample(id); m_Gain = gain; if (iCool<48) { - HWIdentifier hwid = m_cablingService->createSignalChannelID(id); + HWIdentifier hwid = cabling->createSignalChannelID(id); m_bec= m_onlineID->barrel_ec(hwid); m_posneg= m_onlineID->pos_neg(hwid); m_FT= m_onlineID->feedthrough(hwid); diff --git a/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.h b/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.h index 4b95afd7cb0b324ab9ac7b788d5e3c8a70cc7a44..35261369ccb1ae90b663080ffcb3b7bab93b7ee0 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.h +++ b/Calorimeter/CaloCondPhysAlgs/src/CaloAddCellPedShift.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // CaloAddCellPedShift.h @@ -21,13 +21,13 @@ #include "AthenaKernel/IOVSvcDefs.h" #include "CaloCondBlobObjs/ICaloCoolIdTool.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "GaudiKernel/ITHistSvc.h" #include "TTree.h" class CaloCondBlobFlt; class CondAttrListCollection; -class LArCablingService ; class CaloAddCellPedShift : public AthAlgorithm { @@ -58,7 +58,7 @@ class CaloAddCellPedShift : public AthAlgorithm { ITHistSvc* m_thistSvc; - ToolHandle<LArCablingService> m_cablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const CaloCell_ID* m_calo_id; const LArOnlineID* m_onlineID; diff --git a/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.cxx b/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.cxx index bf738b0bc1e66710a2b8260e8d16bda3a6cd4866..ff5d029b70b1bdad0dad31f9d4a29043b77fb4a1 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.cxx +++ b/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloRescaleNoise.h" @@ -54,7 +54,7 @@ StatusCode CaloRescaleNoise::initialize() ATH_CHECK( m_noiseTool.retrieve() ); ATH_CHECK( m_hvCorrTool.retrieve() ); - ATH_CHECK( m_cabling.retrieve()); + ATH_CHECK( m_cablingKey.initialize()); ATH_CHECK( detStore()->regHandle(m_dd_HVScaleCorr,m_keyHVScaleCorr) ); m_tree = new TTree("mytree","Calo Noise ntuple"); @@ -88,6 +88,13 @@ StatusCode CaloRescaleNoise::stop() const CaloDetDescrManager* calodetdescrmgr = nullptr; ATH_CHECK( detStore()->retrieve(calodetdescrmgr) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + FILE* fp = fopen("calonoise.txt","w"); int ncell=m_calo_id->calo_cell_hash_max(); @@ -95,7 +102,7 @@ StatusCode CaloRescaleNoise::stop() for (int i=0;i<ncell;i++) { IdentifierHash idHash=i; Identifier id=m_calo_id->cell_id(idHash); - HWIdentifier hwid=m_cabling->createSignalChannelID(id); + HWIdentifier hwid=cabling->createSignalChannelID(id); const CaloDetDescrElement* calodde = calodetdescrmgr->get_element(id); int subCalo; IdentifierHash idSubHash = m_calo_id->subcalo_cell_hash (idHash, subCalo); diff --git a/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.h b/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.h index c7359e813539f30cc1b3edad83ab5c69854cade3..d5e0a756f77252c233f3f84d22ca5c22bf7099a0 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.h +++ b/Calorimeter/CaloCondPhysAlgs/src/CaloRescaleNoise.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // CaloRescaleNoise.h @@ -24,7 +24,8 @@ #include "LArElecCalib/ILArHVScaleCorr.h" #include "StoreGate/DataHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include "GaudiKernel/ITHistSvc.h" #include "TTree.h" @@ -57,7 +58,7 @@ class CaloRescaleNoise : public AthAlgorithm { ToolHandle<ICaloNoiseTool> m_noiseTool; ToolHandle<ILArHVCorrTool> m_hvCorrTool; - ToolHandle<LArCablingService> m_cabling; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; std::string m_keyHVScaleCorr; const DataHandle<ILArHVScaleCorr> m_dd_HVScaleCorr; diff --git a/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.cxx b/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.cxx index fa0c557fbfa8cb34886d0047fb30270d9b9607dc..4ab6f78cab19151009e828ce71a36ed518c46776 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.cxx +++ b/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.cxx @@ -1,7 +1,7 @@ ///////////////////////// -*- C++ -*- ///////////////////////////// /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // FCAL_HV_Energy_Rescale.cxx @@ -40,7 +40,7 @@ FCAL_HV_Energy_Rescale::~FCAL_HV_Energy_Rescale() StatusCode FCAL_HV_Energy_Rescale::initialize() { CHECK(m_hvCorrTool.retrieve()); - ATH_CHECK( m_cabling.retrieve()); + ATH_CHECK( m_cablingKey.initialize()); return StatusCode::SUCCESS; } @@ -66,6 +66,13 @@ StatusCode FCAL_HV_Energy_Rescale::stop() IdentifierHash hashMin,hashMax; calocell_id->calo_cell_hash_range(CaloCell_ID::LARFCAL, hashMin,hashMax); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + ATH_MSG_INFO( "Working on hash range 0 to " << hashMax ); coral::AttributeListSpecification* spec = new coral::AttributeListSpecification(); @@ -91,7 +98,7 @@ StatusCode FCAL_HV_Energy_Rescale::stop() if (calocell_id->is_fcal(h)) { ++nFCAL; Identifier id=calocell_id->cell_id(h); - HWIdentifier hwid=m_cabling->createSignalChannelID(id); + HWIdentifier hwid=cabling->createSignalChannelID(id); const float corrNew=m_hvCorrTool->Scale(id); const float upd1corr=upd1HVScaleCorr->HVScaleCorr(hwid); diff --git a/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.h b/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.h index a7178c1390c559da44e6188d6315bb478e4a6ac5..c38ab34154ffd0d09f5c4f9c5e97c75cf5f847d8 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.h +++ b/Calorimeter/CaloCondPhysAlgs/src/FCAL_HV_Energy_Rescale.h @@ -1,7 +1,7 @@ ///////////////////////// -*- C++ -*- ///////////////////////////// /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef CALOCONDPHYSALGS_FCAL_HV_ENERGY_RESCALE_H @@ -10,7 +10,7 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" #include "LArElecCalib/ILArHVCorrTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" class FCAL_HV_Energy_Rescale: public AthAlgorithm { @@ -36,7 +36,8 @@ class FCAL_HV_Energy_Rescale: public AthAlgorithm private: ToolHandle<ILArHVCorrTool> m_hvCorrTool; - ToolHandle<LArCablingService> m_cabling; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + std::string m_folder; }; diff --git a/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.cxx b/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.cxx index 2b5a2e2acd61c5a527cc843ccbec6d1a268c4c77..9f2347e49cce9c1c510efd9617f3427f15fae6ad 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.cxx +++ b/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArMinBiasAlg.h" @@ -29,8 +29,7 @@ m_datasetID_lowPt(119995), m_datasetID_highPt(119996), m_weight_lowPt(39.8606), - m_weight_highPt(0.138128), - m_cablingService("LArCablingService") + m_weight_highPt(0.138128) { declareProperty("datasetID_lowPt",m_datasetID_lowPt); declareProperty("datasetID_highPt",m_datasetID_highPt); @@ -82,7 +81,7 @@ ATH_CHECK(m_larmcsym.retrieve()); - ATH_CHECK(m_cablingService.retrieve()); + ATH_CHECK(m_cablingKey.initialize()); m_n1=0; m_n2=0; @@ -115,6 +114,14 @@ ATH_MSG_DEBUG(" LArMinBiasAlg execute()"); if (m_first) { + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + m_ncell = m_calo_id->calo_cell_hash_max(); std::cout << " --- first event " << m_ncell << std::endl; @@ -136,7 +143,7 @@ if (m_calo_id->is_tile(id)) continue; // convert cell id to symetric identifier HWIdentifier hwid2=m_larmcsym->symOnline(id); - Identifier id2 = m_cablingService->cnvToIdentifier(hwid2); + Identifier id2 = cabling->cnvToIdentifier(hwid2); int i2 = (int) (m_calo_id->calo_cell_hash(id2)); if(i2>=m_ncell) { ATH_MSG_WARNING("problem: i2: "<<i2<<" for id: "<<m_calo_id->print_to_string(id)<<" symmetrized: "<<m_calo_id->print_to_string(id2)); diff --git a/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.h b/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.h index ad65c1a8d941fd05e169915da7e4013248fac191..f9289b9223d6b143edfbcbe760d70501cb788271 100644 --- a/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.h +++ b/Calorimeter/CaloCondPhysAlgs/src/LArMinBiasAlg.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // TheLArMinBiasAlg.h @@ -23,7 +23,7 @@ #include "LArElecCalib/ILArMCSymTool.h" #include "LArElecCalib/ILArMinBias.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "GaudiKernel/ITHistSvc.h" #include "TTree.h" @@ -60,7 +60,8 @@ int m_datasetID_highPt; double m_weight_lowPt; double m_weight_highPt; - ToolHandle<LArCablingService> m_cablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + const CaloDetDescrManager* m_calodetdescrmgr = nullptr; const LArEM_ID* m_larem_id = nullptr; const CaloCell_ID* m_calo_id = nullptr; diff --git a/Calorimeter/CaloExample/CaloTests/CaloTests/Analysis.h b/Calorimeter/CaloExample/CaloTests/CaloTests/Analysis.h index 7000834db57dd045fbd2a47fff9edeaca7523c18..0dc72e37b9a156884b1c1e752e0bff333d510e86 100644 --- a/Calorimeter/CaloExample/CaloTests/CaloTests/Analysis.h +++ b/Calorimeter/CaloExample/CaloTests/CaloTests/Analysis.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // TheAnalysis.h @@ -29,13 +29,13 @@ #include "LArRawEvent/LArRawChannelContainer.h" #include "CaloEvent/CaloClusterContainer.h" #include "CaloSimEvent/CaloCalibrationHitContainer.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "GaudiKernel/ITHistSvc.h" #include "TH1.h" #include "TTree.h" class LArDetDescrManager ; -class LArCablingService; class ITriggerTime; namespace MyAnalysis { @@ -132,7 +132,7 @@ namespace MyAnalysis { int m_nevt; - LArCablingService * m_cablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; StringProperty m_triggerTimeToolName; ITriggerTime* m_triggerTimeTool; diff --git a/Calorimeter/CaloExample/CaloTests/CaloTests/AnalysisCal.h b/Calorimeter/CaloExample/CaloTests/CaloTests/AnalysisCal.h index 3bc7a103484cc5beab572ce3b6a98bf0c7da437d..1b47d23660fc211bce9b6a0d9e70cd8d26ebe6e4 100644 --- a/Calorimeter/CaloExample/CaloTests/CaloTests/AnalysisCal.h +++ b/Calorimeter/CaloExample/CaloTests/CaloTests/AnalysisCal.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // TheAnalysis.h @@ -27,7 +27,6 @@ #include "CaloSimEvent/CaloCalibrationHitContainer.h" class LArDetDescrManager ; -class LArCablingService; namespace MyAnalysisCal { diff --git a/Calorimeter/CaloExample/CaloTests/src/MyAnalysis.cxx b/Calorimeter/CaloExample/CaloTests/src/MyAnalysis.cxx index 4d1a47f88dff2f25213cf87feb957eb03bf12c5c..9f9579ca75d5b21c2bacc0a63cc0b5ff9439813d 100644 --- a/Calorimeter/CaloExample/CaloTests/src/MyAnalysis.cxx +++ b/Calorimeter/CaloExample/CaloTests/src/MyAnalysis.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTests/Analysis.h" @@ -26,7 +26,6 @@ #include "LArRawEvent/LArRawChannelContainer.h" #include "LArRawUtils/LArRawDetSelector.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GeneratorObjects/McEventCollection.h" #include "StoreGate/ReadHandle.h" #include "HepMC/GenEvent.h" @@ -72,7 +71,6 @@ namespace MyAnalysis { m_hist_cal1(0), m_hist_cal2(0), m_hist_cal3(0), - m_cablingService(0), m_triggerTimeTool(0), m_larem_id(0), m_calodm_id(0), @@ -254,11 +252,9 @@ namespace MyAnalysis { } } // m_check - IToolSvc* toolSvc = nullptr; - ATH_CHECK( service( "ToolSvc",toolSvc ) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_cablingService) ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( service("THistSvc",m_thistSvc) ); - std::cout << " retrieved THistSvc" << std::endl; + ATH_MSG_INFO( " retrieved THistSvc" ); StatusCode sc; m_hist_etraw_emb_s0 = new TH1D("m_hist_etraw_emb_s0","E EMB S0",4000,-100.,100.); @@ -695,8 +691,11 @@ namespace MyAnalysis { } // m_cell // + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + double etot_raw[4]={0.,0.,0.,0.}; - if (m_raw) { + if (m_raw && cabling) { // Loop over LArRawChannel int nraw=0; SG::ReadHandle<LArRawChannelContainer> rawchannel_container(m_rawChannelName, ctx); @@ -710,7 +709,7 @@ namespace MyAnalysis { const HWIdentifier ch_id = hit.channelID(); Identifier cellID = - m_cablingService->cnvToIdentifier(ch_id); + cabling->cnvToIdentifier(ch_id); // fill list if (m_larem_id->is_lar_em(cellID)) { if (m_check) { diff --git a/Calorimeter/CaloTools/CaloTools/CaloLumiBCIDTool.h b/Calorimeter/CaloTools/CaloTools/CaloLumiBCIDTool.h index 310ffdc8992d2bd501eb1d6db0a2adb2cee5f390..daeab30b66c8422be418dd8b1399a8bacc3a8ad0 100644 --- a/Calorimeter/CaloTools/CaloTools/CaloLumiBCIDTool.h +++ b/Calorimeter/CaloTools/CaloTools/CaloLumiBCIDTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -25,7 +25,7 @@ class CaloDetDescrElement; #include "LArElecCalib/ILArOFCTool.h" #include "LArElecCalib/ILArMCSymTool.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LumiBlockComps/ILuminosityTool.h" #include "TrigAnalysisInterfaces/IBunchCrossingTool.h" @@ -49,7 +49,7 @@ private: const DataHandle<ILArShape> m_dd_shape; const DataHandle<ILArMinBiasAverage> m_dd_minbiasAverage; const DataHandle<ILArOFC> m_dd_ofc; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; ToolHandle<ILArMCSymTool> m_larmcsym; ToolHandle<ILArOFCTool> m_OFCTool; ToolHandle<ILuminosityTool> m_lumiTool; diff --git a/Calorimeter/CaloTools/CaloTools/CaloMBAverageTool.h b/Calorimeter/CaloTools/CaloTools/CaloMBAverageTool.h index 9dc8a1552e8f9dfe0ad8a9dda7f9124bb88e9b9e..afd77f5662fae7b09b2c394b8021256ef43ab504 100644 --- a/Calorimeter/CaloTools/CaloTools/CaloMBAverageTool.h +++ b/Calorimeter/CaloTools/CaloTools/CaloMBAverageTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -30,7 +30,7 @@ class CaloDetDescrElement; #include "AthenaKernel/IOVSvcDefs.h" #include "GaudiKernel/ToolHandle.h" -class LArCablingService; +class LArCablingLegacyService; class CaloMBAverageTool : public extends<AthAlgTool, ICaloMBAverageTool> @@ -51,7 +51,7 @@ private: int m_deltaBunch; std::string m_keyShape, m_keyfSampl, m_keyMinBiasAverage; - ToolHandle<LArCablingService> m_cabling; + ToolHandle<LArCablingLegacyService> m_cabling; unsigned int m_ncell; std::vector<float> m_shift; diff --git a/Calorimeter/CaloTools/CaloTools/CaloNoiseTool.h b/Calorimeter/CaloTools/CaloTools/CaloNoiseTool.h index 08c05058b81f43ba09d07e570add0f565b006021..8bee5a388d9e6e40617b21b6180a18ee0d2e30f6 100644 --- a/Calorimeter/CaloTools/CaloTools/CaloNoiseTool.h +++ b/Calorimeter/CaloTools/CaloTools/CaloNoiseTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -22,7 +22,7 @@ class StoreGateSvc; #include "CaloIdentifier/TileID.h" #include "CaloIdentifier/CaloIdManager.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloIdentifier/LArID_Exception.h" #include "CaloIdentifier/CaloGain.h" @@ -135,7 +135,7 @@ private: IdentifierHash m_CaloHashMax; IdentifierHash m_CaloHashMin; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; std::string m_tileInfoName; const TileInfo* m_tileInfo; diff --git a/Calorimeter/CaloTools/src/CaloLumiBCIDTool.cxx b/Calorimeter/CaloTools/src/CaloLumiBCIDTool.cxx index 59e975ee341a5b2e48d2ede488e9e17a2c09c252..ec5e783c7f3afc0467b9dd19174eae3349bac14c 100644 --- a/Calorimeter/CaloTools/src/CaloLumiBCIDTool.cxx +++ b/Calorimeter/CaloTools/src/CaloLumiBCIDTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTools/CaloLumiBCIDTool.h" @@ -17,7 +17,7 @@ CaloLumiBCIDTool::CaloLumiBCIDTool (const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool(type, name, parent), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_larmcsym("LArMCSymTool"), m_OFCTool("LArOFCTool"), m_lumiTool("LuminosityTool"), diff --git a/Calorimeter/CaloTools/src/CaloMBAverageTool.cxx b/Calorimeter/CaloTools/src/CaloMBAverageTool.cxx index bfc8e70b98ff3b93c1c148f0af92e82a8751ffb9..ca7342bcd912de5b7bbc550b76b57cbdeddb1daa 100644 --- a/Calorimeter/CaloTools/src/CaloMBAverageTool.cxx +++ b/Calorimeter/CaloTools/src/CaloMBAverageTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTools/CaloMBAverageTool.h" @@ -7,7 +7,7 @@ #include "CaloEvent/CaloCell.h" #include "CaloIdentifier/CaloCell_ID.h" #include "CaloIdentifier/CaloIdManager.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" CaloMBAverageTool::CaloMBAverageTool (const std::string& type, const std::string& name, @@ -16,7 +16,7 @@ CaloMBAverageTool::CaloMBAverageTool (const std::string& type, m_OFCTool("LArOFCTool"), m_calo_id(nullptr), m_Nminbias(-1),m_deltaBunch(1),m_keyShape("LArShape"), m_keyfSampl("LArfSampl"), m_keyMinBiasAverage("LArMinBiasAverage"), - m_cabling("LArCablingService"), + m_cabling("LArCablingLegacyService"), m_ncell(0) { declareInterface<ICaloMBAverageTool>(this); diff --git a/Calorimeter/CaloTools/src/CaloNoiseTool.cxx b/Calorimeter/CaloTools/src/CaloNoiseTool.cxx index 2349d359ee687d847c8968e1e46c004da51c1940..a8815c3e9136d3079cb194e6ccc6bd502669028a 100644 --- a/Calorimeter/CaloTools/src/CaloNoiseTool.cxx +++ b/Calorimeter/CaloTools/src/CaloNoiseTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTools/CaloNoiseTool.h" @@ -38,7 +38,7 @@ CaloNoiseTool::CaloNoiseTool(const std::string& type, m_tile_id(nullptr), m_calo_dd_man(nullptr), m_calocell_id(nullptr), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_tileInfoName("TileInfo"), m_tileInfo(nullptr), m_Adc2MeVFactor(0), diff --git a/Calorimeter/CaloTools/src/CaloNoiseToolDB.cxx b/Calorimeter/CaloTools/src/CaloNoiseToolDB.cxx index cb2780af98b6e58209a1ca6d354da0f13df0032d..f6391b631fe818d22d5832cc2777429867ee6fc4 100644 --- a/Calorimeter/CaloTools/src/CaloNoiseToolDB.cxx +++ b/Calorimeter/CaloTools/src/CaloNoiseToolDB.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTools/CaloNoiseToolDB.h" @@ -361,8 +361,11 @@ CaloNoiseToolDB::updateCache() } if (m_cached==ICalorimeterNoiseTool::TOTALNOISE) { float hvcorr=1.0; + ATH_MSG_DEBUG("hvcorr before " << hvcorr); if (m_rescaleForHV && !isTile) hvcorr=m_larHVCellCorrTool->getCorrection(m_calo_id->cell_id(i)); + ATH_MSG_DEBUG("hvcorr after " << hvcorr); float noise = this->getDBNoise(i,caloGain,lumi,hvcorr); + ATH_MSG_DEBUG("noise " << igain << " " << i << " " << noise); m_noise[igain][i] = noise; if (i==0 && m_cacheUpdateCounter==0) { ATH_MSG_INFO( " NoiseDB parameters for first cell at gain " << igain ); diff --git a/Calorimeter/CaloTriggerTool/CaloTriggerTool/CaloTriggerTowerService.h b/Calorimeter/CaloTriggerTool/CaloTriggerTool/CaloTriggerTowerService.h old mode 100755 new mode 100644 index 23dc0dd6d85bb744d45fe2e27234f941ca40becf..68da164d38b210e8d1bdb95be1a989048889a9a9 --- a/Calorimeter/CaloTriggerTool/CaloTriggerTool/CaloTriggerTowerService.h +++ b/Calorimeter/CaloTriggerTool/CaloTriggerTool/CaloTriggerTowerService.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef CALOTRIGGERTOWERSERVICE_H @@ -34,7 +34,7 @@ class LArOnlineID; class LArEM_ID; class TTOnlineID; class CaloLVL1_ID; -class LArCablingService; +class LArCablingLegacyService; static const InterfaceID IID_CaloTriggerTowerService("CaloTriggerTowerService", 1 , 0); @@ -202,7 +202,7 @@ class CaloTriggerTowerService : public AthAlgTool private: /** pointer to the LArCablingSvc tool */ - LArCablingService * m_larcablingSvc; + LArCablingLegacyService * m_larcablingSvc; /** pointer to the LAr Online Id helper */ const LArOnlineID * m_onlineHelper ; /** pointer to the LArEM offline Id helper */ diff --git a/Calorimeter/CaloTriggerTool/src/CaloTriggerTowerService.cxx b/Calorimeter/CaloTriggerTool/src/CaloTriggerTowerService.cxx old mode 100755 new mode 100644 index 9950f01c717c53d6a59a0d5de01a3e65d3a33adb..6b46d65b46bd9556bfc12530260588eb10d70a82 --- a/Calorimeter/CaloTriggerTool/src/CaloTriggerTowerService.cxx +++ b/Calorimeter/CaloTriggerTool/src/CaloTriggerTowerService.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CaloTriggerTool/CaloTriggerTowerService.h" @@ -14,7 +14,7 @@ #include "LArIdentifier/LArOnlID_Exception.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/CaloLVL1_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "GaudiKernel/IToolSvc.h" #include "GaudiKernel/ServiceHandle.h" #include "StoreGate/StoreGateSvc.h" @@ -141,9 +141,9 @@ StatusCode CaloTriggerTowerService::initialize () IToolSvc* toolSvc; status = service( "ToolSvc",toolSvc ); if(status.isSuccess()) { - status = toolSvc->retrieveTool("LArCablingService",m_larcablingSvc); + status = toolSvc->retrieveTool("LArCablingLegacyService",m_larcablingSvc); if(status.isFailure()) { - msg() << MSG::ERROR << "Could not retrieve LArCablingService"<< endmsg; + msg() << MSG::ERROR << "Could not retrieve LArCablingLegacyService"<< endmsg; return(StatusCode::FAILURE); } } else { diff --git a/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChanLegacyTool.h b/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChanLegacyTool.h index 0045710827295ca8f1d0ed5dddbbc1609070f6dd..be223d2732efae9269770513ca81e0cd82bc9bf0 100644 --- a/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChanLegacyTool.h +++ b/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChanLegacyTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArBadChanLegacyTool_H @@ -14,7 +14,7 @@ #include "Identifier/HWIdentifier.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "GaudiKernel/ToolHandle.h" #include "AthenaKernel/IOVSvcDefs.h" #include "AthenaPoolUtilities/AthenaAttributeList.h" @@ -91,7 +91,7 @@ private: const DataHandle<CondAttrListCollection> m_DBColl; const DataHandle<CondAttrListCollection> m_TmpDBColl; const DataHandle<AthenaAttributeList> m_DBBadFebColl; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; mutable BadChanInfo m_HwBadChan; //should be non-mutable if possible mutable OfflineInfo m_OfflineBadChan; diff --git a/LArCalorimeter/LArBadChannelTool/src/LArBadChanLegacyTool.cxx b/LArCalorimeter/LArBadChannelTool/src/LArBadChanLegacyTool.cxx index dd38be3b02d832248d704dfd1e83355a00f289c3..72cc9e2203fc446a72969d36e325a56f1b0a72d2 100644 --- a/LArCalorimeter/LArBadChannelTool/src/LArBadChanLegacyTool.cxx +++ b/LArCalorimeter/LArBadChannelTool/src/LArBadChanLegacyTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArBadChannelTool/LArBadChanLegacyTool.h" @@ -42,7 +42,7 @@ struct BadFebEntryMerger { LArBadChanLegacyTool::LArBadChanLegacyTool(const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool( type, name, parent), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_updatedFromDB( false), m_updatedFebsFromDB( false), m_ready( false), diff --git a/LArCalorimeter/LArBadChannelTool/src/LArBadChannel2Ascii.cxx b/LArCalorimeter/LArBadChannelTool/src/LArBadChannel2Ascii.cxx index 23a6d757c50084f981030a9048581b9644bc534c..394dcb5f733efdca96e0746a3a8af1979c0282a7 100644 --- a/LArCalorimeter/LArBadChannelTool/src/LArBadChannel2Ascii.cxx +++ b/LArCalorimeter/LArBadChannelTool/src/LArBadChannel2Ascii.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArBadChannelTool/LArBadChannel2Ascii.h" #include "LArRecConditions/LArBadFeb.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include <fstream> LArBadChannel2Ascii::LArBadChannel2Ascii(const std::string& name, ISvcLocator* pSvcLocator) : diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArAutoCorrSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArAutoCorrSC.h index 0c821a3138f6835d284a25f5b0f1cad9a794309d..8f0228a93936ec6ef3bc13f7dcdb97acbe4c7b0c 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArAutoCorrSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArAutoCorrSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -26,7 +26,6 @@ class LArAutoCorrSC: bool good() const { return m_isInitialized && m_nChannels>0; } virtual AutoCorrRef_t autoCorr(const HWIdentifier& CellID, int gain) const ; - virtual AutoCorrRef_t autoCorr(const Identifier& CellID, int gain) const; }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondFlatBase.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondFlatBase.h index c2b8ff12cba842adffc4e6fc10dd66654fe03e7c..90102e30e3a3f22f1c83e3e85016e2d08dccae87 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondFlatBase.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondFlatBase.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -9,7 +9,6 @@ #include <string> #include "GaudiKernel/StatusCode.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" // Forward delcarations class MsgStream; @@ -25,7 +24,6 @@ class LArCondFlatBase { protected: bool m_isInitialized; const LArOnlineID* m_onlineHelper; - LArCablingService* m_larCablingSvc; MsgStream* m_log; }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondSuperCellBase.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondSuperCellBase.h index 1021ab090e33bbbf3b876fa02badde31a5fad876..22b1063c6a8ad17db133204cf89fcbea3ef125ce 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondSuperCellBase.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArCondSuperCellBase.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -8,7 +8,6 @@ #include <string> #include "GaudiKernel/StatusCode.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "LArIdentifier/LArOnline_SuperCellID.h" // Forward delcarations @@ -24,7 +23,6 @@ class LArCondSuperCellBase { protected: bool m_isInitialized; const LArOnline_SuperCellID* m_scOnlineID; - LArSuperCellCablingTool* m_scCablingTool; MsgStream* m_log; }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uAFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uAFlat.h index dab544ced410d5311950023c505404b9ad830c77..f15861da20339fa83c59f405728591b7703cbcc5 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uAFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uAFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -27,9 +27,6 @@ public: // retrieving LArDAC2uA using online ID virtual const float& DAC2UA(const HWIdentifier& chid) const; - // retrieving LArDAC2uA using offline ID - virtual const float& DAC2UA(const Identifier& id) const; - }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uASC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uASC.h index 6c8058454a978495580d8def8f0e3d0695464b4f..e490e2425891a69709378fdfacc8cc29bfafdb3d 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uASC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArDAC2uASC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving LArDAC2uA using online ID virtual const float& DAC2UA(const HWIdentifier& chid) const; - // retrieving LArDAC2uA using offline ID - virtual const float& DAC2UA(const Identifier& id) const; - private: // static const float errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrFlat.h index d4efd17665e292aa51e25cdf1a6394e0451796e5..f8be1f6313ecfc8eea5e7c328926a80f5483ddc3 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -27,9 +27,6 @@ public: // retrieving HVScaleCorr using online ID virtual const float& HVScaleCorr(const HWIdentifier& chid) const; - // retrieving HVScaleCorr using offline ID - virtual const float& HVScaleCorr(const Identifier& id) const; - }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrSC.h index 04e8ca4e7ac62114398b41a6f37af9cede45ec2c..fca87e2543f563e75935f3b904f340485c528f04 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArHVScaleCorrSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving LArHVScaleCorr using online ID virtual const float& HVScaleCorr(const HWIdentifier& chid) const; - // retrieving LArHVScaleCorr using offline ID - virtual const float& HVScaleCorr(const Identifier& id) const; - private: //static const float errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMinBiasSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMinBiasSC.h index 78d03191c6dd875d016b2c5cb206baded2530217..48c8368296d215c7573aee12cf253d5c6eb5137d 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMinBiasSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMinBiasSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving LArMinBias using online ID virtual const float& minBiasRMS(const HWIdentifier& chid) const; - // retrieving LArMinBias using offline ID - virtual const float& minBiasRMS(const Identifier& id) const; - private: //static const float errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalFlat.h index 4666bb8cf965a4722348a3876de907a7321264af..25f08c24ee1194aebd253b1844aa304a8e39636f 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving MphysOverMcal using online ID virtual const float& MphysOverMcal(const HWIdentifier& chid, int gain) const; - // retrieving MphysOverMcal using offline ID - virtual const float& MphysOverMcal(const Identifier& id, int gain) const; - }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalSC.h index 701efa606b2cd90bf626740c746077f2263464bc..0816dd20f556951d5ea974caedaa0177405baaea 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArMphysOverMcalSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving LArMphysOverMcal using online ID virtual const float& MphysOverMcal(const HWIdentifier& chid, int gain) const; - // retrieving LArMphysOverMcal using offline ID - virtual const float& MphysOverMcal(const Identifier& id, int gain) const; - private: // static const float s_errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArNoiseSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArNoiseSC.h index c66a9a8edcfa063830d1916e61583f95d113d916..d79bef01b365aa81efc1add3478967c417a87234 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArNoiseSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArNoiseSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -28,9 +28,6 @@ public: // retrieving LArNoise using online ID virtual const float& noise(const HWIdentifier& chid, int gain) const; - // retrieving LArNoise using offline ID - virtual const float& noise(const Identifier& id, int gain) const; - private: //static const float errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArOFCFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArOFCFlat.h index 06fa0f9e574eae4a26911944aa58a5c8e94724e8..d5c75a8a576b788a1a6b51d0220f1ed3cc31ff96 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArOFCFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArOFCFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -13,7 +13,6 @@ #include "LArElecCalib/LArCalibErrorCode.h" #include <vector> -class LArCablingService; class CondAttrListCollection; class LArOFCFlat: public ILArOFC, public LArCondFlatBase { @@ -42,14 +41,6 @@ class LArOFCFlat: public ILArOFC, public LArCondFlatBase { int gain, int tbin=0) const ; - // retrieving coefficients using offline ID - - virtual OFCRef_t OFC_a(const Identifier& CellID, - int gain, - int tbin=0) const; - virtual OFCRef_t OFC_b(const Identifier& CellID, - int gain, - int tbin=0) const; OFCRef_t OFC_a(const IdentifierHash& hs,int gain) const { @@ -71,16 +62,13 @@ class LArOFCFlat: public ILArOFC, public LArCondFlatBase { // retrieving time offset using online/offline ID - virtual float timeOffset(const Identifier& CellID, int gain) const; virtual float timeOffset(const HWIdentifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the number of time-bins (aka "phases") virtual unsigned nTimeBins(const HWIdentifier& CellID, int gain) const; - virtual unsigned nTimeBins(const Identifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the witdth of the time bin (default 24 bins in 25 ns) virtual float timeBinWidth(const HWIdentifier& CellID, int gain) const; - virtual float timeBinWidth(const Identifier& CellID, int gain) const; private: diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalFlat.h index 52b1a2b248d929de427cc53a50ee0d0bdae2e284..97179e154f7009a3f2ea2b49a142d0c94da29102 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -37,10 +37,6 @@ public: virtual float pedestalRMS(const HWIdentifier& CellID, int gain) const; - virtual float pedestal(const Identifier& CellID, int gain) const; - - virtual float pedestalRMS(const Identifier& CellID, int gain) const; - }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalSC.h index 58fd0cb4cb1e3c5f05edce6c554d9614b371f460..5c371cacbc2850a69203f523514f944249d531fd 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArPedestalSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -36,10 +36,6 @@ public: virtual float pedestal(const HWIdentifier& CellID, int gain) const; virtual float pedestalRMS(const HWIdentifier& CellID, int gain) const; - - virtual float pedestal(const Identifier& CellID, int gain) const; - - virtual float pedestalRMS(const Identifier& CellID, int gain) const; }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampFlat.h index ceebdb297f71cbc5c5545a65ea9ca7d5625ea79d..2d50cfdfabfe1cbb0fe2c81c26d044680d647144 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -27,8 +27,6 @@ class LArRampFlat: bool good() const { return m_isInitialized && m_nChannels>0; } virtual RampRef_t ADC2DAC(const HWIdentifier& CellID, int gain) const ; - virtual RampRef_t ADC2DAC(const Identifier& CellID, int gain) const; - }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampSC.h index 2cd0d024bd474ea7044eb07be91761e9fee20f3a..33405517f1344888a75f8994f3bc0e6d80c59b8f 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArRampSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -26,8 +26,6 @@ class LArRampSC: bool good() const { return m_isInitialized && m_nChannels>0; } virtual RampRef_t ADC2DAC(const HWIdentifier& CellID, int gain) const ; - virtual RampRef_t ADC2DAC(const Identifier& CellID, int gain) const; - }; #include "AthenaKernel/CondCont.h" CLASS_DEF( LArRampSC , 43028438, 1 ) diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeBlob.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeBlob.h index 6d0af1bd320c9474cee375547b0a73023aa0dfc0..4d5780c4c990481a7d9a85e00bf944820116cf1e 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeBlob.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeBlob.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -13,7 +13,6 @@ #include "LArElecCalib/LArCalibErrorCode.h" #include <vector> -//class LArCablingService; class CondAttrListCollection; class LArShapeBlob { diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeFlat.h index 91c2ea78794f7416fa4d4b9c1bcc2d9fae427143..599d1c19a75e2205fbfc03534452eb4f248904b2 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -12,7 +12,6 @@ #include "LArElecCalib/LArCalibErrorCode.h" #include <vector> -class LArCablingService; class CondAttrListCollection; class LArShapeFlat: public ILArShape, @@ -41,31 +40,15 @@ class LArShapeFlat: public ILArShape, int tbin=0, int mode=0) const ; - // retrieving coefficients using offline ID - - virtual ShapeRef_t Shape(const Identifier& CellID, - int gain, - int tbin=0, - int mode=0) const; - - virtual ShapeRef_t ShapeDer(const Identifier& CellID, - int gain, - int tbin=0, - int mode=0) const; - - // retrieving time offset using online/offline ID - virtual float timeOffset(const Identifier& CellID, int gain) const; virtual float timeOffset(const HWIdentifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the number of time-bins (aka "phases") virtual unsigned nTimeBins(const HWIdentifier& CellID, int gain) const; - virtual unsigned nTimeBins(const Identifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the witdth of the time bin (default 24 bins in 25 ns) virtual float timeBinWidth(const HWIdentifier& CellID, int gain) const; - virtual float timeBinWidth(const Identifier& CellID, int gain) const; }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeSC.h index 8e31a8dc6b2f0fd100184337b9a3f219ce40856a..767b0c2517c7425e2c44ee4f9406d57679205b01 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArShapeSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -12,7 +12,6 @@ #include "LArElecCalib/LArCalibErrorCode.h" #include <vector> -class LArCablingService; class CondAttrListCollection; class LArShapeSC: public ILArShape, @@ -41,31 +40,15 @@ class LArShapeSC: public ILArShape, int tbin=0, int mode=0) const ; - // retrieving coefficients using offline ID - - virtual ShapeRef_t Shape(const Identifier& CellID, - int gain, - int tbin=0, - int mode=0) const; - - virtual ShapeRef_t ShapeDer(const Identifier& CellID, - int gain, - int tbin=0, - int mode=0) const; - - // retrieving time offset using online/offline ID - virtual float timeOffset(const Identifier& CellID, int gain) const; virtual float timeOffset(const HWIdentifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the number of time-bins (aka "phases") virtual unsigned nTimeBins(const HWIdentifier& CellID, int gain) const; - virtual unsigned nTimeBins(const Identifier& CellID, int gain) const; //For the TB / cosmic case: retrieve the witdth of the time bin (default 24 bins in 25 ns) virtual float timeBinWidth(const HWIdentifier& CellID, int gain) const; - virtual float timeBinWidth(const Identifier& CellID, int gain) const; }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArfSamplSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArfSamplSC.h index 810dfd71565b14964d2b85270332fe1a4c4a1de1..b073298173bcb875cfbe45572a4f5d80ebc39944 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArfSamplSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LArfSamplSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -33,6 +33,7 @@ public: private: //static const float errorcode; + const float m_null; }; diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVFlat.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVFlat.h index 7308a08a05dec2515ab629da157f2fced420decf..c51a1c1c91f23fc00a373b8c6db9a305b5cd6478 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVFlat.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVFlat.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -27,9 +27,6 @@ public: // retrieving LAruA2MeV using online ID virtual const float& UA2MEV(const HWIdentifier& chid) const; - // retrieving LAruA2MeV using offline ID - virtual const float& UA2MEV(const Identifier& id) const; - }; #include "AthenaKernel/CondCont.h" diff --git a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVSC.h b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVSC.h index 54793c9f1d1a4629f82740497ef8a08260e72d14..cfc2819ef8b91323dae10b3d192ab3c24be6fca5 100644 --- a/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVSC.h +++ b/LArCalorimeter/LArCOOLConditions/LArCOOLConditions/LAruA2MeVSC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -27,9 +27,6 @@ public: // retrieving LAruA2MeV using online ID virtual const float& UA2MEV(const HWIdentifier& chid) const; - // retrieving LAruA2MeV using offline ID - virtual const float& UA2MEV(const Identifier& id) const; - private: //static const float errorcode; diff --git a/LArCalorimeter/LArCOOLConditions/src/LArAutoCorrSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArAutoCorrSC.cxx index e9c8b497691a18fdb9e2dc93414aab783467dc35..b2480e18b023eb0a38315fe03d4a0b4e3cb6b029 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArAutoCorrSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArAutoCorrSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArAutoCorrSC.h" @@ -26,9 +26,3 @@ ILArAutoCorr::AutoCorrRef_t LArAutoCorrSC::autoCorr(const HWIdentifier& hwid, in return this->autocorrByHash(hash,0); } -ILArAutoCorr::AutoCorrRef_t LArAutoCorrSC::autoCorr(const Identifier& CellID, int /*gain*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(CellID); - return LArAutoCorrSC::autoCorr(hwid,0); - -} - diff --git a/LArCalorimeter/LArCOOLConditions/src/LArCondFlatBase.cxx b/LArCalorimeter/LArCOOLConditions/src/LArCondFlatBase.cxx index d661265aa1f0006f05b63ababa7f1a33e607937c..e96f9b4374ce83cdb4b422dcaff66b5f53f4afe2 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArCondFlatBase.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArCondFlatBase.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArCondFlatBase.h" @@ -7,7 +7,6 @@ // Services/helpers #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" // Gaudi/Athena #include "GaudiKernel/Bootstrap.h" @@ -20,7 +19,6 @@ LArCondFlatBase::LArCondFlatBase() : m_isInitialized(false), m_onlineHelper(NULL), - m_larCablingSvc(NULL), m_log(NULL) {} LArCondFlatBase::~LArCondFlatBase() { @@ -62,12 +60,6 @@ StatusCode LArCondFlatBase::initializeBase(const char* context) { return sc; } - sc = toolSvc->retrieveTool("LArCablingService",m_larCablingSvc); - if (sc.isFailure()) { - (*m_log) << MSG::ERROR << "Cannot get LArCablingService!" << endmsg; - return sc; - } - m_isInitialized = true; (*m_log) << MSG::DEBUG << "end initializeBase " << endmsg; return (StatusCode::SUCCESS); diff --git a/LArCalorimeter/LArCOOLConditions/src/LArCondSuperCellBase.cxx b/LArCalorimeter/LArCOOLConditions/src/LArCondSuperCellBase.cxx index 23ad736bbafbb20b56ea3618262666abc2f570e8..d472cea56c3e9340e57f8550bc9e342d6fbf019f 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArCondSuperCellBase.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArCondSuperCellBase.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArCondSuperCellBase.h" @@ -19,7 +19,6 @@ LArCondSuperCellBase::LArCondSuperCellBase() : m_isInitialized(false), m_scOnlineID(NULL), - m_scCablingTool(NULL), m_log(NULL) {} LArCondSuperCellBase::~LArCondSuperCellBase() { diff --git a/LArCalorimeter/LArCOOLConditions/src/LArDAC2uAFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArDAC2uAFlat.cxx index 47f0cc1fd4eb6ccf72a872a7bb24856f8d9b3e9f..458107b6b550f778d29e99464e56278d691de0f2 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArDAC2uAFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArDAC2uAFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArDAC2uAFlat.h" @@ -28,8 +28,3 @@ const float& LArDAC2uAFlat::DAC2UA(const HWIdentifier& chid) const { return getDataByHash(m_onlineHelper->channel_Hash(chid),0); } - // retrieving LArDAC2uA using offline ID -const float& LArDAC2uAFlat::DAC2UA(const Identifier& id) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(id); - return DAC2UA(OnId); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArDAC2uASC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArDAC2uASC.cxx index 7e6e106d9ded562958ff950ec69ecd3e903a1b67..25fa3d58f3485c2ad16281f1f50759c5de005c36 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArDAC2uASC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArDAC2uASC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArDAC2uASC.h" @@ -30,8 +30,3 @@ const float& LArDAC2uASC::DAC2UA(const HWIdentifier& hwid) const { return this->getDataByHash(hash, 0); } -// retrieving LArDAC2uA using offline ID -const float& LArDAC2uASC::DAC2UA(const Identifier& cellID) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LArDAC2uASC::DAC2UA(hwid); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArDSPConfig.cxx b/LArCalorimeter/LArCOOLConditions/src/LArDSPConfig.cxx index e1fca14c07a2fb33b7d34da3a0cd3ff0073b82d6..d2b400246ae2f41be27e13d9633481e4416d7385 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArDSPConfig.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArDSPConfig.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArDSPConfig.h" #include "AthenaPoolUtilities/AthenaAttributeList.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArDSPConfig::LArDSPConfig(): m_attrList(nullptr),m_pBlob(nullptr),m_nFebs(0) diff --git a/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrFlat.cxx index 789143e6dbfe0822a376fd56fc5c335a4a652ddd..1d40dc82168697a05ba011474e4c2154d98aeed7 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArHVScaleCorrFlat.h" @@ -33,8 +33,3 @@ const float& LArHVScaleCorrFlat::HVScaleCorr(const HWIdentifier& chid) const { } -// retrieving HVScaleCorr using offline ID -const float& LArHVScaleCorrFlat::HVScaleCorr(const Identifier& id) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(id); - return HVScaleCorr(OnId); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrSC.cxx index 745735f72b3353dfdf350f71838cde74f2a62e93..338adf3400286b74ad6c3ac72d2c3536d156caa6 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArHVScaleCorrSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArHVScaleCorrSC.h" @@ -30,8 +30,3 @@ const float& LArHVScaleCorrSC::HVScaleCorr(const HWIdentifier& hwid) const { return this->getDataByHash(hash, 0); } -// retrieving LArHVScaleCorr using offline ID -const float& LArHVScaleCorrSC::HVScaleCorr(const Identifier& id) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(id); - return LArHVScaleCorrSC::HVScaleCorr(hwid); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArMinBiasSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArMinBiasSC.cxx index cd75d4579229699ab09621129a8312e6fd6c24b0..d33c7f0bcc64fc7d7e2e55ff15c395b629d97fa0 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArMinBiasSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArMinBiasSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArMinBiasSC.h" @@ -31,8 +31,3 @@ const float& LArMinBiasSC::minBiasRMS(const HWIdentifier& hwid) const { return this->getDataByHash(hash, 0); } -// retrieving LArMinBias using offline ID -const float& LArMinBiasSC::minBiasRMS(const Identifier& cellID) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LArMinBiasSC::minBiasRMS(hwid); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalFlat.cxx index ec78bb8b3480eb0c671ccf18ac9e11014545e870..6a14e9543e01fef870d0db6841156d335a9c1233 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArMphysOverMcalFlat.h" @@ -23,8 +23,3 @@ const float& LArMphysOverMcalFlat::MphysOverMcal(const HWIdentifier& chid, int g return getDataByHash(m_onlineHelper->channel_Hash(chid),gain); } - // retrieving MphysOverMcal using offline ID -const float& LArMphysOverMcalFlat::MphysOverMcal(const Identifier& id, int gain) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(id); - return MphysOverMcal(OnId,gain); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalSC.cxx index 533d7b2dfcb5daf8b9b777851e762605d693a78f..336322dd89001350fa32d7a32825b9f199fcc78b 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArMphysOverMcalSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArMphysOverMcalSC.h" @@ -26,9 +26,3 @@ const float& LArMphysOverMcalSC::MphysOverMcal(const HWIdentifier& hwid, int /*g return this->getDataByHash(hash,0); } -// retrieving LArMphysOverMcal using offline ID -const float& LArMphysOverMcalSC::MphysOverMcal(const Identifier& cellID, int /*gain*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LArMphysOverMcalSC::MphysOverMcal(hwid,0); - -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArNoiseSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArNoiseSC.cxx index 15e8e9ad3a38aa9d865ebd638bc256ecdfa31298..e980eeae07b016fa36517fc7ba0fff79fb6e5e87 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArNoiseSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArNoiseSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArNoiseSC.h" @@ -27,9 +27,3 @@ const float& LArNoiseSC::noise(const HWIdentifier& hwid, int /*gain*/) const { return this->getDataByHash(hash, 0); } -// retrieving LArNoise using offline ID -const float& LArNoiseSC::noise(const Identifier& cellID, int /*gain*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return this->noise(hwid,0); - -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArOFCFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArOFCFlat.cxx index 253b2aa2235ba8492ead53ccf2288940a081d0e6..bce71a1823ef1f8955bddaf745e51232139aec52 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArOFCFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArOFCFlat.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArOFCFlat.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArOFCFlat::LArOFCFlat(): m_nChannels(0), @@ -76,15 +75,6 @@ LArOFCFlat::LArOFCFlat(const CondAttrListCollection* attrList) : (*m_log) << MSG::DEBUG << "Found data for " << m_nChannels << endmsg; } -LArOFCFlat::OFCRef_t LArOFCFlat::OFC_a(const Identifier& CellID, int gain, int tbin) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return OFC_a(OnId,gain,tbin); -} -LArOFCFlat::OFCRef_t LArOFCFlat::OFC_b(const Identifier& CellID, int gain, int tbin) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return OFC_b(OnId,gain,tbin); -} - LArOFCFlat::OFCRef_t LArOFCFlat::OFC_a(const HWIdentifier& onId, int gain, int tbin) const { if (tbin!=0) return OFCRef_t(NULL,NULL); return this->OFC_a(m_onlineHelper->channel_Hash(onId),gain); @@ -101,25 +91,12 @@ float LArOFCFlat::timeOffset(const HWIdentifier& CellID, int gain) const { } -float LArOFCFlat::timeOffset(const Identifier& CellID, int gain) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return timeOffset(OnId,gain); -} - - unsigned LArOFCFlat::nTimeBins(const HWIdentifier&, int) const { return 1; } -unsigned LArOFCFlat::nTimeBins(const Identifier&, int) const { - return 1; -} - float LArOFCFlat::timeBinWidth(const HWIdentifier&, int ) const { return (25./24.); } -float LArOFCFlat::timeBinWidth(const Identifier&, int) const { - return (25./24.); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArPedestalFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArPedestalFlat.cxx index 3b022b0cf53f39dc4f966f9205cccb28a5afc97d..e0e6f0f897bab080ad437c0a1757ce7971d1f1c6 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArPedestalFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArPedestalFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArPedestalFlat.h" @@ -8,7 +8,6 @@ #include "CoralBase/Attribute.h" #include "CoralBase/AttributeList.h" #include "CoralBase/AttributeListSpecification.h" -#include "LArCabling/LArCablingService.h" LArPedestalFlat::LArPedestalFlat() {} @@ -23,17 +22,6 @@ LArPedestalFlat::LArPedestalFlat(const CondAttrListCollection* attrList) { } -float LArPedestalFlat::pedestal(const Identifier& CellID, int gain) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return this->pedestal(OnId,gain); -} - -float LArPedestalFlat::pedestalRMS(const Identifier& CellID, int gain) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return this->pedestalRMS(OnId,gain); -} - - float LArPedestalFlat::pedestal(const HWIdentifier& CellID, int gain) const { return this->pedestalByHash(m_onlineHelper->channel_Hash(CellID),gain); } diff --git a/LArCalorimeter/LArCOOLConditions/src/LArPedestalSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArPedestalSC.cxx index ddfe4b0231aaf7ec562c2e543d51c833a598b2f4..25b3d29746b5ed160cf7441580bf7020c0b67688 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArPedestalSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArPedestalSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArPedestalSC.h" @@ -15,16 +15,6 @@ LArPedestalSC::LArPedestalSC(const CondAttrListCollection* attrList) { readBlob(attrList,*m_log); } -float LArPedestalSC::pedestal(const Identifier& cellID, int /*gain*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return this->pedestal(hwid,0); -} - -float LArPedestalSC::pedestalRMS(const Identifier& cellID, int /*gain*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return this->pedestalRMS(hwid,0); -} - float LArPedestalSC::pedestal(const HWIdentifier& hwid, int /*gain*/) const { const IdentifierHash hash=m_scOnlineID->channel_Hash(hwid); diff --git a/LArCalorimeter/LArCOOLConditions/src/LArRampFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArRampFlat.cxx index 416ff2fc79c58e8bffa0ed5706d1d247bb2a7ce2..bb2ca9a8f93a1fe306839e528161386328071ee8 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArRampFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArRampFlat.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArRampFlat.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArRampFlat::LArRampFlat() {} @@ -26,9 +25,3 @@ LArRampFlat::RampRef_t LArRampFlat::ADC2DAC(const HWIdentifier& CellID, int gain return ADC2DACByHash(m_onlineHelper->channel_Hash(CellID),gain); } -LArRampFlat::RampRef_t LArRampFlat::ADC2DAC(const Identifier& CellID, int gain) const -{ - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return this->ADC2DAC(OnId, gain); -} - diff --git a/LArCalorimeter/LArCOOLConditions/src/LArRampSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArRampSC.cxx index 92acdae903ffb21d9d8f9d4de2d8b5e7b7b239d5..0c13a47b6a399b6a60254cc596ff40df0243d590 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArRampSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArRampSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArRampSC.h" @@ -26,8 +26,3 @@ ILArRamp::RampRef_t LArRampSC::ADC2DAC(const HWIdentifier& hwid, int /*gain*/) c return this->ADC2DACByHash(hash, 0); } -ILArRamp::RampRef_t LArRampSC::ADC2DAC(const Identifier& cellID, int /*gain*/) const{ - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LArRampSC::ADC2DAC(hwid, 0); -} - diff --git a/LArCalorimeter/LArCOOLConditions/src/LArShapeBlob.cxx b/LArCalorimeter/LArCOOLConditions/src/LArShapeBlob.cxx index 1403d525105bbc7d2ac4ae2a529b96af7dd49952..3871fe13e284aac191e949ad8266c4ad7121daa3 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArShapeBlob.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArShapeBlob.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArShapeBlob.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArShapeBlob::LArShapeBlob(): m_nChannels(0), diff --git a/LArCalorimeter/LArCOOLConditions/src/LArShapeFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LArShapeFlat.cxx index 4e12957946e419a0a207e33195cc7a46d5310e19..5e7f406e0c3c7811b39107ce44a91b3331747ab3 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArShapeFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArShapeFlat.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArShapeFlat.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArShapeFlat::LArShapeFlat() {} @@ -20,17 +19,6 @@ LArShapeFlat::LArShapeFlat(const CondAttrListCollection* attrList) { } - - -LArShapeFlat::ShapeRef_t LArShapeFlat::Shape(const Identifier& CellID, int gain, int tbin, int mode) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return Shape(OnId,gain,tbin,mode); -} -LArShapeFlat::ShapeRef_t LArShapeFlat::ShapeDer(const Identifier& CellID, int gain, int tbin, int mode) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return ShapeDer(OnId,gain,tbin,mode); -} - LArShapeFlat::ShapeRef_t LArShapeFlat::Shape(const HWIdentifier& onId, int gain, int tbin, int/* mode*/) const { if (tbin!=0) return ShapeRef_t(NULL,NULL); return this->ShapeByHash(m_onlineHelper->channel_Hash(onId),gain); @@ -47,25 +35,13 @@ float LArShapeFlat::timeOffset(const HWIdentifier& CellID, int gain) const { } -float LArShapeFlat::timeOffset(const Identifier& CellID, int gain) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(CellID); - return timeOffset(OnId,gain); -} - unsigned LArShapeFlat::nTimeBins(const HWIdentifier&, int) const { return 1; } -unsigned LArShapeFlat::nTimeBins(const Identifier&, int) const { - return 1; -} - float LArShapeFlat::timeBinWidth(const HWIdentifier&, int ) const { return (25./24.); } -float LArShapeFlat::timeBinWidth(const Identifier&, int) const { - return (25./24.); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArShapeSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArShapeSC.cxx index cc618c145aa6adcd882347f26edf4cf1717680ec..793cc2f21099e44c3861501d96fe24b204bf6f6f 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArShapeSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArShapeSC.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArShapeSC.h" #include "AthenaPoolUtilities/CondAttrListCollection.h" #include "CoralBase/Blob.h" -#include "LArCabling/LArCablingService.h" LArShapeSC::LArShapeSC() {} @@ -22,18 +21,6 @@ LArShapeSC::LArShapeSC(const CondAttrListCollection* attrList) { -LArShapeSC::ShapeRef_t LArShapeSC::Shape(const Identifier& cellID, int /*gain*/, int /*tbin*/, int /*mode*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LArShapeSC::Shape(hwid,0); -} - - - -LArShapeSC::ShapeRef_t LArShapeSC::ShapeDer(const Identifier& CellID, int /*gain*/, int /*tbin*/, int /*mode*/) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(CellID); - return LArShapeSC::ShapeDer(hwid,0); -} - LArShapeSC::ShapeRef_t LArShapeSC::Shape(const HWIdentifier& hwid, int /*gain*/, int, int) const { const IdentifierHash hash=m_scOnlineID->channel_Hash(hwid); return this->ShapeByHash(hash,0); @@ -50,25 +37,11 @@ float LArShapeSC::timeOffset(const HWIdentifier& hwid , int) const { } -float LArShapeSC::timeOffset(const Identifier& CellID, int) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(CellID); - return this->timeOffset(hwid,0); -} - - unsigned LArShapeSC::nTimeBins(const HWIdentifier&, int) const { return 1; } -unsigned LArShapeSC::nTimeBins(const Identifier&, int) const { - return 1; -} - float LArShapeSC::timeBinWidth(const HWIdentifier&, int ) const { return (25./24.); } - -float LArShapeSC::timeBinWidth(const Identifier&, int) const { - return (25./24.); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LArfSamplSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LArfSamplSC.cxx index db3cb809113fb29e541cc8e9b421722bf4d5b120..7f45c38e2dc7f3d7dfa0a8b257b0ee3723a71ec5 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LArfSamplSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LArfSamplSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LArfSamplSC.h" @@ -7,12 +7,12 @@ //const float LArfSamplSC::errorcode=ILArfSampl::ERRORCODE; -LArfSamplSC::LArfSamplSC() {} +LArfSamplSC::LArfSamplSC():m_null(0.) {} LArfSamplSC::~LArfSamplSC() {} -LArfSamplSC::LArfSamplSC(const CondAttrListCollection* attrList) { +LArfSamplSC::LArfSamplSC(const CondAttrListCollection* attrList):m_null(0.) { StatusCode sc=initializeBase("LArfSamplSC"); if (sc.isFailure()) return; @@ -32,7 +32,7 @@ const float& LArfSamplSC::FSAMPL(const HWIdentifier& hwid) const { } // retrieving LArfSampl using offline ID -const float& LArfSamplSC::FSAMPL(const Identifier& id) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(id); - return LArfSamplSC::FSAMPL(hwid); +const float& LArfSamplSC::FSAMPL(const Identifier& /*id*/) const { + (*m_log) << MSG::WARNING << "LArfSamplSC::FSAMPL not implemented for CellId !!!" << endmsg; + return m_null; } diff --git a/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVFlat.cxx b/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVFlat.cxx index 15324fff61ee062e4fd54efef520f96f707146ca..24353f3b90219af74a36f56d05f77be57e2e372b 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVFlat.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LAruA2MeVFlat.h" @@ -28,8 +28,3 @@ const float& LAruA2MeVFlat::UA2MEV(const HWIdentifier& chid) const { return getDataByHash(m_onlineHelper->channel_Hash(chid),0); } - // retrieving LAruA2MeV using offline ID -const float& LAruA2MeVFlat::UA2MEV(const Identifier& id) const { - const HWIdentifier OnId = m_larCablingSvc->createSignalChannelID(id); - return UA2MEV(OnId); -} diff --git a/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVSC.cxx b/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVSC.cxx index 5de0ba1cd301407e5a3955a4a79de9c900831f9a..e4e4688538f459466fbe2edf53a90bf64c6439f3 100644 --- a/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVSC.cxx +++ b/LArCalorimeter/LArCOOLConditions/src/LAruA2MeVSC.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCOOLConditions/LAruA2MeVSC.h" @@ -30,8 +30,3 @@ const float& LAruA2MeVSC::UA2MEV(const HWIdentifier& hwid) const { return this->getDataByHash(hash, 0); } -// retrieving LAruA2MeV using offline ID -const float& LAruA2MeVSC::UA2MEV(const Identifier& cellID) const { - const HWIdentifier hwid=m_scCablingTool->createSignalChannelID(cellID); - return LAruA2MeVSC::UA2MEV(hwid); -} diff --git a/LArCalorimeter/LArCabling/LArCabling/LArCablingDict.h b/LArCalorimeter/LArCabling/LArCabling/LArCablingDict.h old mode 100755 new mode 100644 index a923d92e41e41a3d348a6eca812a08a567b1d94a..337d916b84aa7513f1ecc864cd8d771c603dc8a9 --- a/LArCalorimeter/LArCabling/LArCabling/LArCablingDict.h +++ b/LArCalorimeter/LArCabling/LArCabling/LArCablingDict.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -14,8 +14,6 @@ #ifndef LARCABLING_LARCABLINGDICT_H # define LARCABLING_LARCABLINGDICT_H -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" -#include "LArCabling/LArHVCablingTool.h" +#include "LArCabling/LArCablingLegacyService.h" #endif // LARCABLING_LARCABLINGDICT_H diff --git a/LArCalorimeter/LArCabling/LArCabling/LArCablingService.h b/LArCalorimeter/LArCabling/LArCabling/LArCablingLegacyService.h similarity index 76% rename from LArCalorimeter/LArCabling/LArCabling/LArCablingService.h rename to LArCalorimeter/LArCabling/LArCabling/LArCablingLegacyService.h index 02c9bf9a372dbef942ce35f31a28c8f9e6e82b45..50a6af06dbccddc3857c8122ccbc627d13258cd5 100755 --- a/LArCalorimeter/LArCabling/LArCabling/LArCablingService.h +++ b/LArCalorimeter/LArCabling/LArCabling/LArCablingLegacyService.h @@ -5,8 +5,8 @@ //Dear emacs, this is -*-c++-*- /* date of creation : 12/06/2001 */ -#ifndef LARCABLING_LARCABLINGSERVICE_H -#define LARCABLING_LARCABLINGSERVICE_H +#ifndef LARCABLING_LARCABLINGLEGACYSERVICE_H +#define LARCABLING_LARCABLINGLEGACYSERVICE_H #include "LArCabling/LArCablingBase.h" @@ -22,19 +22,19 @@ */ -static const InterfaceID IID_LArCablingService("LArCablingService", 1 , 0); +static const InterfaceID IID_LArCablingLegacyService("LArCablingLegacyService", 1 , 0); -class LArCablingService : public LArCablingBase { +class LArCablingLegacyService : public LArCablingBase { public: // Retrieve interface ID - static const InterfaceID& interfaceID() { return IID_LArCablingService; } + static const InterfaceID& interfaceID() { return IID_LArCablingLegacyService; } /** constructor */ - LArCablingService( const std::string& type, const std::string& name, const IInterface* parent ) ; + LArCablingLegacyService( const std::string& type, const std::string& name, const IInterface* parent ) ; - ~LArCablingService(); + ~LArCablingLegacyService(); StatusCode initialize( ); @@ -55,7 +55,7 @@ public: /** * "iterator" on LArReadoutModuleIDs <p> */ - const std::vector<HWIdentifier>& getLArRoModIDvec(); + const std::vector<HWIdentifier>& getLArRoModIDvec() ; /** @@ -87,9 +87,9 @@ private: }; -inline const std::vector<HWIdentifier>& LArCablingService::getLArRoModIDvec() { +inline const std::vector<HWIdentifier>& LArCablingLegacyService::getLArRoModIDvec() { if (!m_febRodValid) readFebRodMap(); return m_readoutModuleIDVec; } -#endif // LARCABLING_LARCABLINGSERVICE_H +#endif diff --git a/LArCalorimeter/LArCabling/LArCabling/LArSuperCellCablingTool.h b/LArCalorimeter/LArCabling/LArCabling/LArSuperCellCablingTool.h deleted file mode 100644 index 6abc8b6e1c75e3f6f957d1f24c7b1acd0ec08c34..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArCabling/LArCabling/LArSuperCellCablingTool.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -//Dear emacs, this is -*-c++-*- - -#ifndef LARCABLING_LARSUPERCELLCABLINGTOOL_H -#define LARCABLING_LARSUPERCELLCABLINGTOOL_H - -#include "LArCabling/LArCablingService.h" - - -/** - @class LArSuperCellCablingTool - @brief Tool for mapping online and offline identifiers, <br> - @author Walter Lampl -*/ - - -static const InterfaceID IID_LArSuperCellCablingTool("LArSuperCellCablingTool", 1 , 0); - - -class LArSuperCellCablingTool : public LArCablingBase { - -public: - /** constructor */ - LArSuperCellCablingTool( const std::string& type, const std::string& name, const IInterface* parent ) ; - - ~LArSuperCellCablingTool(); - - StatusCode initialize( ); - - StatusCode iovCallBack(IOVSVC_CALLBACK_ARGS_K(keys)); - - // Retrieve interface ID - static const InterfaceID& interfaceID() { return IID_LArSuperCellCablingTool; } - - - //All other methods inherited from regular LArCablingBase -}; - -#endif // LARCABLING_LARSUPERCELLCABLINGTOOL_H diff --git a/LArCalorimeter/LArCabling/LArCabling/selection.xml b/LArCalorimeter/LArCabling/LArCabling/selection.xml index c5f03d0a2f302d1e87ba45447f6f1d6fb90fb1ca..bb1f63778fcc3aba16631b5b768cdec94c605a78 100755 --- a/LArCalorimeter/LArCabling/LArCabling/selection.xml +++ b/LArCalorimeter/LArCabling/LArCabling/selection.xml @@ -1,8 +1,7 @@ <lcgdict> - <class name="LArCablingService" /> + <class name="LArCablingLegacyService" /> <class name="LArCablingBase" /> - <class name="LArSuperCellCablingTool" /> </lcgdict> diff --git a/LArCalorimeter/LArCabling/python/LArCablingAccess.py b/LArCalorimeter/LArCabling/python/LArCablingAccess.py index b27a8e60d59991b4a20b518a696625122ad190e9..2b3ea74506eeb32df8b533f36ce39c4a2474f82e 100644 --- a/LArCalorimeter/LArCabling/python/LArCablingAccess.py +++ b/LArCalorimeter/LArCabling/python/LArCablingAccess.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration from AthenaCommon.AlgSequence import AthSequencer from IOVDbSvc.CondDB import conddb @@ -21,6 +21,21 @@ def LArOnOffIdMapping(): condSequence+=LArOnOffMappingAlg(ReadKey=folder) return +def LArOnOffIdMappingSC(): + condSequence = AthSequencer("AthCondSeq") + if hasattr(condSequence,"LArOnOffMappingAlg"): + return #Already there.... + + if conddb.isMC: + dbname="LAR_OFL" + else: + dbname="LAR" + + folder="/LAR/IdentifierOfl/OnOffIdMap_SC" + conddb.addFolder(dbname,folder,className="AthenaAttributeList") + condSequence+=LArOnOffMappingAlg(ReadKey=folder, WriteKey="LArOnOffIdMapSC", isSuperCell=True) + return + def LArFebRodMapping(): diff --git a/LArCalorimeter/LArCabling/python/LArCablingConfig.py b/LArCalorimeter/LArCabling/python/LArCablingConfig.py index 22004a58914acc66c634c1173b59349c54531829..39dc340774572ca9c4b99b8377e122c659c47995 100644 --- a/LArCalorimeter/LArCabling/python/LArCablingConfig.py +++ b/LArCalorimeter/LArCabling/python/LArCablingConfig.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator from IOVDbSvc.IOVDbSvcConfig import addFolders @@ -10,7 +10,8 @@ def _larCablingCfg(configFlags,algo,folder): #MC folder-tag hack (See also ATCONDDB-49) tagsperFolder={"/LAR/Identifier/OnOffIdMap":"LARIdentifierOnOffIdMap-012", "/LAR/Identifier/FebRodMap":"LARIdentifierFebRodMap-005", - "/LAR/Identifier/CalibIdMap":"LARIdentifierCalibIdMap-012" + "/LAR/Identifier/CalibIdMap":"LARIdentifierCalibIdMap-012", + "/LAR/IdentifierOfl/OnOffIdMap_SC":"LARIdentifierOflOnOffIdMap_SC-000" } if configFlags.Input.isMC: @@ -30,6 +31,9 @@ def _larCablingCfg(configFlags,algo,folder): def LArOnOffIdMappingCfg(configFlags): return _larCablingCfg(configFlags,LArOnOffMappingAlg,"/LAR/Identifier/OnOffIdMap") +def LArOnOffIdMappingSCCfg(configFlags): + return _larCablingCfg(configFlags,LArOnOffMappingAlg,"/LAR/IdentifierOfl/OnOffIdMap_SC") + def LArFebRodMappingCfg(configFlags): return _larCablingCfg(configFlags,LArFebRodMappingAlg,"/LAR/Identifier/FebRodMap") diff --git a/LArCalorimeter/LArCabling/src/LArCablingService.cxx b/LArCalorimeter/LArCabling/src/LArCablingLegacyService.cxx similarity index 82% rename from LArCalorimeter/LArCabling/src/LArCablingService.cxx rename to LArCalorimeter/LArCabling/src/LArCablingLegacyService.cxx index 3505a68ca6e11fe2d0d1393c16f8f735fb785142..08bf5a245d626d3bc272a43fcde925aec1e4d0f2 100755 --- a/LArCalorimeter/LArCabling/src/LArCablingService.cxx +++ b/LArCalorimeter/LArCabling/src/LArCablingLegacyService.cxx @@ -1,8 +1,8 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration */ -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include <set> #include "AthenaPoolUtilities/AthenaAttributeList.h" #include "CoralBase/Blob.h" @@ -10,25 +10,25 @@ #include "LArIdentifier/LArOnlineID.h" //------------------------------------------------------------- -LArCablingService::LArCablingService( const std::string& type, +LArCablingLegacyService::LArCablingLegacyService( const std::string& type, const std::string& name, const IInterface* parent ) : LArCablingBase(type,name,parent), m_calibValid(false), m_febRodValid(false) { - declareInterface<LArCablingService>(this); + declareInterface<LArCablingLegacyService>(this); declareProperty("LArFebRodMapKey",m_febRodMapKey="/LAR/Identifier/FebRodMap"); declareProperty("LArCalibIDFolder",m_calibIdKey="/LAR/Identifier/CalibIdMap"); } -LArCablingService::~LArCablingService() { } +LArCablingLegacyService::~LArCablingLegacyService() { } //--------------------------------------------------------- -StatusCode LArCablingService::initialize () +StatusCode LArCablingLegacyService::initialize () { - ATH_MSG_DEBUG("Initializing LArCablingService"); + ATH_MSG_DEBUG("Initializing LArCablingLegacyService"); const LArOnlineID* onlineId; StatusCode sc=detStore()->retrieve(onlineId, "LArOnlineID"); @@ -50,7 +50,7 @@ StatusCode LArCablingService::initialize () unsigned nCallbacks=0; if (m_onOffIdKey.size()) { - sc=detStore()->regFcn(&LArCablingService::iovCallBack,this,m_attrOnOff,m_onOffIdKey,true); + sc=detStore()->regFcn(&LArCablingLegacyService::iovCallBack,this,m_attrOnOff,m_onOffIdKey,true); if (sc.isFailure()) { msg(MSG::ERROR) << "Failed to register callback on SG key" << m_onOffIdKey << endmsg; } @@ -61,7 +61,7 @@ StatusCode LArCablingService::initialize () } if (m_calibIdKey.size()) { - sc=detStore()->regFcn(&LArCablingService::iovCallBack,this,m_attrCalib,m_calibIdKey); + sc=detStore()->regFcn(&LArCablingLegacyService::iovCallBack,this,m_attrCalib,m_calibIdKey); if (sc.isFailure()) { msg(MSG::ERROR) << "Failed to register callback on SG key" << m_calibIdKey << endmsg; } @@ -71,7 +71,7 @@ StatusCode LArCablingService::initialize () } } if (m_febRodMapKey.size()) { - sc=detStore()->regFcn(&LArCablingService::iovCallBack,this, m_attrFebRod,m_febRodMapKey); + sc=detStore()->regFcn(&LArCablingLegacyService::iovCallBack,this, m_attrFebRod,m_febRodMapKey); if (sc.isFailure()) { msg() <<MSG::ERROR<<"Failed to register callback on SG key" << m_febRodMapKey << endmsg; } @@ -85,13 +85,13 @@ StatusCode LArCablingService::initialize () msg(MSG::ERROR) << "No callback was sucessfully installed! Configuration problem?" << endmsg; return StatusCode::FAILURE; } - msg(MSG::INFO)<< "Sucessfully initialized LArCablingService with " << nCallbacks << " callbacks." << endmsg; + msg(MSG::INFO)<< "Sucessfully initialized LArCablingLegacyService with " << nCallbacks << " callbacks." << endmsg; return StatusCode::SUCCESS; } -StatusCode LArCablingService::iovCallBack(IOVSVC_CALLBACK_ARGS_K(keys)) { +StatusCode LArCablingLegacyService::iovCallBack(IOVSVC_CALLBACK_ARGS_K(keys)) { msg() << MSG::INFO<<" ====> iovCallBack " << endmsg; for (std::list<std::string>::const_iterator itr=keys.begin(); itr!=keys.end(); ++itr) { @@ -117,7 +117,7 @@ StatusCode LArCablingService::iovCallBack(IOVSVC_CALLBACK_ARGS_K(keys)) { -bool LArCablingService::readCalibMap() { +bool LArCablingLegacyService::readCalibMap() { msg(MSG::DEBUG) << "Start reading calibration line mapping" << endmsg; m_calibValid=false; m_onlHashToCalibLines.clear(); @@ -157,7 +157,7 @@ bool LArCablingService::readCalibMap() { } -bool LArCablingService::readFebRodMap() { +bool LArCablingLegacyService::readFebRodMap() { ATH_MSG_DEBUG("Start reading Feb/Rod mapping"); m_febRodValid=false; m_pFebHashtoROD=NULL; @@ -189,7 +189,7 @@ bool LArCablingService::readFebRodMap() { -const std::vector<HWIdentifier>& LArCablingService::calibSlotLine(const HWIdentifier & sid) { +const std::vector<HWIdentifier>& LArCablingLegacyService::calibSlotLine(const HWIdentifier & sid) { if (m_calibValid || readCalibMap()) { const IdentifierHash sid_hash=m_onlineId->channel_Hash(sid); return m_onlHashToCalibLines[sid_hash]; @@ -202,16 +202,15 @@ const std::vector<HWIdentifier>& LArCablingService::calibSlotLine(const HWIdenti -HWIdentifier LArCablingService::getReadoutModuleID(const HWIdentifier& febId) { +HWIdentifier LArCablingLegacyService::getReadoutModuleID(const HWIdentifier& febId) { const IdentifierHash fHash=m_onlineId->feb_Hash(febId); return getReadoutModuleIDByHash(fHash); } -HWIdentifier LArCablingService::getReadoutModuleIDByHash(const IdentifierHash& febIdHash) { +HWIdentifier LArCablingLegacyService::getReadoutModuleIDByHash(const IdentifierHash& febIdHash) { if (m_febRodValid || readFebRodMap()) { //Check range? - //std::cout<< "getReadoutModuleIDByHash " << std::hex << m_pFebHashtoROD[febIdHash] << std::dec << std::endl; return HWIdentifier(m_pFebHashtoROD[febIdHash]); } else @@ -222,7 +221,7 @@ HWIdentifier LArCablingService::getReadoutModuleIDByHash(const IdentifierHash& f /** * @brief Make sure the onOff map is initialized. */ -StatusCode LArCablingService::checkOnOff() +StatusCode LArCablingLegacyService::checkOnOff() { if (!m_onOffValid) { readOnlOffMap(); diff --git a/LArCalorimeter/LArCabling/src/LArSuperCellCablingTool.cxx b/LArCalorimeter/LArCabling/src/LArSuperCellCablingTool.cxx deleted file mode 100644 index 7c646d1320d33e9c2f4f4a8510cf4d916b856439..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArCabling/src/LArSuperCellCablingTool.cxx +++ /dev/null @@ -1,70 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#include "LArCabling/LArSuperCellCablingTool.h" -#include "CaloIdentifier/CaloCell_SuperCell_ID.h" -#include "AthenaPoolUtilities/AthenaAttributeList.h" -#include "CoralBase/Blob.h" - -#include "LArIdentifier/LArOnline_SuperCellID.h" - -LArSuperCellCablingTool::LArSuperCellCablingTool( const std::string& type, - const std::string& name, - const IInterface* parent ) - : LArCablingBase(type,name,parent){ - declareInterface<LArSuperCellCablingTool>(this); - m_onOffIdKey="/LAR/IdentifierOfl/OnOffIdMap_SC"; -} - - -LArSuperCellCablingTool::~LArSuperCellCablingTool() { } - - -StatusCode LArSuperCellCablingTool::initialize () { - ATH_MSG_DEBUG("Initializing LArSuperCellCablingTool"); - - const LArOnline_SuperCellID* onlineId; - StatusCode sc=detStore()->retrieve(onlineId, "LArOnline_SuperCellID"); - if (sc.isFailure()) { - msg() << MSG::FATAL << "Could not get LArSuperCellOnlineID helper !" << endmsg; - return StatusCode::FAILURE; - } - m_onlineId=onlineId; //Cast to base-class - - const CaloCell_SuperCell_ID* caloCell_ID; - sc=detStore()->retrieve(caloCell_ID,"CaloCell_SuperCell_ID"); - if (sc.isFailure()) { - msg() << MSG::FATAL << "Could not get CaloSuperCell_ID helper !" << endmsg; - return StatusCode::FAILURE; - } - m_caloId=caloCell_ID; //Cast to base-class - - sc=detStore()->regFcn(&LArSuperCellCablingTool::iovCallBack,this,m_attrOnOff,m_onOffIdKey); - if (sc.isFailure()) { - msg(MSG::ERROR) << "Failed to register callback on SG key" << m_onOffIdKey << endmsg; - return sc; - } - else { - msg(MSG::INFO) << "Successfully installed callback on folder" << m_onOffIdKey << endmsg; - } - // Global INFO on initialize() - msg() <<MSG::INFO<< "Sucessfully initialized LArCablingService "<< endmsg; //Add more info about regular or SC, with or wo calib-lines, etc. - return StatusCode::SUCCESS; -} - - -StatusCode LArSuperCellCablingTool::iovCallBack(IOVSVC_CALLBACK_ARGS_K(keys)) { - msg() << MSG::INFO<<" ====> iovCallBack " << endmsg; - - for (std::list<std::string>::const_iterator itr=keys.begin(); itr!=keys.end(); ++itr) { - ATH_MSG_DEBUG("IOV callback for key " << *itr); - if (*itr==m_onOffIdKey) { - m_onOffValid=false; - readOnlOffMap(); - } - else - msg(MSG::WARNING) << "Callback fired for unknown key " << *itr << endmsg; - } //end loop over keys - return StatusCode::SUCCESS; -} diff --git a/LArCalorimeter/LArCabling/src/components/LArCabling_entries.cxx b/LArCalorimeter/LArCabling/src/components/LArCabling_entries.cxx index 97e96135dee849abb45c38857f5647a93895b49a..8744c031e3ff8b372d466a502f4b5f03dffb619e 100644 --- a/LArCalorimeter/LArCabling/src/components/LArCabling_entries.cxx +++ b/LArCalorimeter/LArCabling/src/components/LArCabling_entries.cxx @@ -1,9 +1,6 @@ -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArCabling/LArHVCablingTool.h" -#include "LArCabling/LArSuperCellCablingTool.h" -DECLARE_COMPONENT( LArCablingService ) +DECLARE_COMPONENT( LArCablingLegacyService ) DECLARE_COMPONENT( LArHVCablingTool ) -DECLARE_COMPONENT( LArSuperCellCablingTool ) - diff --git a/LArCalorimeter/LArCafJobs/LArCafJobs/LArHECNoise.h b/LArCalorimeter/LArCafJobs/LArCafJobs/LArHECNoise.h old mode 100755 new mode 100644 index ef386ac3b833ba85ba641aab88133933b09a2489..6a785be6178ceb67d36dee3a1c7d558bd8031339 --- a/LArCalorimeter/LArCafJobs/LArCafJobs/LArHECNoise.h +++ b/LArCalorimeter/LArCafJobs/LArCafJobs/LArHECNoise.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArHECNoise_H @@ -22,7 +22,8 @@ #include "CaloInterface/ICaloNoiseTool.h" #include "CaloInterface/ICalorimeterNoiseTool.h" #include "TrigAnalysisInterfaces/IBunchCrossingTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "LArCabling/LArHVCablingTool.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArElectrodeID.h" @@ -42,7 +43,6 @@ class LArOnlineID; class LArElectrodeID; class HWIdentifier; -class LArCablingService; class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; @@ -66,8 +66,8 @@ class LArHECNoise : public AthAlgorithm { TTree* m_tree; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /*Tools*/ - ToolHandle<LArCablingService> m_LArCablingService; ToolHandle<ICaloNoiseTool> m_calo_noise_tool; ToolHandle<Trig::IBunchCrossingTool> m_bc_tool; diff --git a/LArCalorimeter/LArCafJobs/LArCafJobs/LArNoiseBursts.h b/LArCalorimeter/LArCafJobs/LArCafJobs/LArNoiseBursts.h old mode 100755 new mode 100644 index 0c4e6ddb5b12d06e3ed1b32ce11acc1395db7bd3..ff34065f8ef926c8c3766c5ba9ea8050a1be962c --- a/LArCalorimeter/LArCafJobs/LArCafJobs/LArNoiseBursts.h +++ b/LArCalorimeter/LArCafJobs/LArCafJobs/LArNoiseBursts.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArNoiseBursts_H @@ -52,7 +52,6 @@ class LArOnlineID; class LArElectrodeID; class HWIdentifier; class LArOnlineIDStrHelper; -class LArCablingService; class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; diff --git a/LArCalorimeter/LArCafJobs/LArCafJobs/LArSimpleShapeDumper.h b/LArCalorimeter/LArCafJobs/LArCafJobs/LArSimpleShapeDumper.h old mode 100755 new mode 100644 index 5e52ed8e9fe134fdf7bd0f12c89b1bb47530f272..7b1d57a60f9232e8f34421ff67b7804ff7f76a98 --- a/LArCalorimeter/LArCafJobs/LArCafJobs/LArSimpleShapeDumper.h +++ b/LArCalorimeter/LArCafJobs/LArCafJobs/LArSimpleShapeDumper.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -13,7 +13,6 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" #include "StoreGate/DataHandle.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" diff --git a/LArCalorimeter/LArCafJobs/src/LArHECNoise.cxx b/LArCalorimeter/LArCafJobs/src/LArHECNoise.cxx index 85e4f99048f1a871dc5572112e2eb7e59b1676b0..74059869d27846beaaf37efc3fa4f2df8c2ea895 100644 --- a/LArCalorimeter/LArCafJobs/src/LArHECNoise.cxx +++ b/LArCalorimeter/LArCafJobs/src/LArHECNoise.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "GaudiKernel/MsgStream.h" @@ -63,7 +63,6 @@ LArHECNoise::LArHECNoise(const std::string& name, : AthAlgorithm(name, pSvcLocator), m_thistSvc(0), m_tree(0), - m_LArCablingService("LArCablingService"), m_trigDec( "Trig::TrigDecisionTool/TrigDecisionTool" ), m_LArOnlineIDHelper(0), m_caloIdMgr(0), @@ -103,7 +102,6 @@ LArHECNoise::LArHECNoise(const std::string& name, declareProperty( "TrigDecisionTool", m_trigDec ); /** switches to control the analysis through job options */ - declareProperty("LArCablingService", m_LArCablingService); declareProperty("TriggerLines",m_TriggerLines={"L1_J5", "L1_J10", "L1_J12", "L1_J30", "L1_TAU5", "L1_TAU8", "L1_J5_EMPTY", "L1_J10_EMPTY", "L1_J12_EMPTY", "L1_J30_EMPTY", "L1_TAU5_EMPTY", "L1_TAU8_EMPTY", "L1_J5_FIRSTEMPTY", "L1_J10_FIRSTEMPTY", "L1_J12_FIRSTEMPTY", "L1_J30_FIRSTEMPTY", "L1_TAU5_FIRSTEMPTY", "L1_TAU8_FIRSTEMPTY"}); @@ -125,7 +123,7 @@ StatusCode LArHECNoise::initialize() { // Trigger Decision Tool ATH_CHECK(m_trigDec.retrieve()); - ATH_CHECK( m_LArCablingService.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); // Retrieve online ID helper const DataHandle<LArOnlineID> LArOnlineIDHelper; @@ -223,6 +221,13 @@ StatusCode LArHECNoise::execute() { ATH_CHECK(evtStore()->retrieve(lraw, "LArRawChannels")); } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + // retrieve pedestals ATH_CHECK( detStore()->retrieve(m_ped,"Pedestal") ); @@ -275,7 +280,7 @@ StatusCode LArHECNoise::execute() { m_nt_evtCount += 1; m_nt_gain = pLArDigit->gain(); - Identifier oid = m_LArCablingService->cnvToIdentifier(hid); + Identifier oid = cabling->cnvToIdentifier(hid); m_nt_OID = pLArDigit->channelID().get_compact(); m_nt_ped = m_ped->pedestal(pLArDigit->channelID(),pLArDigit->gain()); m_nt_pedRMS = m_ped->pedestalRMS(pLArDigit->channelID(),pLArDigit->gain()); diff --git a/LArCalorimeter/LArCalibDataQuality/LArCalibDataQuality/LArBadEventCatcher.h b/LArCalorimeter/LArCalibDataQuality/LArCalibDataQuality/LArBadEventCatcher.h index 31a070a8b81435e9e28b08489dcc83933cbe9f0c..bed69104f8b05b0a65be7e24b2dd9c446a8b34e7 100644 --- a/LArCalorimeter/LArCalibDataQuality/LArCalibDataQuality/LArBadEventCatcher.h +++ b/LArCalorimeter/LArCalibDataQuality/LArCalibDataQuality/LArBadEventCatcher.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emeacs, this is -*-C++-*- @@ -22,7 +22,6 @@ #include <string> #include <vector> -class LArCablingService; class LArOnlineID; /** @@ -55,6 +54,7 @@ public: private: + std::string decipherFebError(const uint32_t errword) const; @@ -62,8 +62,6 @@ public: //Online ID helper const LArOnlineID* m_onlineID; - //Cabling Service - ToolHandle<LArCablingService> m_larCablingSvc; //jobProperties diff --git a/LArCalorimeter/LArCalibDataQuality/src/LArBadEventCatcher.cxx b/LArCalorimeter/LArCalibDataQuality/src/LArBadEventCatcher.cxx index d35a62cbfd2b47522a39adccd2a760caab6f8858..a774f60f5f83e2776908f7b0187f75178a3ebe11 100644 --- a/LArCalorimeter/LArCalibDataQuality/src/LArBadEventCatcher.cxx +++ b/LArCalorimeter/LArCalibDataQuality/src/LArBadEventCatcher.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibDataQuality/LArBadEventCatcher.h" @@ -11,12 +11,9 @@ #include "xAODEventInfo/EventInfo.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" - LArBadEventCatcher::LArBadEventCatcher(const std::string & name, ISvcLocator * pSvcLocator) : AthAlgorithm(name,pSvcLocator), m_onlineID(0), - m_larCablingSvc("LArCablingService"), m_thisSize(0) { m_keyList.push_back("HIGH"); @@ -62,14 +59,6 @@ StatusCode LArBadEventCatcher::initialize() { return StatusCode::FAILURE; } - - - sc=m_larCablingSvc.retrieve(); - if (sc.isFailure()) { - ATH_MSG_ERROR ("Failed to retrieve LArCablingService"); - return sc; - } - return StatusCode::SUCCESS; } diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArAutoCorrFromStdNtuple.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArAutoCorrFromStdNtuple.h old mode 100755 new mode 100644 index f618f3ef790549a477e34d22f2352f7287b7b06c..e0768e4fbdb36ae91e5bb86819125f709b660a1d --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArAutoCorrFromStdNtuple.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArAutoCorrFromStdNtuple.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARAUTOCORRFROMSTDNTUPLE_H @@ -7,6 +7,7 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" #include <vector> #include <string> @@ -54,6 +55,7 @@ class LArAutoCorrFromStdNtuple : public AthAlgorithm bool m_sFcal; ToolHandle<ILArMCSymTool> m_larmcsym; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; }; #endif diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArAverages2Ntuple.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArAverages2Ntuple.h old mode 100755 new mode 100644 index 93a3a48badaf869f4d1890316077ffdce2f8eb21..2294599dd0f1abd7d912e58b8f9a6d9cc8b6f18d --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArAverages2Ntuple.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArAverages2Ntuple.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -24,10 +24,11 @@ #include "GaudiKernel/IToolSvc.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/CaloIdManager.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" #include <fstream> #include <math.h> @@ -48,7 +49,8 @@ class LArAverages2Ntuple : public AthAlgorithm const LArEM_ID* m_emId; const LArOnlineID* m_onlineHelper; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; std::string m_ntuplePath; std::string m_contKey; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArCompleteToFlat.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArCompleteToFlat.h index d85b087febdcd9d62a9aa9f6a37f5432fa661f8e..ef41f8df511ba0bed536841897461030256778d9 100644 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArCompleteToFlat.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArCompleteToFlat.h @@ -1,7 +1,7 @@ //-*- C++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -12,8 +12,8 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "LArRawConditions/LArConditionsContainer.h" #include "LArRawConditions/LArSingleFloatP.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/ToolHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" class LArOnlineID; class CondAttrListCollection; @@ -67,7 +67,7 @@ class LArCompleteToFlat: public AthAlgorithm const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; ///InputSGKeys std::string m_uA2MeVInput; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArCond2NtupleBase.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArCond2NtupleBase.h index ab1a6999daa5304c686ffc6ea5e6e2531dc31853..11a125292f33062cf31458a79289e382c8d4ac6f 100644 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArCond2NtupleBase.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArCond2NtupleBase.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -11,7 +11,6 @@ #include "GaudiKernel/NTuple.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "LArElecCalib/ILArFEBTempTool.h" #include "StoreGate/ReadCondHandleKey.h" @@ -75,6 +74,7 @@ class LArCond2NtupleBase : public AthAlgorithm { ToolHandle<ILArFEBTempTool> m_FEBTempTool; SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKeySC{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; SG::ReadCondHandleKey<LArBadChannelCont> m_BCKey{this, "BadChanKey", "LArBadChannel", "SG bad channels key"}; SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArFillDSPConfig.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArFillDSPConfig.h index 55100b4452cf3dcb2b32b72fb58048bbc503571c..3a6f5368e5b6b99f447e8f7b57cbd0fe6f5b12cb 100644 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArFillDSPConfig.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArFillDSPConfig.h @@ -1,7 +1,7 @@ //-*- C++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -10,7 +10,6 @@ #include <string> #include "AthenaBaseComps/AthAlgorithm.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/ToolHandle.h" class LArOnlineID; @@ -39,9 +38,6 @@ class LArFillDSPConfig: public AthAlgorithm LArFillDSPConfig(); const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingSvc; - - std::string m_folderName; bool m_dump; }; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArOFCBinAlg.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArOFCBinAlg.h index 8b766c09a950b84fea4c2b2e7cf35321ba55a841..720fee57e763805905c9029ac6e70ed8a2b0ec95 100644 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArOFCBinAlg.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArOFCBinAlg.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Dear emacs, this is -*-c++-*- @@ -8,6 +8,7 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "LArCalibTools/LArCond2NtupleBase.h" +#include "LArCabling/LArOnOffIdMapping.h" class LArOFCBinAlg: public LArCond2NtupleBase { @@ -24,6 +25,7 @@ class LArOFCBinAlg: public LArCond2NtupleBase { private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; std::string m_inputContainer; std::string m_outputContainer; std::string m_fileName; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArParams2Ntuple.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArParams2Ntuple.h old mode 100755 new mode 100644 index 742e08a296c31f0752981b344a1657df23a66d55..c616b549d6bc491d682e81c95a1a6c86f4697b7d --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArParams2Ntuple.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArParams2Ntuple.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -74,7 +74,7 @@ class LArParams2Ntuple : public LArCond2NtupleBase const LArEMEC_HVbetaComplete* m_completeEMEC_HVbeta ; const LArCableLengthComplete* m_completeCableLength ; const LArCableAttenuationComplete* m_completeCableAttenuation ; - const LArCaliPulseParamsVsCalib* m_calibCaliPulseParams ; + //const LArCaliPulseParamsVsCalib* m_calibCaliPulseParams ; const LArOFCBinComplete* m_completeOFCBin ; @@ -113,7 +113,7 @@ class LArParams2Ntuple : public LArCond2NtupleBase // { return m_detStore->retrieve(dynamic_cast<const ILArCableAttenuation*&>(data_object) ) ; } inline StatusCode retrieveAbstractInterface(const LArCaliPulseParamsComplete*& data_object); - inline StatusCode retrieveAbstractInterface(const LArCaliPulseParamsVsCalib*& data_object); + //inline StatusCode retrieveAbstractInterface(const LArCaliPulseParamsVsCalib*& data_object); inline StatusCode retrieveAbstractInterface(const LArDetCellParamsComplete*& data_object); inline StatusCode retrieveAbstractInterface(const LArPhysCaliTdiffComplete*& data_object); inline StatusCode retrieveAbstractInterface(const LArTdriftComplete*& data_object); diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArParamsProperties.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArParamsProperties.h old mode 100755 new mode 100644 index 850efc3025e3b299e45b8427bd8644d3ca690180..9a58c4a1f6399e537673f187fdb5d2bf51e13211 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArParamsProperties.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArParamsProperties.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -27,7 +27,6 @@ #include "LArRawConditions/LArEMEC_HVbetaComplete.h" #include "LArRawConditions/LArCableLengthComplete.h" #include "LArRawConditions/LArCableAttenuationComplete.h" -#include "LArRawConditions/LArCaliPulseParamsVsCalib.h" #include "LArRawConditions/LArOFCBinComplete.h" #include "LArRawConditions/LArPhysCaliTdiffComplete.h" @@ -92,7 +91,7 @@ namespace LArParamsProperties { EMEC_HVbetaComplete , CableLengthComplete , CableAttenuationComplete , - CaliPulseParamsVsCalib , + //CaliPulseParamsVsCalib , OFCBinComplete , END_OF_LIST // used to count allowed data classes } ; @@ -111,7 +110,7 @@ namespace LArParamsProperties { unsigned getClassIndex(const LArEMEC_HVbetaComplete*); unsigned getClassIndex(const LArCableLengthComplete*); unsigned getClassIndex(const LArCableAttenuationComplete*); - unsigned getClassIndex(const LArCaliPulseParamsVsCalib*); + //unsigned getClassIndex(const LArCaliPulseParamsVsCalib*); unsigned getClassIndex(const LArOFCBinComplete*); unsigned getClassIndex(const LArPhysCaliTdiffComplete*); diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.h b/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.h old mode 100755 new mode 100644 index 4af8a668aa28fe2c5a4cd8b4da0f342fac1b42ef..703219f7ee0aeb01fe6507cd97d929e2c84c9e44 --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.h +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -29,11 +29,10 @@ #include "GaudiKernel/ISvcLocator.h" #include "GaudiKernel/IToolSvc.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" - +#include "LArCabling/LArOnOffIdMapping.h" #include "LArCalibTools/LArParamsProperties.h" //using namespace LArParamsProperties ; @@ -55,7 +54,7 @@ class LArReadParamsFromFile : public AthAlgorithm const LArEM_ID* m_emId; const LArHEC_ID* m_hecId; const LArFCAL_ID* m_fcalId; - LArCablingService *m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; // LArConditionsContainerBase::GroupingType m_groupingType ; int m_groupingType ; std::string m_groupingName ; @@ -120,10 +119,11 @@ class LArReadParamsFromFile : public AthAlgorithm complete->set(chid, data[0]) ; return StatusCode::SUCCESS ; } ; - StatusCode set(LArCaliPulseParamsVsCalib* calib, HWIdentifier chid, int /*gain*/, std::vector<float> data) { - calib->set(chid, data[0], data[1], data[2], data[3], (short)data[4]) ; - return StatusCode::SUCCESS ; - } ; + + //StatusCode set(LArCaliPulseParamsVsCalib* calib, HWIdentifier chid, int /*gain*/, std::vector<float> data) { + // calib->set(chid, data[0], data[1], data[2], data[3], (short)data[4]) ; + // return StatusCode::SUCCESS ; + //`} ; // define symLink for all classes //-------------------------------- @@ -140,7 +140,7 @@ class LArReadParamsFromFile : public AthAlgorithm void do_symLink(const LArEMEC_HVbetaComplete* data) { detStore()->symLink(data,(ILArEMEC_HVbeta*)data) ; } ; void do_symLink(const LArCableLengthComplete* data) { detStore()->symLink(data,(ILArCableLength*)data) ; } ; void do_symLink(const LArCableAttenuationComplete* data){ detStore()->symLink(data,(ILArCableAttenuation*)data); } ; - void do_symLink(const LArCaliPulseParamsVsCalib* data) { detStore()->symLink(data,(ILArCaliPulseParams*)data) ; } ; +// void do_symLink(const LArCaliPulseParamsVsCalib* data) { detStore()->symLink(data,(ILArCaliPulseParams*)data) ; } ; }; diff --git a/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.icc b/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.icc old mode 100755 new mode 100644 index 6170ab12045d2bf2a79266d84a4f29ab3f55fa0e..b39eb1b77cec5437ec3b6a5dd9646f7bbf4f8f4d --- a/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.icc +++ b/LArCalorimeter/LArCalibTools/LArCalibTools/LArReadParamsFromFile.icc @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -18,7 +18,6 @@ LArReadParamsFromFile<DATA>::LArReadParamsFromFile(const std::string& name, ISvc m_emId(0), m_hecId(0), m_fcalId(0), - m_larCablingSvc(0), m_groupingType(LArConditionsContainerBase::SingleGroup), m_useCalibLines(false), m_dataclass(0) @@ -79,7 +78,7 @@ StatusCode LArReadParamsFromFile<DATA>::initialize() { ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); if ( m_chIdType == std::string("UNKNOWN") ) { // use jO specification (default=false) for m_useOfflineIdentifier @@ -155,6 +154,13 @@ StatusCode LArReadParamsFromFile<DATA>::readFile() { std::vector<float> pRead ; HWIdentifier chID ; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + std::ifstream f(m_file.c_str()) ; // open input file if ( ! f.good() ) { ATH_MSG_ERROR ( "Could not open file " << m_file << ", are you sure it exists??" ); @@ -241,7 +247,7 @@ StatusCode LArReadParamsFromFile<DATA>::readFile() { } if ( good_chID ) { try { - chID = m_larCablingSvc->createSignalChannelID(id) ; + chID = cabling->createSignalChannelID(id) ; } catch ( LArID_Exception & except ) { ATH_MSG_WARNING ( "Could not get HWId for offline Id " << id ); good_chID = false ; diff --git a/LArCalorimeter/LArCalibTools/src/LArAutoCorrFromStdNtuple.cxx b/LArCalorimeter/LArCalibTools/src/LArAutoCorrFromStdNtuple.cxx old mode 100755 new mode 100644 index 2cbb4646e225da88e04a9d259c059ed001ded0c8..75317ad34387c3583fb6f3bc29bda5fb2a8bec44 --- a/LArCalorimeter/LArCalibTools/src/LArAutoCorrFromStdNtuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArAutoCorrFromStdNtuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArAutoCorrFromStdNtuple.h" @@ -10,7 +10,6 @@ #include "CaloIdentifier/LArFCAL_ID.h" #include "LArRawConditions/LArAutoCorrMC.h" #include "LArRawConditions/LArAutoCorrComplete.h" -#include "LArCabling/LArCablingService.h" #include "LArTools/LArMCSymTool.h" #include "LArElecCalib/ILArMCSymTool.h" @@ -78,6 +77,8 @@ LArAutoCorrFromStdNtuple::~LArAutoCorrFromStdNtuple() StatusCode LArAutoCorrFromStdNtuple::initialize() { ATH_CHECK ( m_larmcsym.retrieve() ); + ATH_CHECK ( m_cablingKey.initialize() ); + return StatusCode::SUCCESS ; } @@ -90,14 +91,17 @@ StatusCode LArAutoCorrFromStdNtuple::stop() // get LArOnlineID helper const LArOnlineID* onlineHelper = nullptr; ATH_CHECK( detStore()->retrieve(onlineHelper, "LArOnlineID") ); - // and cabling service - LArCablingService *larCablingSvc; - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",larCablingSvc) ); // and helper for FCAL const CaloIdManager* caloId_mgr; ATH_CHECK( detStore()->retrieve(caloId_mgr, "CaloIdManager") ); const LArFCAL_ID* fcal_id = caloId_mgr->getFCAL_ID(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "DO not have mapping from cabling key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } TChain* outfit = new TChain(m_ntuple_name.c_str()); for ( std::vector<std::string>::const_iterator it = m_root_file_names.begin(); @@ -227,7 +231,7 @@ StatusCode LArAutoCorrFromStdNtuple::stop() //if(onlineHelper->isFCALchannel(chid)) { if(onlineHelper->barrel_ec(chid)==1 && onlineHelper->feedthrough(chid) >= 25 && onlineHelper->feedthrough(chid) < 28 ) { ATH_MSG_DEBUG ( "Adding sFCAL channel " << onlineHelper->channel_name(chid) ); - const int mod=fcal_id->module(larCablingSvc->cnvToIdentifier(chid)); + const int mod=fcal_id->module(cabling->cnvToIdentifier(chid)); if(mod<0 || mod > 3) { ATH_MSG_ERROR ( "Wrong FCAL module: " << mod << " ignored !!" ); continue; diff --git a/LArCalorimeter/LArCalibTools/src/LArAverages2Ntuple.cxx b/LArCalorimeter/LArCalibTools/src/LArAverages2Ntuple.cxx old mode 100755 new mode 100644 index 8d41f07bb74075cd57b68dff9bc9726c28d1e83e..bf2b7ef96aac9b7d732599de6bf29c6fae45ebdb --- a/LArCalorimeter/LArCalibTools/src/LArAverages2Ntuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArAverages2Ntuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArAverages2Ntuple.h" @@ -10,8 +10,7 @@ LArAverages2Ntuple::LArAverages2Ntuple(const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), - m_emId(NULL), m_onlineHelper(NULL), - m_larCablingSvc ("LArCablingService") + m_emId(NULL), m_onlineHelper(NULL) // m_eventCounter(0) { declareProperty("ContainerKey",m_contKey); @@ -37,8 +36,8 @@ StatusCode LArAverages2Ntuple::initialize() ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - // Retrieve LArCablingService - ATH_CHECK( m_larCablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_calibMapKey.initialize() ); NTupleFilePtr file1(ntupleSvc(),"/NTUPLES/FILE1"); if (!file1) { @@ -91,6 +90,19 @@ StatusCode LArAverages2Ntuple::initialize() StatusCode LArAverages2Ntuple::execute() { ATH_MSG_DEBUG ( "in execute" ); + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "DO not have cabling from the key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_calibMapKey}; + const LArCalibLineMapping *clcabling {*clHdl}; + if(!clcabling) { + ATH_MSG_ERROR( "Do not have calib line mapping !!!" ); + return StatusCode::FAILURE; + } const LArAccumulatedCalibDigitContainer* accuDigitContainer = NULL; StatusCode sc=evtStore()->retrieve(accuDigitContainer,m_contKey); @@ -160,10 +172,10 @@ StatusCode LArAverages2Ntuple::execute() m_barrel_ec = m_onlineHelper->barrel_ec(chid); m_pos_neg = m_onlineHelper->pos_neg(chid); - bool isConnected = m_larCablingSvc->isOnlineConnected(chid); + bool isConnected = cabling->isOnlineConnected(chid); if(isConnected){ - Identifier id=m_larCablingSvc->cnvToIdentifier(chid); - const std::vector<HWIdentifier>& calibLineV=m_larCablingSvc->calibSlotLine(chid); + Identifier id=cabling->cnvToIdentifier(chid); + const std::vector<HWIdentifier>& calibLineV=clcabling->calibSlotLine(chid); std::vector<HWIdentifier>::const_iterator calibLineIt=calibLineV.begin(); m_calibLine = m_onlineHelper->channel(*calibLineIt); m_eta=m_emId->eta(id); diff --git a/LArCalorimeter/LArCalibTools/src/LArCompleteToFlat.cxx b/LArCalorimeter/LArCalibTools/src/LArCompleteToFlat.cxx index 0ffa06c9f64b6022d98ef44a818357ebe6d32be3..e8f3345cb51a34bda0a54ae716acbac78e7f0c03 100644 --- a/LArCalorimeter/LArCalibTools/src/LArCompleteToFlat.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArCompleteToFlat.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArCompleteToFlat.h" @@ -40,8 +40,7 @@ LArCompleteToFlat::LArCompleteToFlat( const std::string& name, ISvcLocator* pSvcLocator ) : ::AthAlgorithm( name, pSvcLocator ), m_hashMax(0), - m_onlineID(0), - m_cablingSvc("LArCablingService") + m_onlineID(0) { declareProperty("uA2MeVInput",m_uA2MeVInput);//="LAruA2MeV"); @@ -70,7 +69,7 @@ LArCompleteToFlat::~LArCompleteToFlat() //////////////////////////// StatusCode LArCompleteToFlat::initialize() { - CHECK(m_cablingSvc.retrieve()); + ATH_CHECK(m_cablingKey.initialize()); return StatusCode::SUCCESS; } @@ -421,9 +420,15 @@ CondAttrListCollection* LArCompleteToFlat::rampFlat(const ILArRamp* input, const spec->extend<unsigned>("version"); CondAttrListCollection* coll=new CondAttrListCollection(true); - std::vector<float> defaultRamp={0.0,1.0}; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return coll; + } + for (unsigned gain=0;gain<3;++gain) { unsigned nPoints=0; @@ -449,7 +454,7 @@ CondAttrListCollection* LArCompleteToFlat::rampFlat(const ILArRamp* input, const for (unsigned hs=0;hs<m_hashMax;++hs) { const HWIdentifier chid=m_onlineID->channel_Id(hs); std::vector<float> rampVec(input->ADC2DAC(chid,gain).asVector()); - if (rampVec.size()==0 && gain==2 && m_fakeEMBPSLowGain && m_cablingSvc->isOnlineConnected(chid)) { + if (rampVec.size()==0 && gain==2 && m_fakeEMBPSLowGain && cabling->isOnlineConnected(chid) ) { rampVec=input->ADC2DAC(chid,1).asVector(); rampVec[1]*=10.0; ++nCopiedEMPS; @@ -812,7 +817,14 @@ StatusCode LArCompleteToFlat::stop() { void LArCompleteToFlat::errIfConnected(const HWIdentifier chid, const int gain, const char* objName, const char* message) const{ - if (m_cablingSvc->isOnlineConnected(chid)) { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return; + } + + if (cabling->isOnlineConnected(chid)) { if (! (gain==2 && m_onlineID->isEMBPS(chid))) { //No LG Presampler calibration msg(MSG::ERROR) << "No valid " << objName << " found for channel " << m_onlineID->channel_name(chid) << ", gain " << gain << ". "; if (message) msg(MSG::ERROR) << message; diff --git a/LArCalorimeter/LArCalibTools/src/LArCond2NtupleBase.cxx b/LArCalorimeter/LArCalibTools/src/LArCond2NtupleBase.cxx index e50c85a00ac2c903926ff81632d2e1b2a0ff63a6..03eb8f633ea306eee7c4a0af9e8e77ba42dcaf99 100644 --- a/LArCalorimeter/LArCalibTools/src/LArCond2NtupleBase.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArCond2NtupleBase.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArCond2NtupleBase.h" @@ -128,6 +128,7 @@ StatusCode LArCond2NtupleBase::initialize() { ATH_CHECK( m_BCKey.initialize() ); ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( m_calibMapKey.initialize() ); + if ( m_isSC ) ATH_CHECK( m_cablingKeySC.initialize() ); //Online-identifier variables sc=nt->addItem("channelId",m_onlChanId,0x38000000,0x3A000000); @@ -279,8 +280,14 @@ bool LArCond2NtupleBase::fillFromIdentifier(const HWIdentifier& hwid) { ATH_MSG_WARNING( "Do not have calib line mapping !!!" ); return false; } - SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; - const LArOnOffIdMapping* cabling=*cablingHdl; + const LArOnOffIdMapping* cabling=nullptr; + if(m_isSC) { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + cabling = *cablingHdl; + } else { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdlSC{m_cablingKeySC}; + cabling = *cablingHdlSC; + } if(!cabling) { ATH_MSG_WARNING( "Do not have cabling !" ); return false; diff --git a/LArCalorimeter/LArCalibTools/src/LArFEBTemp2Ntuple.cxx b/LArCalorimeter/LArCalibTools/src/LArFEBTemp2Ntuple.cxx old mode 100755 new mode 100644 index e5f28c5771eb241b11b919735fa42510320d2d5b..2315f957c6c242c69d22198b9ad4eca28869670b --- a/LArCalorimeter/LArCalibTools/src/LArFEBTemp2Ntuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArFEBTemp2Ntuple.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArFEBTemp2Ntuple.h" #include "LArElecCalib/ILArFEBTempTool.h" #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/IToolSvc.h" LArFEBTemp2Ntuple::LArFEBTemp2Ntuple(const std::string& name, ISvcLocator* pSvcLocator): LArCond2NtupleBase(name, pSvcLocator) { diff --git a/LArCalorimeter/LArCalibTools/src/LArFillDSPConfig.cxx b/LArCalorimeter/LArCalibTools/src/LArFillDSPConfig.cxx index 6073b9c02febb4570d20906f886bda53fc964760..2bb12d9426a514544618b838b67bd4220051f3f0 100644 --- a/LArCalorimeter/LArCalibTools/src/LArFillDSPConfig.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArFillDSPConfig.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArFillDSPConfig.h" @@ -17,8 +17,7 @@ LArFillDSPConfig::LArFillDSPConfig( const std::string& name, ISvcLocator* pSvcLocator ) : ::AthAlgorithm( name, pSvcLocator ), - m_onlineID(0), - m_cablingSvc("LArCablingService") + m_onlineID(0) { declareProperty("Foldername",m_folderName="/LAR/Configuraton/DSPConfiguration"); declareProperty("Dump",m_dump=true); @@ -32,7 +31,6 @@ LArFillDSPConfig::~LArFillDSPConfig() {} //////////////////////////// StatusCode LArFillDSPConfig::initialize() { - CHECK(m_cablingSvc.retrieve()); return StatusCode::SUCCESS; } diff --git a/LArCalorimeter/LArCalibTools/src/LArOFC2Ntuple.cxx b/LArCalorimeter/LArCalibTools/src/LArOFC2Ntuple.cxx old mode 100755 new mode 100644 index a76e97f8e4f83bd649335e897e9b9c16450c5f84..c30525e316d33aeaa13184910ff6160a9d776461 --- a/LArCalorimeter/LArCalibTools/src/LArOFC2Ntuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArOFC2Ntuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArOFC2Ntuple.h" @@ -7,7 +7,6 @@ #include "CaloIdentifier/CaloGain.h" #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" LArOFC2Ntuple::LArOFC2Ntuple(const std::string& name, ISvcLocator* pSvcLocator): LArCond2NtupleBase(name, pSvcLocator) diff --git a/LArCalorimeter/LArCalibTools/src/LArOFCBinAlg.cxx b/LArCalorimeter/LArCalibTools/src/LArOFCBinAlg.cxx index 0ab0a55d2b4fcd8898fbef81e335297392c203d1..e8d20445968ef9b1c449c174ef4fe1b132c5bdfe 100644 --- a/LArCalorimeter/LArCalibTools/src/LArOFCBinAlg.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArOFCBinAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArOFCBinAlg.h" @@ -31,6 +31,7 @@ StatusCode LArOFCBinAlg::initialize() { //} m_ntTitle="Bin"; m_ntpath=std::string("/NTUPLES/FILE1/OFCBINDIFF"); + ATH_CHECK( m_cablingKey.initialize() ); return LArCond2NtupleBase::initialize(); } @@ -97,13 +98,12 @@ StatusCode LArOFCBinAlg::execute() { msg(MSG::ERROR) << "Failed to register container with key " << m_outputContainer << " to StoreGate" << endmsg; } - LArCablingBase* larCablingSvc; - ToolHandle<LArCablingService> tool("LArCablingService"); - sc = tool.retrieve(); - if (sc!=StatusCode::SUCCESS) { - msg(MSG::ERROR) << " Can't get LArCablingSvc." << endmsg; - return sc; - } else larCablingSvc = (LArCablingBase*)&(*tool); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } const LArEM_Base_ID* emId; const LArHEC_Base_ID* hecId; const LArFCAL_Base_ID* fcalId; @@ -138,8 +138,8 @@ StatusCode LArOFCBinAlg::execute() { // Do not make corrections for back layer int barrel_ec = onlineID->barrel_ec(chid); int layer=-1; - if (larCablingSvc->isOnlineConnected(chid)) { - Identifier id=larCablingSvc->cnvToIdentifier(chid); + if (cabling->isOnlineConnected(chid)) { + Identifier id=cabling->cnvToIdentifier(chid); if (emId->is_lar_em(id)) { layer = emId->sampling(id); } else if (hecId->is_lar_hec(id)) { diff --git a/LArCalorimeter/LArCalibTools/src/LArParams2Ntuple.cxx b/LArCalorimeter/LArCalibTools/src/LArParams2Ntuple.cxx old mode 100755 new mode 100644 index 185f7cd4639d9b6600e2d8ad8020a9ec96dcc432..4d144e0df0017db6f20ef0b203fea64ba92abb73 --- a/LArCalorimeter/LArCalibTools/src/LArParams2Ntuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArParams2Ntuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArParams2Ntuple.h" @@ -14,7 +14,7 @@ LArParams2Ntuple::LArParams2Ntuple(const std::string& name, ISvcLocator* pSvcLoc m_completeCaliPulseParams(0), m_completeDetCellParams(0), m_completePhysCaliTdiff(0), m_completeTdrift(0), m_completeMphysOverMcal(0), m_completeRinj(0), m_completeTshaper(0), m_completeEMEC_Cphi(0), m_completeEMEC_HValpha(0), m_completeEMEC_HVbeta(0), - m_completeCableLength(0), m_completeCableAttenuation(0), m_calibCaliPulseParams(0), + m_completeCableLength(0), m_completeCableAttenuation(0), m_completeOFCBin(0) { //declareProperty("DumpAllOnlineChannels",m_dumpAllOnlineChannels=std::string("")) ; @@ -120,7 +120,7 @@ StatusCode LArParams2Ntuple::stop() { return StatusCode::FAILURE; } - if ( m_dumpFlags[CaliPulseParamsComplete] || m_dumpFlags[CaliPulseParamsVsCalib] ) { + if ( m_dumpFlags[CaliPulseParamsComplete] ) { sc=m_nt->addItem("Tcal",ntTcal); if (sc!=StatusCode::SUCCESS) { msg(MSG::ERROR) << "addItem 'Tcal' failed" << endmsg; @@ -313,10 +313,10 @@ StatusCode LArParams2Ntuple::stop() { sc = retrieveFromDetStore(m_completeCableAttenuation) ; if ( sc.isFailure() ) m_dumpFlags.clear(CableAttenuationComplete) ; } - if ( m_dumpFlags[CaliPulseParamsVsCalib] ) { - sc = retrieveFromDetStore(m_calibCaliPulseParams) ; - if ( sc.isFailure() ) m_dumpFlags.clear(CaliPulseParamsVsCalib) ; - } + //if ( m_dumpFlags[CaliPulseParamsVsCalib] ) { + // sc = retrieveFromDetStore(m_calibCaliPulseParams) ; + // if ( sc.isFailure() ) m_dumpFlags.clear(CaliPulseParamsVsCalib) ; + //} if ( m_dumpFlags[OFCBinComplete] ) { sc = retrieveFromDetStore(m_completeOFCBin) ; if ( sc.isFailure() ) m_dumpFlags.clear(OFCBinComplete) ; @@ -400,10 +400,10 @@ StatusCode LArParams2Ntuple::stop() { sc = scanReadoutChannels(m_completeCableAttenuation) ; break ; } - case CaliPulseParamsVsCalib: { - sc = scanCalibChannels(m_calibCaliPulseParams) ; - break ; - } + //case CaliPulseParamsVsCalib: { + //sc = scanCalibChannels(m_calibCaliPulseParams) ; + //break ; + //} case OFCBinComplete: { sc = scanReadoutChannels(m_completeOFCBin) ; break ; @@ -478,7 +478,7 @@ StatusCode LArParams2Ntuple::stop() { if ( flags[CableAttenuationComplete] ) { ntCableAttenuation = m_completeCableAttenuation->CableAttenuation(chid) ; } - + /* if ( flags[CaliPulseParamsVsCalib] ) { ntTcal = m_calibCaliPulseParams->Tcal(chid,gain) ; ntFstep = m_calibCaliPulseParams->Fstep(chid,gain) ; @@ -486,7 +486,7 @@ StatusCode LArParams2Ntuple::stop() { ntdTimeCal = m_calibCaliPulseParams->dTimeCal(chid,gain) ; ntnCB = m_calibCaliPulseParams->nCB(chid,gain) ; } - + */ if ( flags[OFCBinComplete] ) { ntbin = m_completeOFCBin->bin(chid,gain) ; } @@ -695,12 +695,12 @@ inline StatusCode LArParams2Ntuple::retrieveAbstractInterface(const LArCaliPulse data_object = dynamic_cast<const LArCaliPulseParamsComplete*>(abstract_object) ; return sc ; } -inline StatusCode LArParams2Ntuple::retrieveAbstractInterface(const LArCaliPulseParamsVsCalib*& data_object) { - const ILArCaliPulseParams* abstract_object ; - StatusCode sc = m_detStore->retrieve(abstract_object) ; - data_object = dynamic_cast<const LArCaliPulseParamsVsCalib*>(abstract_object) ; - return sc ; -} +//inline StatusCode LArParams2Ntuple::retrieveAbstractInterface(const LArCaliPulseParamsVsCalib*& data_object) { +// const ILArCaliPulseParams* abstract_object ; +// StatusCode sc = m_detStore->retrieve(abstract_object) ; +// data_object = dynamic_cast<const LArCaliPulseParamsVsCalib*>(abstract_object) ; +// return sc ; +//} inline StatusCode LArParams2Ntuple::retrieveAbstractInterface(const LArDetCellParamsComplete*& data_object) { const ILArDetCellParams* abstract_object = nullptr; StatusCode sc = m_detStore->retrieve(abstract_object) ; diff --git a/LArCalorimeter/LArCalibTools/src/LArParamsProperties.cxx b/LArCalorimeter/LArCalibTools/src/LArParamsProperties.cxx old mode 100755 new mode 100644 index 4e58a92011eb3c9c8c29249201be3a68fea5f9a1..b5fe52e8f317be14db1ddd0d9ba450a805229dde --- a/LArCalorimeter/LArCalibTools/src/LArParamsProperties.cxx +++ b/LArCalorimeter/LArCalibTools/src/LArParamsProperties.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LArParamsProperties.h" @@ -40,7 +40,7 @@ unsigned LArParamsProperties::getClassIndex(const LArEMEC_HValphaComplete*) unsigned LArParamsProperties::getClassIndex(const LArEMEC_HVbetaComplete*) { return EMEC_HVbetaComplete ; } unsigned LArParamsProperties::getClassIndex(const LArCableLengthComplete*) { return CableLengthComplete ; } unsigned LArParamsProperties::getClassIndex(const LArCableAttenuationComplete*) { return CableAttenuationComplete ; } -unsigned LArParamsProperties::getClassIndex(const LArCaliPulseParamsVsCalib*) { return CaliPulseParamsVsCalib ; } +//unsigned LArParamsProperties::getClassIndex(const LArCaliPulseParamsVsCalib*) { return CaliPulseParamsVsCalib ; } unsigned LArParamsProperties::getClassIndex(const LArOFCBinComplete*) { return OFCBinComplete ; } // vector of class names @@ -62,7 +62,7 @@ const std::vector< std::string > & LArParamsProperties::ClassNames() names[EMEC_HVbetaComplete] = "LArEMEC_HVbetaComplete" ; names[CableLengthComplete] = "LArCableLengthComplete" ; names[CableAttenuationComplete] = "LArCableAttenuationComplete" ; - names[CaliPulseParamsVsCalib] = "LArCaliPulseParamsVsCalib" ; + //names[CaliPulseParamsVsCalib] = "LArCaliPulseParamsVsCalib" ; names[OFCBinComplete] = "LArOFCBinComplete" ; names[PhysCaliTdiffComplete] = "LArPhysCaliTdiffComplete" ; } @@ -88,7 +88,7 @@ unsigned LArParamsProperties::numberOfParams(unsigned index) nOfPars[EMEC_HVbetaComplete] = 1 ; nOfPars[CableLengthComplete] = 1 ; nOfPars[CableAttenuationComplete] = 1 ; - nOfPars[CaliPulseParamsVsCalib] = 5 ; + //nOfPars[CaliPulseParamsVsCalib] = 5 ; nOfPars[OFCBinComplete] = 1 ; nOfPars[PhysCaliTdiffComplete] = 1 ; } @@ -115,7 +115,7 @@ bool LArParamsProperties::isGainDependent(unsigned index) useGain[EMEC_HVbetaComplete] = false ; useGain[CableLengthComplete] = false ; useGain[CableAttenuationComplete] = false ; - useGain[CaliPulseParamsVsCalib] = false ; + //useGain[CaliPulseParamsVsCalib] = false ; useGain[OFCBinComplete] = true ; useGain[PhysCaliTdiffComplete] = true ; } diff --git a/LArCalorimeter/LArCalibTools/src/LAruA2MeV2Ntuple.cxx b/LArCalorimeter/LArCalibTools/src/LAruA2MeV2Ntuple.cxx old mode 100755 new mode 100644 index b732d1f88f969db929808b946094f308b0d383a5..457e0e695d5d32608e547ceb739410f25ab2b76c --- a/LArCalorimeter/LArCalibTools/src/LAruA2MeV2Ntuple.cxx +++ b/LArCalorimeter/LArCalibTools/src/LAruA2MeV2Ntuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibTools/LAruA2MeV2Ntuple.h" @@ -8,7 +8,6 @@ #include "CaloIdentifier/CaloGain.h" #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" LAruA2MeV2Ntuple::LAruA2MeV2Ntuple(const std::string& name, ISvcLocator* pSvcLocator): LArCond2NtupleBase(name, pSvcLocator) { declareProperty("uA2MeVKey",m_uA2MeVKey); diff --git a/LArCalorimeter/LArCalibTools/src/components/LArCalibTools_entries.cxx b/LArCalorimeter/LArCalibTools/src/components/LArCalibTools_entries.cxx index 2e9e26c690f5d5e6805d92482a9d6836d0817cca..7e963f3c37b4caf5f787d2fd4b1c579464ce0615 100644 --- a/LArCalorimeter/LArCalibTools/src/components/LArCalibTools_entries.cxx +++ b/LArCalorimeter/LArCalibTools/src/components/LArCalibTools_entries.cxx @@ -52,7 +52,7 @@ typedef LArReadParamsFromFile<LArEMEC_HValphaComplete> LArReadEMEC_HValpha typedef LArReadParamsFromFile<LArEMEC_HVbetaComplete> LArReadEMEC_HVbeta ; typedef LArReadParamsFromFile<LArCableLengthComplete> LArReadCableLength ; typedef LArReadParamsFromFile<LArCableAttenuationComplete> LArReadCableAttenuation ; -typedef LArReadParamsFromFile<LArCaliPulseParamsVsCalib> LArReadCaliPulseParams_Calib ; +//typedef LArReadParamsFromFile<LArCaliPulseParamsVsCalib> LArReadCaliPulseParams_Calib ; DECLARE_COMPONENT( LArAutoCorr2Ntuple ) DECLARE_COMPONENT( LArAverages2Ntuple ) @@ -63,7 +63,7 @@ DECLARE_COMPONENT( LArShape2Ntuple ) DECLARE_COMPONENT( LArPedestals2Ntuple ) DECLARE_COMPONENT( LArRamps2Ntuple ) DECLARE_COMPONENT( LArReadCaliPulseParams ) -DECLARE_COMPONENT( LArReadCaliPulseParams_Calib ) +//DECLARE_COMPONENT( LArReadCaliPulseParams_Calib ) DECLARE_COMPONENT( LArReadDetCellParams ) DECLARE_COMPONENT( LArReadPhysCaliTdiff ) DECLARE_COMPONENT( LArReadTdrift ) diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrDecoderTool.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrDecoderTool.h old mode 100755 new mode 100644 index 68422148ace147264f178a6a8efdf713df507ca1..aca4e1e0eb2fff9771e245ee51d99ff77e4162cd --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrDecoderTool.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrDecoderTool.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- C++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -17,7 +17,6 @@ #include <Eigen/Dense> #include "StoreGate/DataHandle.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArRawConditions/LArConditionsContainer.h" @@ -25,7 +24,6 @@ #include "AthenaBaseComps/AthAlgTool.h" class StoreGateSvc; -class LArCablingService; class LArAutoCorrDecoderTool: public AthAlgTool, virtual public ILArAutoCorrDecoderTool @@ -43,8 +41,6 @@ class LArAutoCorrDecoderTool: public AthAlgTool, // retrieve methods const Eigen::MatrixXd AutoCorr( const HWIdentifier& CellID, int gain, unsigned nSamples) const; - const Eigen::MatrixXd AutoCorr( const Identifier& CellID, int gain, unsigned nSamples) const; - // initialize and finalize methods virtual StatusCode initialize(); virtual StatusCode finalize(){return StatusCode::SUCCESS;} @@ -63,7 +59,6 @@ class LArAutoCorrDecoderTool: public AthAlgTool, const Eigen::MatrixXd ACPhysics( const HWIdentifier& CellID, int gain, unsigned nSamples) const; const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingService; std::string m_keyAutoCorr; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrExtrapolate.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrExtrapolate.h old mode 100755 new mode 100644 index 49bbe1a41c12a89d9f1056fbc875a8e793059562..128909a93295bf14ba5baf0d9d3622737182db64 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrExtrapolate.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArAutoCorrExtrapolate.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARAUTOCORRExtrapolate_H @@ -21,6 +21,7 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "StoreGate/ReadCondHandleKey.h" #include "LArRecConditions/LArBadChannelCont.h" +#include "LArCabling/LArOnOffIdMapping.h" class LArOnlineID; @@ -50,6 +51,7 @@ class LArAutoCorrExtrapolate : public AthAlgorithm private: SG::ReadCondHandleKey<LArBadFebCont> m_BFKey { this, "MissingFebsKey", "LArBadFeb", "SG Key of LArBadFebCont object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; // Container key list std::string m_keyoutput; std::string m_keyPedestal; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveAverage.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveAverage.h old mode 100755 new mode 100644 index a29ce6c275ae5ca2d35036b482ccd0754f9b3136..847db4e91e82797e80414fba4edd522d6204feb5 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveAverage.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveAverage.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -9,13 +9,16 @@ #define LARCALIWAVEAVERAGE_H #include "AthenaBaseComps/AthAlgorithm.h" - +#include "GaudiKernel/ICondSvc.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/LArEM_ID.h" #include "Identifier/HWIdentifier.h" #include "LArRawConditions/LArCaliWave.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "StoreGate/WriteCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRawConditions/LArCaliWaveContainer.h" #include <string> @@ -26,29 +29,31 @@ public: LArCaliWaveAverage (const std::string& name, ISvcLocator* pSvcLocator); ~LArCaliWaveAverage(); - StatusCode initialize(); - StatusCode execute(); - StatusCode stop(); - StatusCode finalize(){return StatusCode::SUCCESS;} + StatusCode initialize() override final; + StatusCode execute() override final; + StatusCode stop() override final; + StatusCode finalize()override final {return StatusCode::SUCCESS;} private: - LArCablingService* m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + SG::ReadCondHandleKey<LArCaliWaveContainer> m_keyInput{this, "KeyInput", "LArCaliWave", "SG key of input cali wave container"}; + SG::WriteCondHandleKey<LArCaliWaveContainer> m_keyOutputCorr{this, "KeyOutputCorr", "LArCaliWaveCorr", "SG key for corrected container"}; + SG::WriteCondHandleKey<LArCaliWaveContainer> m_keyOutputSymm{this, "KeyOutputSymm", "LArCaliWaveSymm", "SG key for symmetrized container"}; + const LArOnlineID* m_onlineHelper; const LArEM_ID* m_emId; const LArHEC_ID* m_hecId; const LArFCAL_ID* m_fcalId; - std::string m_keyInput; - std::string m_keyOutputCorr; - std::string m_keyOutputSymm; std::string m_groupingType; - //std::vector<HWIdentifier> m_chids; std::vector<unsigned> m_chids; - std::vector<HWIdentifier> SymmetricChannels(HWIdentifier ChID,std::vector<unsigned> ChannelsNotToUse ); + ServiceHandle<ICondSvc> m_condSvc; + + std::vector<HWIdentifier> SymmetricChannels(HWIdentifier ChID,std::vector<unsigned> ChannelsNotToUse, const LArOnOffIdMapping* cabling ); LArCaliWave WaveAverage(std::vector<LArCaliWave> ToBeAveraged); }; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilder.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilder.h old mode 100755 new mode 100644 index 50cc8942e90ec2d076c8cb5806a5dd28c161a9d7..e5d724d5c0bb09f1be160ef313d2498d9d2206c2 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilder.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilder.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -17,10 +17,11 @@ #include <map> #include "LArRawConditions/LArCaliWaveContainer.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" class ILArPedestal; -class LArCablingService; class LArCaliWaveBuilder : public AthAlgorithm { @@ -35,6 +36,8 @@ class LArCaliWaveBuilder : public AthAlgorithm private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + bool m_useAccumulatedDigits; StatusCode executeWithAccumulatedDigits(); StatusCode executeWithStandardDigits(); @@ -68,7 +71,6 @@ class LArCaliWaveBuilder : public AthAlgorithm bool m_checkEmptyPhases; const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingSvc; unsigned m_event_counter; int m_NStep; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilderXtalk.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilderXtalk.h old mode 100755 new mode 100644 index 8ab150486e84703520e230b8a47fb764b83a83e9..a49eeda0286941457e306afb8cc16b82645b4a08 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilderXtalk.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveBuilderXtalk.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /************************************************************ @@ -53,8 +53,11 @@ #include "LArRawEvent/LArAccumulatedCalibDigitContainer.h" #include "LArRawConditions/LArCaliWaveContainer.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" +#include "StoreGate/ReadCondHandleKey.h" + -#include "LArCabling/LArCablingService.h" #include "LArElecCalib/ILArPedestal.h" #include "CaloIdentifier/LArEM_ID.h" @@ -76,7 +79,10 @@ class LArCaliWaveBuilderXtalk : public AthAlgorithm private: - StatusCode initializeCabling(); + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; + + StatusCode initializeCabling(const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont); std::vector<std::string> m_keylist; std::vector<std::string> m_keylistproperty; @@ -89,7 +95,6 @@ class LArCaliWaveBuilderXtalk : public AthAlgorithm WaveContainer m_waves; const LArOnlineID* m_onlineHelper; - ToolHandle<LArCablingService> m_larCablingSvc; std::vector<HWIdentifier> m_CalibLineHW; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveSelector.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveSelector.h old mode 100755 new mode 100644 index c1da570675781809b6c0d4ff07854cbf4b58f332..556ac9516295fac5a981180335954ca510176c8b --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveSelector.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCaliWaveSelector.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ---------------------------------------------------------------------------- @@ -13,6 +13,8 @@ #define LARCALIWAVESELECTOR_H #include "AthenaBaseComps/AthAlgorithm.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include <vector> #include <string> @@ -22,7 +24,6 @@ typedef std::pair< std::pair<int,int>, int> DetGain; class LArOnlineID; class CaloCell_ID; -class LArOnOffIdMap; class LArCaliWaveSelector : public AthAlgorithm { @@ -37,6 +38,8 @@ class LArCaliWaveSelector : public AthAlgorithm private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + void parseSelection(); const CaloCell_ID *m_cellID; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCalibDigitMaker.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCalibDigitMaker.h old mode 100755 new mode 100644 index 84250ed4dbc03cd76aecdab315a453d767d47a9c..1e110eeb8060ec8eea8b15fbf0fb41d33eb8a504 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCalibDigitMaker.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArCalibDigitMaker.h @@ -1,14 +1,13 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCALIBDIGITMAKER #define LARCALIBDIGITMAKER #include "AthenaBaseComps/AthAlgorithm.h" #include "LArRawEvent/LArDigitContainer.h" -#include "GaudiKernel/ToolHandle.h" // Modif J. Labbe from JF Marchand - Nov. 2009 -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" +#include "LArRecConditions/LArCalibLineMapping.h" #include <fstream> class LArCalibDigitMaker : public AthAlgorithm @@ -23,11 +22,8 @@ class LArCalibDigitMaker : public AthAlgorithm StatusCode execute(); StatusCode finalize(){return StatusCode::SUCCESS;} private: - ToolHandle<LArCablingService> m_larCablingSvc; // LArCablingService *m_larCablingSvc; // Modif J. Labbe from JF Marchand - Nov. 2009 - //const LArOnlineID* m_onlineHelper; - //JobOpts: + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; std::vector<std::string> m_keylist; - //std::string m_key; std::vector<unsigned> m_vPattern; std::vector<unsigned> m_vDAC; std::vector<unsigned> m_vDelay; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDeltaRespPredictor.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDeltaRespPredictor.h old mode 100755 new mode 100644 index c32171a97eb85c79093cfc38fa766013d907dd30..06323034820775375116d50e2ce32dbe4091de9c --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDeltaRespPredictor.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDeltaRespPredictor.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -15,6 +15,8 @@ #include "LArCalibUtils/LArWFParamTool.h" #include "LArCalibUtils/LArDeltaRespTool.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include <vector> #include <string> @@ -35,6 +37,8 @@ class LArDeltaRespPredictor : public AthAlgorithm private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + std::vector<std::string> m_keylist; }; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDigitOscillationCorrTool.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDigitOscillationCorrTool.h old mode 100755 new mode 100644 index a437ed962bcaa234d72df383df84b5ff24f62eba..bb902f0ec8fd3fc29aad6384e3ef85a604736bf4 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDigitOscillationCorrTool.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDigitOscillationCorrTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -22,10 +22,10 @@ #include "LArElecCalib/ILArH6Oscillation.h" #include "LArElecCalib/ILArRamp.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "LArIdentifier/LArOnlineID.h" -class LArCablingService ; class LArDigitContainer; class LArDigit; @@ -71,7 +71,7 @@ class LArDigitOscillationCorrTool: public AthAlgTool, const LArHEC_ID* m_hecId; const LArOnlineID* m_lar_on_id; - ToolHandle<LArCablingService> m_cablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; }; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDumpShapes.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDumpShapes.h old mode 100755 new mode 100644 index aca9666fb3e8bf9a3c36384d3fcaf705e643f09f..9c59371789ee15b5c5e0970add4e2ba530d2b810 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDumpShapes.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArDumpShapes.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: LArDumpShapes.h,v 1.1 2006-06-27 18:31:59 ssnyder Exp $ @@ -32,6 +32,9 @@ #define LARDUMPSHAPES_H #include "AthenaBaseComps/AthAlgorithm.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include <string> /** @@ -61,6 +64,8 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + /// JO property: The nmae of the ROOT file to create. std::string m_filename; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArFill.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArFill.h old mode 100755 new mode 100644 index e5e0b4eee2c0720f91b459420553f80d1f36e53a..a88dd674d2c9774d89e615dc71d70e2d47b178a3 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArFill.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArFill.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCALIBUTILS_LArFill_H @@ -16,7 +16,6 @@ CREATED: Jan. 2004 #include "AthenaBaseComps/AthAlgorithm.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "LArRawConditions/LArRampComplete.h" #include "LArRawConditions/LArDAC2uAComplete.h" diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArMasterWaveBuilder.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArMasterWaveBuilder.h old mode 100755 new mode 100644 index 496c01f06a7a35271c3484b00e62e6726937820d..3e5d55dc7e36763637232f333983c7c6d51cd815 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArMasterWaveBuilder.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArMasterWaveBuilder.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -13,6 +13,9 @@ #include "LArRawConditions/LArWave.h" #include "LArRawConditions/LArWaveHelper.h" #include "LArRawConditions/LArCaliWave.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/LArEM_ID.h" @@ -37,6 +40,9 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; + double diffWave(const LArCaliWave& w1, const LArCaliWave& w2, int& tbin, bool normPeak) const ; double diffWave(const LArCaliWave& w1, const LArCaliWave& w2, bool normPeak) const ; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFCAlg.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFCAlg.h old mode 100755 new mode 100644 index 206b808ce7f5d2bd30db0e3e9ae597849a3425a0..f7274f8ece42bce0ff5d8ee2ac9150955b9c2c31 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFCAlg.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFCAlg.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArOFCAlgorithm_H @@ -24,6 +24,8 @@ #include "LArRawConditions/LArOFCBinComplete.h" #include "LArRawConditions/LArShapeComplete.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "StoreGate/DataHandle.h" #include "AthenaBaseComps/AthAlgorithm.h" @@ -36,7 +38,6 @@ class LArOnlineID; class CaloDetDescrManager; class LArDSPConfig; -class LArCablingService ; #include "GaudiKernel/ToolHandle.h" class LArOFCAlg:public AthAlgorithm { @@ -53,6 +54,8 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + struct perChannelData_t { //Input: const LArWaveCumul* inputWave; @@ -93,7 +96,7 @@ private: std::vector<float>& vecOFCa, std::vector<float>& vecOFCb // Output variables; ) const; - void process(perChannelData_t&) const; + void process(perChannelData_t&, const LArOnOffIdMapping* cabling) const; bool verify(const HWIdentifier chid, const std::vector<float>& OFCa, const std::vector<float>& OFCb, @@ -102,7 +105,7 @@ private: void printOFCVec(const std::vector<float>& vec, MsgStream& mLog) const; - StatusCode initPhysWaveContainer(); + StatusCode initPhysWaveContainer(const LArOnOffIdMapping* cabling); StatusCode initCaliWaveContainer(); @@ -124,7 +127,6 @@ private: ToolHandle<ILArAutoCorrDecoderTool> m_AutoCorrDecoder; ToolHandle<ILArAutoCorrDecoderTool> m_AutoCorrDecoderV2; - ToolHandle<LArCablingService> m_cablingService; const LArOnlineID* m_onlineID; const CaloDetDescrManager* m_calo_dd_man; const LArOFCBinComplete* m_larPhysWaveBin; @@ -159,7 +161,7 @@ private: - bool useDelta(const HWIdentifier chid, const int jobOFlag) const; + bool useDelta(const HWIdentifier chid, const int jobOFlag, const LArOnOffIdMapping* cabling) const; static const float m_fcal3Delta[5]; static const float m_fcal2Delta[5]; @@ -169,15 +171,16 @@ private: //Functor for processing with TBB class Looper { public: - Looper(std::vector<perChannelData_t>* p, const LArOFCAlg* a) : m_perChanData(p), m_ofcAlg(a) {}; + Looper(std::vector<perChannelData_t>* p, const LArOnOffIdMapping* cabling, const LArOFCAlg* a) : m_perChanData(p), m_cabling(cabling), m_ofcAlg(a) {}; void operator() (tbb::blocked_range<size_t>& r) const { //std::cout << "TBB grainsize " << r.end() - r.begin() << std::endl; for (size_t i=r.begin();i!=r.end();++i) { - m_ofcAlg->process(m_perChanData->at(i)); + m_ofcAlg->process(m_perChanData->at(i),m_cabling); } } private: std::vector<perChannelData_t>* m_perChanData; + const LArOnOffIdMapping* m_cabling; const LArOFCAlg* m_ofcAlg; }; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFPhaseFill.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFPhaseFill.h old mode 100755 new mode 100644 index 5010e7e52d87840977db33853797adec49c0dd57..f979e1f6ac9249b062f45a07305f85a2712b6d5d --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFPhaseFill.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArOFPhaseFill.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCALIBUTILS_LArOFPhaseFill_H @@ -19,7 +19,6 @@ Use a Tshaper raw conditions - reusing existing class instead of writing new #include "AthenaBaseComps/AthAlgorithm.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "LArRawConditions/LArOFCBinComplete.h" diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWaveBuilder.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWaveBuilder.h old mode 100755 new mode 100644 index f8335f6c0cadeaeadc3e1cc074f38ed0c2db014d..279ed15e8afb07a8add849fe2a956ee742c3cc01 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWaveBuilder.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWaveBuilder.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: LArPhysWaveBuilder.h,v 1.6 2006-11-07 11:31:36 mdelmast Exp $ @@ -27,6 +27,9 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "Identifier/Identifier.h" #include "Identifier/HWIdentifier.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include <vector> #include <string> @@ -71,6 +74,9 @@ class LArPhysWaveBuilder : public AthAlgorithm private: + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + /// === Private methods /// Make the wave container from the accumulated waves. StatusCode make_container (std::unique_ptr<LArPhysWaveContainer>& larPhysWaveContainer); diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWavePredictor.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWavePredictor.h old mode 100755 new mode 100644 index 9da56effc92368e259c9423af5ddcc269973c848..cc57b7e9474337f10c0683887450690347a50ebb --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWavePredictor.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArPhysWavePredictor.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -13,6 +13,7 @@ #include "Identifier/HWIdentifier.h" #include "StoreGate/ReadCondHandleKey.h" #include "LArRecConditions/LArBadChannelCont.h" +#include "LArCabling/LArOnOffIdMapping.h" #include <vector> #include <string> @@ -35,6 +36,7 @@ class LArPhysWavePredictor : public AthAlgorithm private: ToolHandle<ILArBadChannelMasker> m_maskingTool; SG::ReadCondHandleKey<LArBadChannelCont> m_BCKey {this, "BadChanKey", "LArBadChannel", "SG key for LArBadChan object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const LArOnlineID* m_onlineHelper; bool m_testmode; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRTMParamExtractor.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRTMParamExtractor.h old mode 100755 new mode 100644 index 5bac2bdecbfe154a25272a38a8915f1049c354f6..3efd57293826c159f62f14e89fd163532871eea8 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRTMParamExtractor.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRTMParamExtractor.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -23,6 +23,7 @@ #include <vector> #include "AthenaBaseComps/AthAlgorithm.h" +#include "LArCabling/LArOnOffIdMapping.h" class LArRTMParamExtractor : public AthAlgorithm { @@ -40,6 +41,8 @@ class LArRTMParamExtractor : public AthAlgorithm private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + std::vector<std::string> m_keylist; bool m_testmode, m_dumpOmegaScan, m_dumpResOscill; std::string m_omegaScanKey, m_resOscillKeyBefore, m_resOscillKeyAfter; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRampBuilder.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRampBuilder.h old mode 100755 new mode 100644 index 2cd41cdd98152e5c0d518b413e5d6ffdf053dbcb..434555f3d7edbe9bb1a65f861a6ca6a947091e30 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRampBuilder.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArRampBuilder.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -37,13 +37,15 @@ #include "LArRecUtils/LArShapePeakRecoTool.h" #include "LArRecUtils/LArOFPeakRecoTool.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArElecCalib/ILArPedestal.h" #include "LArElecCalib/ILArRinj.h" #include "LArRawConditions/LArCaliWaveContainer.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" + //#include "LArCalibTriggerAccumulator.h" #include <vector> @@ -72,13 +74,14 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; //Private member functions // choose reconstruction mode (i.e. OF or Parabola) void chooseRecoMode() ; //Does the fitting of the raw ramp. Result is returned as LArRampDB_t. StatusCode rampfit(unsigned deg, const std::vector<LArRawRamp::RAMPPOINT_t>& data, std::vector<float>& rampCoeffs, std::vector<int>& vSat, - const HWIdentifier chid); + const HWIdentifier chid, const LArOnOffIdMapping* cabling); //Private data memebers: //typedef std::map<HWIdentifier, std::map<uint16_t,RAWRAMP> > RAWRAMPMAP; @@ -144,7 +147,6 @@ private: // hashID sample std::vector<std::vector<short> > m_adc0; - ToolHandle<LArCablingService> m_larCablingSvc; ToolHandle< ILArBadChannelMasker> m_badChannelMask; bool m_doBadChannelMask; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTCMPhysWavePredictor.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTCMPhysWavePredictor.h old mode 100755 new mode 100644 index c3a5ce7161aaaaa34eb787a83d3c183538ad3a77..94f1fa1e443fe7b13c6ed03fabae58e51e605dda --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTCMPhysWavePredictor.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTCMPhysWavePredictor.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -22,6 +22,8 @@ #include "LArCalibUtils/LArWFParamTool.h" #include "LArCalibUtils/LArPhysWaveTool.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include <vector> #include <string> @@ -37,9 +39,11 @@ class LArTCMPhysWavePredictor : public AthAlgorithm StatusCode initialize() ; StatusCode execute() {return StatusCode::SUCCESS;} //empty method StatusCode stop(); - StatusCode finalize(){return StatusCode::SUCCESS;} + StatusCode finalize(){ATH_CHECK(m_cablingKey.initialize()); return StatusCode::SUCCESS;} private: - + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + bool m_testmode; bool m_datafromfile; //switch to take data from file/db int m_minuitoutputlevel; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimePhysPrediction.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimePhysPrediction.h old mode 100755 new mode 100644 index 0ba6790569ad8914ce8ccb4facd285eff669a87c..114f4cbfb274f4b0ef99dfeb029d71bd3d1b48cc --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimePhysPrediction.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimePhysPrediction.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //01/2009: T. Guillemin @@ -12,6 +12,8 @@ #include "GaudiKernel/INTupleSvc.h" #include "GaudiKernel/NTuple.h" #include "GaudiKernel/ITHistSvc.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" class CaloDepthTool; class CaloDetDescrManager; @@ -39,6 +41,8 @@ class LArTimePhysPrediction : public AthAlgorithm std::string m_groupingType; std::string m_CaloDepth; CaloDepthTool* m_CaloDepthTool; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; int m_nchannels_max; std::vector<std::vector<double> > m_vLCalib_EMB; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuning.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuning.h old mode 100755 new mode 100644 index 978a533e304ed9a1ce8483f5ffac26bffc452ba4..81fd78c866ad43a74a5c0fa41b32c8ba60c6dc2c --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuning.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuning.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -12,10 +12,11 @@ #include "LArElecCalib/ILArOFCTool.h" #include "LArRawUtils/LArRoI_Map.h" #include "LArRawUtils/LArRawOrdering.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "GaudiKernel/Bootstrap.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloIdManager.h" @@ -34,6 +35,7 @@ public: StatusCode finalize(){return StatusCode::SUCCESS;} private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const LArOnlineID* m_onlineHelper; std::string m_DataLocation; std::string m_globalTimeOffsetOut, m_febTimeOffsetOut, m_cellTimeOffsetOut; @@ -69,7 +71,6 @@ private: std::string m_scopeStr; // layer selection (use only cells from one layer) - LArCablingService *m_larCablingSvc; int m_layerSel; const LArEM_ID* m_emId; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuningNtuple.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuningNtuple.h old mode 100755 new mode 100644 index 2b3bea1a7eca0a28cdfa866b53d61f6547c25b7c..9dd1066393bde356ec1090822b5cba694175652a --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuningNtuple.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArTimeTuningNtuple.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -16,6 +16,9 @@ #include "LArRawConditions/LArFEBTimeOffset.h" #include "LArRawConditions/LArCellTimeOffset.h" #include "TBEvent/TBPhase.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "LArIdentifier/LArOnlineID.h" @@ -35,6 +38,8 @@ class LArTimeTuningNtuple : public AthAlgorithm StatusCode finalize(){return StatusCode::SUCCESS;} private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; std::string m_TBPhaseKey; std::string m_GlobalTimeKey; std::string m_FebTimeKey; diff --git a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArWFParamTool.h b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArWFParamTool.h old mode 100755 new mode 100644 index 76c47b44ee6985f94aac74d7fccf6291bf0574aa..8442c03ef75d5fd2530cca805eb70d77019030d9 --- a/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArWFParamTool.h +++ b/LArCalorimeter/LArCalibUtils/LArCalibUtils/LArWFParamTool.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -18,14 +18,14 @@ #include "LArRawConditions/LArWFParams.h" #include "LArRawConditions/LArCaliWave.h" #include "LArRawConditions/LArWaveHelper.h" +#include "LArCabling/LArOnOffIdMapping.h" -#include "LArCabling/LArCablingService.h" static const InterfaceID IID_LArWFParamTool("LArWFParamTool", 1 , 0); -class LArCablingSvc; class LArOnlineID; class LArEM_ID; +class LArOnOffIdMapping; class LArWFParamTool : public AthAlgTool { @@ -60,6 +60,7 @@ public: const HWIdentifier chid, const CaloGain::CaloGain gain, LArWFParams& wfParams, + const LArOnOffIdMapping *cabling, LArCaliWave* omegaScan=NULL, LArCaliWave* resOscill0=NULL, LArCaliWave* resOscill1=NULL @@ -92,7 +93,8 @@ private: }; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + const LArEM_ID* m_emId; const LArOnlineID* m_onlineHelper; @@ -143,7 +145,7 @@ private: LArWave dstepRespDfstep (const LArWave& gCali, const double& fstep, const double& Tc) const ; double dstepCorrDfstep (const double t, const double& fstep, const double& Tc ) const ; LArWave dstepCorrDfstep(const LArWave& gCali, const double& fstep, const double& Tcal ) const ; - StatusCode RTM_Omega0(const LArWave& gCali, const HWIdentifier chid, LArWFParams& wfParams, const WaveTiming_t& wt, LArCaliWave* omegaScan=NULL) const; + StatusCode RTM_Omega0(const LArWave& gCali, const HWIdentifier chid, LArWFParams& wfParams, const WaveTiming_t& wt, const LArOnOffIdMapping *cabling, LArCaliWave* omegaScan=NULL) const; StatusCode RTM_Taur(const LArWave& gCali, LArWFParams& wfParams, const WaveTiming_t& wt) const; double logChi2CosRespShaper (const double omega, const LArWave& gCali, const LArWFParams& wf, const waveRange_t& range) const; double logChi2InjRespRes (const double taur, const LArWave& gCali, const LArWFParams& wf, const waveRange_t& range ) const ; diff --git a/LArCalorimeter/LArCalibUtils/src/LArAccumulatedCalibDigitContSplitter.cxx b/LArCalorimeter/LArCalibUtils/src/LArAccumulatedCalibDigitContSplitter.cxx old mode 100755 new mode 100644 index a69a2bb816609daee310ee7fd72e99a0cf3cdcdc..a871b5ac74c52c8e7e4eee02e4ea04daecc4ba19 --- a/LArCalorimeter/LArCalibUtils/src/LArAccumulatedCalibDigitContSplitter.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArAccumulatedCalibDigitContSplitter.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArAccumulatedCalibDigitContSplitter.h" @@ -10,7 +10,6 @@ #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "LArRawEvent/LArAccumulatedCalibDigitContainer.h" #include "LArRawEvent/LArCalibDigitContainer.h" diff --git a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx old mode 100755 new mode 100644 index faa4d51d790784689d3877bf69e922168d3952e8..1fa59af766f07cc84041a391a3be14507939f13d --- a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArAutoCorrDecoderTool.h" @@ -17,8 +17,7 @@ LArAutoCorrDecoderTool::LArAutoCorrDecoderTool(const std::string& type, const IInterface* parent) : AthAlgTool(type, name, parent), - m_onlineID(0), - m_cablingService("LArCablingService") + m_onlineID(0) { declareInterface<ILArAutoCorrDecoderTool>(this); declareProperty("KeyAutoCorr",m_keyAutoCorr="LArAutoCorr"); @@ -40,11 +39,6 @@ StatusCode LArAutoCorrDecoderTool::initialize() return StatusCode::FAILURE; } - if(m_cablingService.retrieve().isFailure()){ - ATH_MSG_ERROR( "Unable to get CablingService " ); - return StatusCode::FAILURE; - } - sc=detStore()->regHandle(m_autoCorr,m_keyAutoCorr); if (sc.isFailure()) { @@ -69,12 +63,6 @@ const Eigen::MatrixXd LArAutoCorrDecoderTool::AutoCorr( const HWIdentifier& Cel return ACDiagonal(CellID,gain,nSamples); } -const Eigen::MatrixXd LArAutoCorrDecoderTool::AutoCorr( const Identifier& CellID, int gain, unsigned nSamples=5 ) const -{ - const HWIdentifier OnId = m_cablingService->createSignalChannelID(CellID); - return AutoCorr(OnId,gain,nSamples); -} - const Eigen::MatrixXd LArAutoCorrDecoderTool::ACDiagonal( const HWIdentifier& CellID, int gain, unsigned nSamples=5 ) const { diff --git a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrExtrapolate.cxx b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrExtrapolate.cxx old mode 100755 new mode 100644 index 71bc5b7141a5f6e6bc519dcb21c85977ec412986..f9cae857f2d9b44d057a26205a792a43d60594eb --- a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrExtrapolate.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrExtrapolate.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -20,7 +20,6 @@ // Include files #include "LArCalibUtils/LArAutoCorrExtrapolate.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "LArElecCalib/ILArRamp.h" #include "LArRawConditions/LArAutoCorrComplete.h" @@ -55,6 +54,8 @@ StatusCode LArAutoCorrExtrapolate::initialize() m_useBad=false; } + ATH_CHECK(m_cablingKey.initialize()); + return StatusCode::SUCCESS; } @@ -72,8 +73,12 @@ StatusCode LArAutoCorrExtrapolate::stop() ATH_MSG_INFO ( ">>> stop()" ); ATH_CHECK( detStore()->retrieve(m_onlineId, "LArOnlineID") ); - LArCablingService * larCabling = nullptr; - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",larCabling) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } LArAutoCorrComplete* larAutoCorrComplete = nullptr; ATH_CHECK( detStore()->retrieve(larAutoCorrComplete,m_keyoutput) ); @@ -106,7 +111,7 @@ StatusCode LArAutoCorrExtrapolate::stop() // skip disconnected channels - if (!(larCabling->isOnlineConnected(hwid))) continue; + if (!(cabling->isOnlineConnected(hwid))) continue; // if HEC , correct low gain, otherwise correct Medium and Low CaloGain::CaloGain gain0 = CaloGain::LARHIGHGAIN; diff --git a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveAverage.cxx b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveAverage.cxx old mode 100755 new mode 100644 index 99e548cc96eba95d02fbbb84dc6e631b5c2acb8a..93f50230f4e40f2cd6b96d682d1a6dd61c0feef9 --- a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveAverage.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveAverage.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArCaliWaveAverage.h" @@ -18,15 +18,12 @@ typedef std::map<int, LArCaliWave> WaveMap; LArCaliWaveAverage::LArCaliWaveAverage(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), - m_larCablingSvc(0), m_onlineHelper(0), m_emId(0), m_hecId(0), - m_fcalId(0) + m_fcalId(0), + m_condSvc("CondSvc",name) { - declareProperty("KeyInput", m_keyInput = "LArCaliWave"); - declareProperty("KeyOutputCorr", m_keyOutputCorr = "LArCaliWaveCorr"); - declareProperty("KeyOutputSymm", m_keyOutputSymm = "LArCaliWaveSymm"); m_chids.clear(); declareProperty("ChannelIDs", m_chids); declareProperty("GroupingType", m_groupingType = "ExtendedFeedThrough"); // SubDetector, Single, FeedThrough, ExtendedFeedThrough @@ -54,8 +51,10 @@ StatusCode LArCaliWaveAverage::initialize() { ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); + ATH_CHECK(m_cablingKey.initialize()); + ATH_CHECK(m_keyInput.initialize()); + ATH_CHECK(m_keyOutputCorr.initialize()); + ATH_CHECK(m_keyOutputSymm.initialize()); if ( m_chids.size() > 0 ) { ATH_MSG_INFO ( m_chids.size() << " channels selected for averaging." ); @@ -64,6 +63,16 @@ StatusCode LArCaliWaveAverage::initialize() { return StatusCode::FAILURE; } + // Register write handle + ATH_CHECK( m_condSvc.retrieve() ); + if (m_condSvc->regHandle(this, m_keyOutputCorr).isFailure()) { + ATH_MSG_ERROR("unable to register WriteCondHandle " << m_keyOutputCorr.fullKey() << " with CondSvc"); + return StatusCode::FAILURE; + } + if (m_condSvc->regHandle(this, m_keyOutputSymm).isFailure()) { + ATH_MSG_ERROR("unable to register WriteCondHandle " << m_keyOutputSymm.fullKey() << " with CondSvc"); + return StatusCode::FAILURE; + } return StatusCode::SUCCESS; } @@ -76,9 +85,9 @@ StatusCode LArCaliWaveAverage::stop() { ATH_MSG_INFO ( "stop()" ); // Get input LArCaliWaveContainer - const LArCaliWaveContainer* theLArCaliWaveContainer; - ATH_CHECK( detStore()->retrieve(theLArCaliWaveContainer,m_keyInput) ); - if ( theLArCaliWaveContainer == NULL ) { + SG::ReadCondHandle<LArCaliWaveContainer> inHdl(m_keyInput); + const LArCaliWaveContainer* theLArCaliWaveContainer = *inHdl; + if (! theLArCaliWaveContainer ) { ATH_MSG_ERROR ( "LArCaliWaveContainer (key = " << m_keyInput << ") is empty" ); return StatusCode::FAILURE; } @@ -96,12 +105,19 @@ StatusCode LArCaliWaveAverage::stop() { ATH_MSG_ERROR ( "Failed to initialize LArCaliWaveContainer object" ); return StatusCode::FAILURE; } + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } for ( unsigned i=0; i<m_chids.size();++i) { // loop over selected channels const HWIdentifier chid(m_chids[i]); - std::vector<HWIdentifier> theSymmetricChannels = SymmetricChannels(chid,m_chids); + std::vector<HWIdentifier> theSymmetricChannels = SymmetricChannels(chid,m_chids,cabling); if ( theSymmetricChannels.size() == 0) { ATH_MSG_WARNING ( "No symmetric channels found for channel 0x" << MSG::hex << chid << MSG::dec << ". Cannot average." ); @@ -191,8 +207,25 @@ StatusCode LArCaliWaveAverage::stop() { } // end of loop over selected channels // Record average LArCaliWaveContainer to DetectorStore - ATH_CHECK( detStore()->record(std::move(larCaliWaveContainerCorr),m_keyOutputCorr) ); - ATH_CHECK( detStore()->record(std::move(larCaliWaveContainerSymm),m_keyOutputSymm) ); + // Define validity of the output cond object + const EventIDBase start{EventIDBase::UNDEFNUM, EventIDBase::UNDEFEVT, 0, 0, EventIDBase::UNDEFNUM, EventIDBase::UNDEFNUM}; + const EventIDBase stop{EventIDBase::UNDEFNUM, EventIDBase::UNDEFEVT, EventIDBase::UNDEFNUM-1, EventIDBase::UNDEFNUM-1, EventIDBase::UNDEFNUM, EventIDBase::UNDEFNUM}; + EventIDRange rangeW{start, stop}; + SG::WriteCondHandle<LArCaliWaveContainer> corrHdl(m_keyOutputCorr); + const EventIDRange crangeW(rangeW); + if(corrHdl.record(crangeW,larCaliWaveContainerCorr.release()).isFailure()) { + ATH_MSG_ERROR("Could not record LArCaliWaveContainer object with " << m_keyOutputCorr.key() + << " with EventRange " << crangeW << " into Conditions Store"); + return StatusCode::FAILURE; + } + ATH_MSG_INFO("recorded new " << m_keyOutputCorr.key() << " with range " << crangeW << " into Conditions Store"); + SG::WriteCondHandle<LArCaliWaveContainer> symHdl(m_keyOutputSymm); + if(symHdl.record(crangeW,larCaliWaveContainerSymm.release()).isFailure()) { + ATH_MSG_ERROR("Could not record LArCaliWaveContainer object with " << m_keyOutputSymm.key() + << " with EventRange " << crangeW << " into Conditions Store"); + return StatusCode::FAILURE; + } + ATH_MSG_INFO("recorded new " << m_keyOutputCorr.key() << " with range " << crangeW << " into Conditions Store"); return StatusCode::SUCCESS; } @@ -200,7 +233,7 @@ StatusCode LArCaliWaveAverage::stop() { SymmetricChannels() returns a vector of HWIdentifier corresponding to the list of channels in the same et/phi position in all other FTs */ -std::vector<HWIdentifier> LArCaliWaveAverage::SymmetricChannels(HWIdentifier ChID, std::vector<unsigned> ChannelsNotToUse) +std::vector<HWIdentifier> LArCaliWaveAverage::SymmetricChannels(HWIdentifier ChID, std::vector<unsigned> ChannelsNotToUse, const LArOnOffIdMapping* cabling) { ATH_MSG_VERBOSE ( "Seeking symmetric cells for channel 0x" << MSG::hex << ChID << MSG::dec ); @@ -209,7 +242,7 @@ std::vector<HWIdentifier> LArCaliWaveAverage::SymmetricChannels(HWIdentifier ChI Identifier id; try { - id = m_larCablingSvc->cnvToIdentifier(ChID); + id = cabling->cnvToIdentifier(ChID); } catch (LArID_Exception & execpt) { ATH_MSG_ERROR ( "LArCabling exception caught for channel 0x" << MSG::hex << ChID << MSG::dec ); return theSymmetricChannels; diff --git a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilder.cxx b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilder.cxx old mode 100755 new mode 100644 index 12029b182f6f0a8a170c340000bc158b3d378492..b7cb428a86ad1a05ff4d93bfdd3790619111d1ef --- a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilder.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArCaliWaveBuilder.h" @@ -13,7 +13,6 @@ #include "LArRawEvent/LArFebErrorSummary.h" #include "LArElecCalib/ILArPedestal.h" -#include "LArCabling/LArCablingService.h" #include <fstream> @@ -26,7 +25,6 @@ LArCaliWaveBuilder::LArCaliWaveBuilder(const std::string& name, ISvcLocator* pSv : AthAlgorithm(name, pSvcLocator), m_groupingType("ExtendedFeedThrough"), // SubDetector, Single, FeedThrough m_onlineID(0), - m_cablingSvc("LArCablingService"), m_event_counter(0) { declareProperty("UseAccumulatedDigits", m_useAccumulatedDigits=true); @@ -101,14 +99,8 @@ StatusCode LArCaliWaveBuilder::initialize() return sc; } - - sc=m_cablingSvc.retrieve(); - if (sc.isFailure()) { - ATH_MSG_ERROR( "Failed to retrieve LArCablingService!" ); - return sc; - } - - + ATH_CHECK(m_cablingKey.initialize()); + return StatusCode::SUCCESS; } @@ -344,6 +336,13 @@ StatusCode LArCaliWaveBuilder::stop() return sc; } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + LArWaveHelper wHelper; int NCaliWave=0; @@ -369,7 +368,7 @@ StatusCode LArCaliWaveBuilder::stop() // const HWIdentifier hwId = cell_it.channelId(); - if ((!m_recAll) && (!m_cablingSvc->isOnlineConnected(hwId))) { + if ((!m_recAll) && (!cabling->isOnlineConnected(hwId))) { //ATH_MSG_INFO( "Skipping disconnected channel: "<<MSG::hex<<hwId<<MSG::dec ); continue; //Ignore disconnected channels diff --git a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilderXtalk.cxx b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilderXtalk.cxx old mode 100755 new mode 100644 index e6e2580bc0f443efed6fc7c4e335ec376634db71..7dc3e30788e477bea3683c84bc3ae254e808fd85 --- a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilderXtalk.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveBuilderXtalk.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArCaliWaveBuilderXtalk.h" @@ -27,7 +27,6 @@ LArCaliWaveBuilderXtalk::LArCaliWaveBuilderXtalk(const std::string& name, ISvcLo : AthAlgorithm(name, pSvcLocator), m_groupingType("ExtendedFeedThrough"), // SubDetector, Single, FeedThrough m_onlineHelper(NULL), - m_larCablingSvc("LArCablingService"), m_posOrNeg(0), m_barrelEndcap(0), m_isInnerWheel(0), @@ -161,13 +160,14 @@ StatusCode LArCaliWaveBuilderXtalk::initialize() m_dt = m_SamplingPeriod/m_NStep; ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - ATH_CHECK( m_larCablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); return StatusCode::SUCCESS; } //========================================================================================================= -StatusCode LArCaliWaveBuilderXtalk::initializeCabling() +StatusCode LArCaliWaveBuilderXtalk::initializeCabling(const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont) //========================================================================================================= { // bug in LArTools, on-off map doesn't work at initialization stage @@ -176,8 +176,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() // Temporary solution to create onoff map as long as it is not done in calibSlotLine() // WAITING FOR A FIX in LArTools - - Identifier cellId = m_larCablingSvc->cnvToIdentifier(m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,1,4)); + Identifier cellId = cabling->cnvToIdentifier(m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,1,4)); ATH_MSG_INFO ( "Dummy ids - TEMPORARY " << m_onlineHelper->show_to_string(cellId) ); @@ -200,7 +199,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("3",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,3); if (m_calibPattern.find("4",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,4); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Online Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); ATH_MSG_DEBUG ( "Number of associated calib line " << calibLine.size() ); @@ -223,7 +222,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("7",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,71); if (m_calibPattern.find("8",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,70); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); if (calibLine.size() != 0) { m_CalibLineHW.push_back(calibLine[0]); @@ -240,7 +239,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("3",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,7); if (m_calibPattern.find("4",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,6); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); if (calibLine.size() != 0) { m_CalibLineHW.push_back(calibLine[0]); @@ -271,7 +270,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("3",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,3); if (m_calibPattern.find("4",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,4); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Online Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); ATH_MSG_DEBUG ( "Number of associated calib line " << calibLine.size() ); @@ -303,7 +302,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("3",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,pulsedCell3); if (m_calibPattern.find("4",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,pulsedCell4); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); ATH_MSG_DEBUG ( "Number of associated calib line " << calibLine.size() ); @@ -342,7 +341,7 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() if (m_calibPattern.find("3",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,pulsedCell3); if (m_calibPattern.find("4",0) != std::string::npos )theConsidChannel = m_onlineHelper->channel_Id(m_barrelEndcap,m_posOrNeg,m_feedthroughNumber,pulsedSlot,pulsedCell4); - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine(theConsidChannel); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine(theConsidChannel); ATH_MSG_INFO ( "Considered Channel " << m_onlineHelper->show_to_string(theConsidChannel) ); if (calibLine.size() != 0) { m_CalibLineHW.push_back(calibLine[0]); @@ -359,7 +358,21 @@ StatusCode LArCaliWaveBuilderXtalk::initializeCabling() StatusCode LArCaliWaveBuilderXtalk::execute() //========================================================================================================= { - if (m_event_counter==0) initializeCabling(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont) { + ATH_MSG_ERROR("Do not have calibration mapping object " << m_CLKey.key()); + return StatusCode::FAILURE; + } + + if (m_event_counter==0) initializeCabling(cabling, clCont); // Print progression if ( m_event_counter < 100 || ( m_event_counter < 1000 && m_event_counter%100==0 ) || m_event_counter%1000==0 ) @@ -411,7 +424,7 @@ StatusCode LArCaliWaveBuilderXtalk::execute() // Loop over all cells as long as no interesting pulsed cell is found do{ - const std::vector<HWIdentifier>& calibLine = m_larCablingSvc->calibSlotLine((*it)->hardwareID()); + const std::vector<HWIdentifier>& calibLine = clCont->calibSlotLine((*it)->hardwareID()); if (calibLine.size() != 0) { std::vector<HWIdentifier>::iterator found=find(m_CalibLineHW.begin(),m_CalibLineHW.end(),calibLine[0]); @@ -576,6 +589,13 @@ StatusCode LArCaliWaveBuilderXtalk::stop() // > #16 0xee8b2c82 in LArConditionsContainerBase::initializeBase () // > #17 0xeed5f872 in LArConditionsContainer<LArCaliWaveVec>::initialize () + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + LArWaveHelper wHelper; int NCaliWave=0; @@ -601,7 +621,7 @@ StatusCode LArCaliWaveBuilderXtalk::stop() // const HWIdentifier hwId = cell_it.channelId(); - if (!m_larCablingSvc->isOnlineConnected(hwId)) continue; //Ignore disconnected channels + if (!cabling->isOnlineConnected(hwId)) continue; //Ignore disconnected channels const WaveMap& waveMap = (*cell_it); if (waveMap.size()==0) { diff --git a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveSelector.cxx b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveSelector.cxx old mode 100755 new mode 100644 index 618ee17382e5983737b165f0b442d3579ef2a63e..9fd0101ed799fc1e09aabe21f60176042448d423 --- a/LArCalorimeter/LArCalibUtils/src/LArCaliWaveSelector.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCaliWaveSelector.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArCaliWaveSelector.h" @@ -13,7 +13,6 @@ #include "CaloIdentifier/CaloCell_ID.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloGain.h" -#include "LArCabling/LArCablingService.h" #include "LArRawConditions/LArCaliWaveContainer.h" @@ -58,6 +57,8 @@ StatusCode LArCaliWaveSelector::initialize() return StatusCode::FAILURE; } + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -66,9 +67,12 @@ StatusCode LArCaliWaveSelector::stop() { ATH_MSG_INFO ( " in stop.." ); - // Get the cabling service - LArCablingService * cabling = 0; - CHECK( toolSvc()->retrieveTool("LArCablingService",cabling) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // create empty LArCaliWaveContainer to store DAC selected LArCaliWave // make it view container diff --git a/LArCalorimeter/LArCalibUtils/src/LArCalibDigitMaker.cxx b/LArCalorimeter/LArCalibUtils/src/LArCalibDigitMaker.cxx old mode 100755 new mode 100644 index dee9e8c31500d970553dfe171a02e1c154c743ff..9baf30332230d565a6a18e65f45a95a2cbc30f9a --- a/LArCalorimeter/LArCalibUtils/src/LArCalibDigitMaker.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCalibDigitMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArCalibDigitMaker.h" @@ -23,7 +23,6 @@ using CLHEP::ns; LArCalibDigitMaker::LArCalibDigitMaker(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), - m_larCablingSvc("LArCablingService"), m_nTrigger(0) { //declareProperty("DigitKey",m_key=""); @@ -44,7 +43,7 @@ LArCalibDigitMaker::~LArCalibDigitMaker() StatusCode LArCalibDigitMaker::initialize() { ATH_MSG_DEBUG ( "======== LArCalibDigitMaker Initialize ========" ); - ATH_CHECK( m_larCablingSvc.retrieve() ); + ATH_CHECK( m_calibMapKey.initialize() ); // std::cout << "Pattern.size()=" << m_vPattern.size() << std::endl; // std::cout << "DAC.size()=" << m_vDAC.size() << std::endl; @@ -88,9 +87,17 @@ StatusCode LArCalibDigitMaker::initialize() } -StatusCode LArCalibDigitMaker::execute() -{if (m_dontRun) - return StatusCode::SUCCESS; +StatusCode LArCalibDigitMaker::execute() { + + if (m_dontRun) return StatusCode::SUCCESS; + + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_calibMapKey}; + const LArCalibLineMapping* clcabling{*clHdl}; + if(!clcabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_calibMapKey.key() ); + return StatusCode::FAILURE; + } + const DataHandle<xAOD::EventInfo> thisEventInfo; ATH_CHECK( evtStore()->retrieve(thisEventInfo) ); // Modif J. Labbe from JF. Marchand - Nov. 2009 @@ -125,7 +132,7 @@ StatusCode LArCalibDigitMaker::execute() //Get data members of LArDigit const std::vector<short>& samples=(*it)->samples(); CaloGain::CaloGain gain=(*it)->gain(); - const std::vector<HWIdentifier>& calibChannelIDs=m_larCablingSvc->calibSlotLine(chid); + const std::vector<HWIdentifier>& calibChannelIDs=clcabling->calibSlotLine(chid); if (calibChannelIDs.size()==0) continue; //Disconnected channel //For the time beeing, I assume we are in H8 and have only one calib channel per FEB channel diff --git a/LArCalorimeter/LArCalibUtils/src/LArDeltaRespPredictor.cxx b/LArCalorimeter/LArCalibUtils/src/LArDeltaRespPredictor.cxx old mode 100755 new mode 100644 index d677cbf7a3db684ebec2c7aaefe80abbea3ec835..1a34e2aa511b9f586703ea8abb8aa3148615259d --- a/LArCalorimeter/LArCalibUtils/src/LArDeltaRespPredictor.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArDeltaRespPredictor.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArDeltaRespPredictor.h" @@ -28,6 +28,8 @@ LArDeltaRespPredictor::~LArDeltaRespPredictor() StatusCode LArDeltaRespPredictor::initialize() { + ATH_CHECK(m_cablingKey.initialize()); + return StatusCode::SUCCESS ; } @@ -44,6 +46,12 @@ StatusCode LArDeltaRespPredictor::stop() ATH_CHECK( detStore()->retrieve(caliWaveContainer,keyCali) ); ATH_MSG_INFO ( "Processing LArCaliWaveContainer from StoreGate, key='CaliWave'" ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // Create new LArCaliWaveContainer for DeltaResp(s) LArCaliWaveContainer* larDeltaRespContainer = 0; @@ -96,7 +104,7 @@ StatusCode LArDeltaRespPredictor::stop() StatusCode sc = larWFParamTool->getLArWaveParams(larCaliWave, itVec.channelId(), (CaloGain::CaloGain)gain, - wfParams); + wfParams, cabling); if (sc.isFailure()) { // bad parameters ATH_MSG_INFO ( "Bad parameters for channel " << (itVec.channelId()) ); diff --git a/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx b/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx old mode 100755 new mode 100644 index c2d1df6b80ea7fe279f7ab2b0b439da5d9090343..ba4a6a4ad6274ce5bb038278bf9f90dfa9b8e738 --- a/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArDigitOscillationCorrTool.h" @@ -33,8 +33,7 @@ LArDigitOscillationCorrTool::LArDigitOscillationCorrTool(const std::string& type m_nSigma(3.0), m_eventPhase(0), m_omega(1.024e6*hertz), - m_emId(0), m_fcalId(0), m_hecId(0), m_lar_on_id(0), - m_cablingService("LArCablingService") + m_emId(0), m_fcalId(0), m_hecId(0), m_lar_on_id(0) { declareInterface<ILArDigitOscillationCorrTool>(this); declareProperty("BeginRunPriority",m_priority); @@ -53,7 +52,7 @@ StatusCode LArDigitOscillationCorrTool::initialize() m_fcalId = caloIdMgr->getFCAL_ID(); m_hecId = caloIdMgr->getHEC_ID(); - ATH_CHECK( m_cablingService.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); IIncidentSvc* incSvc = nullptr; ATH_CHECK( service("IncidentSvc", incSvc) ); @@ -87,6 +86,14 @@ StatusCode LArDigitOscillationCorrTool::calculateEventPhase(const LArDigitContai //Now all data is available, start loop over Digit Container ATH_MSG_DEBUG ( "Loop over Digit Container with size <" << theDC.size() << ">" ); + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + for (unsigned int i=0;i<theDC.size();i++) { //Get data from LArDigit @@ -96,7 +103,7 @@ StatusCode LArDigitOscillationCorrTool::calculateEventPhase(const LArDigitContai const CaloGain::CaloGain gain = theDigit->gain(); // use only HEC channels - const Identifier id = m_cablingService->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); bool isHEC = false; if (m_hecId->is_lar_hec(id)) { @@ -181,6 +188,13 @@ StatusCode LArDigitOscillationCorrTool::correctLArDigits(LArDigitContainer &theD //Now all data is available, start loop over Digit Container ATH_MSG_DEBUG ( "Loop over Digit Container " ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + for (unsigned int i=0;i<theDC.size();i++) { //Get data from LArDigit LArDigit * theDigit = theDC[i]; @@ -190,7 +204,7 @@ StatusCode LArDigitOscillationCorrTool::correctLArDigits(LArDigitContainer &theD const CaloGain::CaloGain gain = theDigit->gain(); // correct only HEC channels - const Identifier id = m_cablingService->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); bool isHEC = false; if (m_hecId->is_lar_hec(id)) { diff --git a/LArCalorimeter/LArCalibUtils/src/LArDumpShapes.cxx b/LArCalorimeter/LArCalibUtils/src/LArDumpShapes.cxx old mode 100755 new mode 100644 index f467bc30f8d1de690370975236c863f0b7d0fc58..b570e38e1c49370c8b120afa1b76d4210ca7b985 --- a/LArCalorimeter/LArCalibUtils/src/LArDumpShapes.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArDumpShapes.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: LArDumpShapes.cxx,v 1.3 2007-12-03 10:02:56 wlampl Exp $ @@ -12,7 +12,6 @@ #include "LArCalibUtils/LArDumpShapes.h" #include "LArElecCalib/ILArShape.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/CaloGain.h" #include "StoreGate/StoreGateSvc.h" @@ -44,6 +43,8 @@ LArDumpShapes::LArDumpShapes (const std::string& name, ISvcLocator* svcloc) */ StatusCode LArDumpShapes::initialize() { + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS; } @@ -61,10 +62,12 @@ StatusCode LArDumpShapes::execute() const DataHandle<ILArShape> dd_shape; CHECK( detStore()->retrieve (dd_shape) ); - // Get the cabling service. - LArCablingService * cabling = 0; - CHECK( toolSvc()->retrieveTool("LArCablingService",cabling) ); - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // Get the calorimeter identifier helper. const LArEM_ID* em_id = CaloIdManager::instance()->getEM_ID(); diff --git a/LArCalorimeter/LArCalibUtils/src/LArMasterWaveBuilder.cxx b/LArCalorimeter/LArCalibUtils/src/LArMasterWaveBuilder.cxx old mode 100755 new mode 100644 index 878957325f598378bf7cdda1049ba65be0c61063..2f6e0ca435aaccc892b8df133da4546c419a507d --- a/LArCalorimeter/LArCalibUtils/src/LArMasterWaveBuilder.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArMasterWaveBuilder.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArMasterWaveBuilder.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" #include "LArRawConditions/LArCaliWaveContainer.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/CaloGain.h" @@ -124,6 +123,9 @@ StatusCode LArMasterWaveBuilder::initialize() { m_waveHelper = new LArWaveHelper() ; + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); + return StatusCode::SUCCESS ; } @@ -134,9 +136,18 @@ StatusCode LArMasterWaveBuilder::stop() const LArOnlineID* onlineHelper; const LArEM_ID* emId; - // Retrieve LArCablingService - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont){ + ATH_MSG_ERROR("Do not have calib mapping object " << m_CLKey.key() ); + return StatusCode::FAILURE; + } ATH_CHECK( detStore()->retrieve(onlineHelper, "LArOnlineID") ); const CaloIdManager* caloIdMgr=CaloIdManager::instance(); @@ -263,11 +274,11 @@ StatusCode LArMasterWaveBuilder::stop() long region = -1; try { - Identifier id = larCablingSvc->cnvToIdentifier(chID); + Identifier id = cabling->cnvToIdentifier(chID); layer = emId->sampling(id) ; region = emId->region(id) ; } catch ( LArID_Exception & except ) { - ATH_MSG_WARNING ( "A larCablingSvc exception was caught for channel 0x" + ATH_MSG_WARNING ( "A Cabling exception was caught for channel 0x" << MSG::hex << chID.get_compact() << MSG::dec << ". Skipping." ); continue ; @@ -465,12 +476,12 @@ StatusCode LArMasterWaveBuilder::stop() if ( m_listAllAnalysedChannels || DACs.size()>0 ) { try { - Identifier id = larCablingSvc->cnvToIdentifier(chId); + Identifier id = cabling->cnvToIdentifier(chId); int region = emId->region(id); int eta = emId->eta(id); int phi = emId->phi(id); int layer = emId->sampling(id); - const std::vector<HWIdentifier>& calibLineV=larCablingSvc->calibSlotLine(chId); + const std::vector<HWIdentifier>& calibLineV=clCont->calibSlotLine(chId); std::vector<HWIdentifier>::const_iterator calibLineIt=calibLineV.begin(); int calibLine = 0; if ( calibLineV.size()>0 ) diff --git a/LArCalorimeter/LArCalibUtils/src/LArOFCAlg.cxx b/LArCalorimeter/LArCalibUtils/src/LArOFCAlg.cxx old mode 100755 new mode 100644 index 033bdf2a0e3ad8de5890751917b1a17662d7e0a0..23fc68bb0cc5fc39fa7ceb9cd99530625fce25b9 --- a/LArCalorimeter/LArCalibUtils/src/LArOFCAlg.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArOFCAlg.cxx @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // LArOFC: Algorithm to calculate optimal filtering constants. @@ -19,7 +19,6 @@ #include "AthenaPoolUtilities/AthenaAttributeList.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetDescrElement.h" #include "CaloIdentifier/CaloCell_ID.h" @@ -33,7 +32,6 @@ LArOFCAlg::LArOFCAlg(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), - m_cablingService("LArCablingService"), m_onlineID(nullptr), m_calo_dd_man(nullptr), m_larPhysWaveBin(nullptr), @@ -127,12 +125,7 @@ StatusCode LArOFCAlg::initialize(){ return sc; } - sc = m_cablingService.retrieve() ; - if (sc.isFailure()) { - ATH_MSG_ERROR( "failed to retrieve LArCablingService " ); - return sc; - } - ATH_MSG_INFO( " retrieved LArCablingService " ); + ATH_CHECK(m_cablingKey.initialize()); ATH_MSG_INFO( "Number of wave points needed : " << m_nPoints ) ; if (m_computeV2) { @@ -154,6 +147,12 @@ StatusCode LArOFCAlg::stop() ATH_MSG_INFO( "Number of phases in OFC : " << m_nPhases ) ; ATH_MSG_INFO( "Spacing between two phases : " << m_dPhases ) ; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } StatusCode sc; if (m_useDelta == 3 || m_useDeltaV2==3){ @@ -185,7 +184,7 @@ StatusCode LArOFCAlg::stop() sc=this->initCaliWaveContainer(); } else { - sc=this->initPhysWaveContainer(); + sc=this->initPhysWaveContainer(cabling); } if (m_readDSPConfig) { @@ -222,8 +221,7 @@ StatusCode LArOFCAlg::stop() if (m_computeV2) m_AutoCorrDecoderV2->AutoCorr(chanData.chid,(CaloGain::CaloGain)chanData.gain,m_nSamples); - //ToolHandle<LArCablingService> m_cablingService; - Identifier id=m_cablingService->cnvToIdentifier(chanData.chid); + Identifier id=cabling->cnvToIdentifier(chanData.chid); if (m_useDelta==3 || m_useDeltaV2) { //const CaloDetDescrManager* m_calo_dd_man; m_calo_dd_man->get_element(id); @@ -236,7 +234,7 @@ StatusCode LArOFCAlg::stop() m_larPhysWaveBin->bin(chanData.chid,(CaloGain::CaloGain)chanData.gain); //Instanciated the functor and start parallel_for - Looper looper(&m_allChannelData,this); + Looper looper(&m_allChannelData,cabling, this); tbb::blocked_range<size_t> range(0, m_allChannelData.size()); ATH_MSG_INFO( "Starting parallel execution" ); tbb::parallel_for(tbb::blocked_range<size_t>(0, m_allChannelData.size()),looper); @@ -247,7 +245,7 @@ StatusCode LArOFCAlg::stop() else { ATH_MSG_INFO( "Single threaded execution" ); for (perChannelData_t& chanData : m_allChannelData) { - this->process(chanData); + this->process(chanData,cabling); } } @@ -414,7 +412,7 @@ StatusCode LArOFCAlg::stop() } -void LArOFCAlg::process(perChannelData_t& chanData) const { +void LArOFCAlg::process(perChannelData_t& chanData, const LArOnOffIdMapping* cabling) const { LArWaveHelper larWaveHelper; const LArWaveCumul* nextWave=chanData.inputWave; @@ -536,8 +534,8 @@ void LArOFCAlg::process(perChannelData_t& chanData) const { chanData.phasewMaxAt3=iPhase; } - bool thisChanUseDelta=useDelta(ch_id,m_useDelta); - bool thisChanUseDeltaV2=m_computeV2 && useDelta(ch_id,m_useDeltaV2); + bool thisChanUseDelta=useDelta(ch_id,m_useDelta,cabling); + bool thisChanUseDeltaV2=m_computeV2 && useDelta(ch_id,m_useDeltaV2,cabling); Eigen::VectorXd delta; if (thisChanUseDelta || thisChanUseDeltaV2) { // will need delta for at least one of the two versions @@ -601,7 +599,7 @@ void LArOFCAlg::process(perChannelData_t& chanData) const { -StatusCode LArOFCAlg::initPhysWaveContainer() { +StatusCode LArOFCAlg::initPhysWaveContainer(const LArOnOffIdMapping* cabling) { typedef LArPhysWaveContainer::ConstConditionsMapIterator WAVEIT; @@ -622,7 +620,7 @@ StatusCode LArOFCAlg::initPhysWaveContainer() { WAVEIT it_e=waveCnt->end(gain); for (;it!=it_e;++it) { const HWIdentifier chid=it.channelId(); - if (m_cablingService->isOnlineConnected (chid)){ + if (cabling->isOnlineConnected (chid)){ const LArWaveCumul* wave= &(*it); //down-cast if (!wave->isEmpty()) { m_allChannelData.emplace_back(wave, chid,gain); @@ -873,7 +871,7 @@ Eigen::VectorXd LArOFCAlg::getDelta(std::vector<float>& samples, const HWIdentif } - bool LArOFCAlg::useDelta(const HWIdentifier chid, const int jobOFlag) const { + bool LArOFCAlg::useDelta(const HWIdentifier chid, const int jobOFlag, const LArOnOffIdMapping* cabling) const { if (jobOFlag==2){ return true; @@ -891,8 +889,8 @@ Eigen::VectorXd LArOFCAlg::getDelta(std::vector<float>& samples, const HWIdentif } else if (m_onlineID->isFCALchannel(chid) ){ - if (m_cablingService->isOnlineConnected (chid)){ - Identifier ofl_id = m_cablingService->cnvToIdentifier(chid); + if (cabling->isOnlineConnected (chid)){ + Identifier ofl_id = cabling->cnvToIdentifier(chid); const CaloDetDescrElement* dde = m_calo_dd_man->get_element(ofl_id); if (! dde) { ATH_MSG_ERROR( " dde = 0 , onl_id, ofl_id= "<< chid<<" "<<ofl_id ); diff --git a/LArCalorimeter/LArCalibUtils/src/LArPhysWaveBuilder.cxx b/LArCalorimeter/LArCalibUtils/src/LArPhysWaveBuilder.cxx old mode 100755 new mode 100644 index 2915376617d703206d79eb02b1a19d444426cec3..a6ee439f3cf702a77f98504fae94e772957b3910 --- a/LArCalorimeter/LArCalibUtils/src/LArPhysWaveBuilder.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArPhysWaveBuilder.cxx @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: LArPhysWaveBuilder.cxx,v 1.13 2009-04-27 15:46:36 gunal Exp $ @@ -22,7 +22,6 @@ #include "LArElecCalib/ILArADC2MeVTool.h" #include "LArElecCalib/ILArPhaseTool.h" #include "LArElecCalib/ILArPedestal.h" -#include "LArCabling/LArCablingService.h" #include "Identifier/HWIdentifier.h" #include "AthenaKernel/errorcheck.h" #include "CLHEP/Units/SystemOfUnits.h" @@ -265,6 +264,8 @@ LArPhysWaveBuilder::~LArPhysWaveBuilder() */ StatusCode LArPhysWaveBuilder::initialize() { + ATH_CHECK(m_cablingKey.initialize()); + // Fetch tools and services. CHECK( toolSvc()->retrieveTool("LArADC2MeVTool", m_adc2mevTool) ); if (m_phase_tool_name != "peak") @@ -299,10 +300,14 @@ StatusCode LArPhysWaveBuilder::execute() { ATH_MSG_DEBUG ( "LArPhysWaveBuilder in execute()" ); - // We'll defer retrieving the cabling service until the first time - // we need it. - LArCablingService * cabling = 0; - + // Retrieve cabling + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling=*cablingHdl; + if (!cabling) { + ATH_MSG_ERROR( " Can't get cabling with key: " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + // Get the identifier helper. const LArEM_ID* emId = CaloIdManager::instance()->getEM_ID(); @@ -365,8 +370,6 @@ StatusCode LArPhysWaveBuilder::execute() if (! cellwave.id.is_valid()) { // Save online id in cell wave cellwave.onlineId = chid; - if (!cabling) - CHECK( toolSvc()->retrieveTool("LArCablingService",cabling) ); if (cabling->isOnlineConnected(chid)) { try { @@ -655,8 +658,14 @@ LArPhysWaveBuilder::write_root (LArPhysWaveContainer* larPhysWaveContainer) { // Get ID translators. const LArEM_ID* emId = CaloIdManager::instance()->getEM_ID(); - LArCablingService * cabling = 0; - CHECK( toolSvc()->retrieveTool("LArCablingService",cabling) ); + + // Retrieve cabling + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling=*cablingHdl; + if (!cabling) { + ATH_MSG_ERROR( " Can't get cabling with key: " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // Open the root file. TFile rootoutputfile(m_rootoutputfile.c_str(),"RECREATE"); diff --git a/LArCalorimeter/LArCalibUtils/src/LArPhysWavePredictor.cxx b/LArCalorimeter/LArCalibUtils/src/LArPhysWavePredictor.cxx old mode 100755 new mode 100644 index fda3439683955d41589887c97092cd0f2a70cf2c..f935343acd23db5465a62afaa42762339c4dca12 --- a/LArCalorimeter/LArCalibUtils/src/LArPhysWavePredictor.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArPhysWavePredictor.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArPhysWavePredictor.h" @@ -34,8 +34,6 @@ #include "LArCalibUtils/LArPhysWaveTool.h" -#include "LArCabling/LArCablingService.h" - #include <stdio.h> #include <iostream> #include <fstream> @@ -130,6 +128,7 @@ StatusCode LArPhysWavePredictor::initialize() ATH_CHECK( m_BCKey.initialize() ); + ATH_CHECK( m_cablingKey.initialize() ); sc=m_maskingTool.retrieve(); if (sc.isFailure()) { @@ -195,17 +194,12 @@ StatusCode LArPhysWavePredictor::stop() return StatusCode::FAILURE; } - // Retrieve LArCablingService - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - sc = larCablingSvc.retrieve(); - if (sc!=StatusCode::SUCCESS) { - ATH_MSG_ERROR( " Can't get LArCablingSvc " ); - return sc; - } - - if(sc.isFailure()){ - ATH_MSG_ERROR( "Could not retrieve LArCablingService Tool" ); - return StatusCode::FAILURE; + // Retrieve cabling + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling=*cablingHdl; + if (!cabling) { + ATH_MSG_ERROR( " Can't get cabling with key: " << m_cablingKey.key() ); + return StatusCode::FAILURE; } // Get parameters from detStore (access through abtract interfaces) @@ -419,14 +413,14 @@ StatusCode LArPhysWavePredictor::stop() // region and layer information are needed Identifier id; try { - id = larCablingSvc->cnvToIdentifier(chid); + id = cabling->cnvToIdentifier(chid); } catch (LArID_Exception & execpt) { ATH_MSG_ERROR( "LArCabling exception caught for channel 0x" << MSG::hex << chid << MSG::dec << ". Skipping channel." ) ; continue ; } - if ( !larCablingSvc->isOnlineConnected(chid) ) { // unconnected channel : skipping ... + if ( !cabling->isOnlineConnected(chid) ) { // unconnected channel : skipping ... ATH_MSG_VERBOSE("Unconnected channel 0x" << MSG::hex << chid << MSG::dec << ". Skipping channel."); continue ; diff --git a/LArCalorimeter/LArCalibUtils/src/LArRTMParamExtractor.cxx b/LArCalorimeter/LArCalibUtils/src/LArRTMParamExtractor.cxx old mode 100755 new mode 100644 index 98cec037b33c34fd1bae529ba36264e1e0152096..6833c1c8d284063d789188dcd6eabc9465f644f3 --- a/LArCalorimeter/LArCalibUtils/src/LArRTMParamExtractor.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArRTMParamExtractor.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArRTMParamExtractor.h" @@ -156,6 +156,8 @@ StatusCode LArRTMParamExtractor::initialize() { if (m_ignoreDACselection) ATH_MSG_INFO( "Will ignore DAC selection and use first value found per channel per gain" ); + ATH_CHECK( m_cablingKey.initialize() ); + return StatusCode::SUCCESS ; } @@ -178,6 +180,13 @@ StatusCode LArRTMParamExtractor::stop() ATH_MSG_ERROR( " Can't get LArWFParamTool" ); return sc; } + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // retrieve previous complete objects from DetStore, if needed // ----------------------------------------------------------- @@ -533,6 +542,7 @@ StatusCode LArRTMParamExtractor::stop() sc = larWFParamTool->getLArWaveParams(larCaliWave, chid, (CaloGain::CaloGain)gain, wfParams, + cabling, omegaScan, resOscill0, resOscill1 ); diff --git a/LArCalorimeter/LArCalibUtils/src/LArRampBuilder.cxx b/LArCalorimeter/LArCalibUtils/src/LArRampBuilder.cxx old mode 100755 new mode 100644 index 3b74781ceb724034caa81b101017be7e8f241dae..8bdaac7ec791a440f69591587b681a1c814ef8fe --- a/LArCalorimeter/LArCalibUtils/src/LArRampBuilder.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArRampBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArRampBuilder.h" @@ -26,7 +26,6 @@ LArRampBuilder::LArRampBuilder(const std::string& name, ISvcLocator* pSvcLocator m_peakOFTool("LArOFPeakRecoTool"), m_event_counter(0), m_recoType(OF), - m_larCablingSvc("LArCablingService"), m_onlineHelper(), m_emId(0), m_groupingType("ExtendedFeedThrough"), @@ -83,11 +82,8 @@ StatusCode LArRampBuilder::initialize() return StatusCode::FAILURE; } - sc = m_larCablingSvc.retrieve(); - if(sc.isFailure()){ - ATH_MSG_FATAL( "Could not retrieve LArCablingService Tool" ); - return sc; - } + ATH_CHECK( m_cablingKey.initialize() ); + if(m_doBadChannelMask) { sc=m_badChannelMask.retrieve(); if (sc.isFailure()) { @@ -143,7 +139,7 @@ void LArRampBuilder::chooseRecoMode() { ATH_MSG_DEBUG("LArParabolaPeakRecoTool retrieved with success!"); if(m_correctBias){ - // if using parabola, get the cabling service and offlineID helper to obtain the layer (needed for correction) + // if using parabola, get offlineID helper to obtain the layer (needed for correction) const CaloIdManager *caloIdMgr=CaloIdManager::instance() ; m_emId=caloIdMgr->getEM_ID(); if (!m_emId) { @@ -455,6 +451,13 @@ StatusCode LArRampBuilder::stop() else larRampComplete=NULL; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + int containerCounter=0; //Outermost loop goes over all gains (different containers). //for (CaloGain::CaloGain gain=CaloGain::LARHIGHGAIN;gain<CaloGain::LARNGAIN;gain++) { @@ -547,7 +550,7 @@ StatusCode LArRampBuilder::stop() kMax=2; bool isgood=true; if(m_doBadChannelMask && m_badChannelMask->cellShouldBeMasked(chid)) isgood=false; - if (m_larCablingSvc->isOnlineConnected(chid) && isgood) { + if (cabling->isOnlineConnected(chid) && isgood) { ATH_MSG_WARNING( "Not enough samples around the maximum! Use kMax=2 (" << m_onlineHelper->channel_name(chid) <<", DAC=" << dac_it->first << ", Amp[2]=" << ramppoint.Samples[2] << " )" ); @@ -656,7 +659,7 @@ StatusCode LArRampBuilder::stop() IdentifierHash chid_hash = m_onlineHelper->channel_Hash(chid); // get layer for correction - Identifier id=m_larCablingSvc->cnvToIdentifier(chid); + Identifier id=cabling->cnvToIdentifier(chid); int layer=m_emId->sampling(id); // std::cout << "samples = " << ramppoint.Samples.size() << ", 0 = " << ramppoint.Samples[0] << ", 1 = " << ramppoint.Samples[1] << std::endl; peak=m_peakParabolaTool->peak(ramppoint.Samples,layer,m_thePedestal[chid_hash]); @@ -708,10 +711,9 @@ StatusCode LArRampBuilder::stop() sort(data.begin(),data.end()); //Sort vector of raw data (necessary to cut off nonlinar high ADC-values) std::vector<float> rampCoeffs; std::vector<int> vSat; - //bool isConnected = m_larCablingSvc->isOnlineConnected(chid); - StatusCode sc=rampfit(m_degree+1,data,rampCoeffs,vSat,chid); + StatusCode sc=rampfit(m_degree+1,data,rampCoeffs,vSat,chid,cabling); if (sc!=StatusCode::SUCCESS){ - if (!m_larCablingSvc->isOnlineConnected(chid)) + if (!cabling->isOnlineConnected(chid)) ATH_MSG_DEBUG("Failed to produce ramp for disconnected channel " << m_onlineHelper->channel_name(chid)); else if (m_doBadChannelMask && m_badChannelMask->cellShouldBeMasked(chid,gain)) ATH_MSG_INFO( "Failed to produce ramp for known bad channel " << m_onlineHelper->channel_name(chid)); @@ -802,12 +804,12 @@ StatusCode LArRampBuilder::stop() StatusCode LArRampBuilder::rampfit(unsigned deg, const std::vector<LArRawRamp::RAMPPOINT_t>& data, std::vector<float>& rampCoeffs, std::vector<int>& vSat, - const HWIdentifier chid) { + const HWIdentifier chid, const LArOnOffIdMapping* cabling) { unsigned linRange=data.size(); if (linRange<2) { bool isgood=true; if(m_doBadChannelMask && m_badChannelMask->cellShouldBeMasked(chid)) isgood=false; - if (m_larCablingSvc->isOnlineConnected(chid) && isgood ) { + if (cabling->isOnlineConnected(chid) && isgood ) { ATH_MSG_ERROR( "Not enough datapoints (" << linRange << ") to fit a polynom!" ); return StatusCode::FAILURE; } @@ -860,7 +862,7 @@ StatusCode LArRampBuilder::rampfit(unsigned deg, const std::vector<LArRawRamp::R bool isgood=true; if(m_doBadChannelMask && m_badChannelMask->cellShouldBeMasked(chid)) isgood=false; if (deg>linRange) { - if (m_larCablingSvc->isOnlineConnected(chid) && isgood ) + if (cabling->isOnlineConnected(chid) && isgood ) ATH_MSG_ERROR( "Not enough datapoints before saturation (" << linRange << ") to fit a polynom of degree " << deg ); else ATH_MSG_DEBUG("Not enough datapoints before saturation (" << linRange << ") to fit a polynom of degree " << deg diff --git a/LArCalorimeter/LArCalibUtils/src/LArTCMPhysWavePredictor.cxx b/LArCalorimeter/LArCalibUtils/src/LArTCMPhysWavePredictor.cxx old mode 100755 new mode 100644 index 58770b75efad9f0557b67508822af94249d70f9a..b5eeb2884332473c3b9ce1c14a76d8c3b0526ab0 --- a/LArCalorimeter/LArCalibUtils/src/LArTCMPhysWavePredictor.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArTCMPhysWavePredictor.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArTCMPhysWavePredictor.h" @@ -88,9 +88,12 @@ StatusCode LArTCMPhysWavePredictor::stop() return StatusCode::FAILURE; } - // Retrieve LArCablingService - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } //open ouput file for dumping waves TFile f(m_rootoutputfile.c_str(),"recreate"); //need to implement: if (m_rootrawdump) @@ -219,7 +222,7 @@ StatusCode LArTCMPhysWavePredictor::stop() } Identifier id=emId->channel_id(+1,ilayer,+0,ieta,iphi); - HWIdentifier chID = larCablingSvc->createSignalChannelID(id); + HWIdentifier chID = cabling->createSignalChannelID(id); //if ((ilayer==1)||(ilayer==2)) larPhysWave = new LArPhysWave(175,1,1); //gain 1 for debug //else larPhysWave = new LArPhysWave(175,1,1); LArPhysWave larPhysWave (175, 1, 1); @@ -227,7 +230,7 @@ StatusCode LArTCMPhysWavePredictor::stop() // decode id to check if correct //HWIdentifier testchID = larPhysWave->channelID(); - //Identifier testid=larCablingSvc->cnvToIdentifier(testchID); + //Identifier testid=cabling->cnvToIdentifier(testchID); //std::cout <<"physwave "<<" eta "<<emId->eta(testid)<<" phi "<< emId->phi(testid)<<" layer "<<emId->sampling(testid)<<" gain "<<larPhysWave->getGain()<<std::endl; //Fill LArPhysWave @@ -299,9 +302,9 @@ StatusCode LArTCMPhysWavePredictor::stop() Identifier id ; try { - id = larCablingSvc->cnvToIdentifier(chID); + id = cabling->cnvToIdentifier(chID); } catch ( const LArID_Exception& ) { - ATH_MSG_ERROR ( "LArCablingSvc exception caught for channel 0x" << MSG::hex << chID << MSG::dec ); + ATH_MSG_ERROR ( "Cabling exception caught for channel 0x" << MSG::hex << chID << MSG::dec ); } int layer = emId->sampling(id); int eta = emId->eta(id); diff --git a/LArCalorimeter/LArCalibUtils/src/LArTimePhysPrediction.cxx b/LArCalorimeter/LArCalibUtils/src/LArTimePhysPrediction.cxx old mode 100755 new mode 100644 index 7cae0b7d5d43aaf8666ed0729bdbde54cfee5505..e7fe62465b44d60a9407fd6f215d504da611a129 --- a/LArCalorimeter/LArCalibUtils/src/LArTimePhysPrediction.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArTimePhysPrediction.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArTimePhysPrediction.h" @@ -23,7 +23,6 @@ #include "GaudiKernel/NTuple.h" #include "GaudiKernel/IToolSvc.h" #include <TMath.h> -#include "LArCabling/LArCablingService.h" typedef LArCaliWaveContainer::ConstConditionsMapIterator CaliCellIt; typedef LArCaliWaveContainer::LArCaliWaves::const_iterator CaliWaveIt; @@ -65,6 +64,9 @@ StatusCode LArTimePhysPrediction::initialize() ATH_MSG_INFO ( "LArTimePhysPrediction in initialize()" ); ATH_CHECK( service("THistSvc", m_thistSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_calibMapKey.initialize() ); + //Initialize ntuples NTupleFilePtr file1(ntupleSvc(),"/NTUPLES/FILE1"); if (!file1){ @@ -152,9 +154,19 @@ StatusCode LArTimePhysPrediction::stop() m_CaloDepthTool=dynamic_cast<CaloDepthTool*>(algTool); ATH_MSG_INFO ( "CaloDepthTool retrieved with name " << m_CaloDepth ); - //LArCablingSvc - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_calibMapKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont) { + ATH_MSG_ERROR( "Do not have calib line mapping from key " << m_calibMapKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have calib line mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + //Define helpers LArWaveHelper larWaveHelper; @@ -221,15 +233,15 @@ StatusCode LArTimePhysPrediction::stop() const CaloCell_ID* caloCID = caloDDM->getCaloCell_ID(); try { - id = larCablingSvc->cnvToIdentifier(chid); + id = cabling->cnvToIdentifier(chid); } catch ( const LArID_Exception& ) { - ATH_MSG_ERROR ( "LArCablingSvc exception caught for channel " << MSG::hex << chid << MSG::dec ); + ATH_MSG_ERROR ( "LArCabling exception caught for channel " << MSG::hex << chid << MSG::dec ); continue; } Channel = onlineHelper->channel(chid); - const std::vector<HWIdentifier>& calibLineV = larCablingSvc->calibSlotLine(chid); + const std::vector<HWIdentifier>& calibLineV = clCont->calibSlotLine(chid); std::vector<HWIdentifier>::const_iterator calibLineIt = calibLineV.begin(); CalibLine = onlineHelper->channel(*calibLineIt) ; diff --git a/LArCalorimeter/LArCalibUtils/src/LArTimeTuning.cxx b/LArCalorimeter/LArCalibUtils/src/LArTimeTuning.cxx old mode 100755 new mode 100644 index 1696bbbaae6f108880291e5199dfdba874cc4ffe..1aa9583f09b95cf7dd67ff3e7ccd09b1fa5d763b --- a/LArCalorimeter/LArCalibUtils/src/LArTimeTuning.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArTimeTuning.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArTimeTuning.h" @@ -41,7 +41,6 @@ LArTimeTuning::LArTimeTuning (const std::string& name, ISvcLocator* pSvcLocator) m_SamplingPeriodeUpperLimit(0), m_SamplingPeriodeLowerLimit(0), m_nIterAverage(0), - m_larCablingSvc(0), m_emId(0), m_gain(), m_scope(GLOBAL) @@ -81,9 +80,7 @@ LArTimeTuning::~LArTimeTuning() StatusCode LArTimeTuning::initialize(){ ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - // Retrieve LArCablingService - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); const CaloIdManager *caloIdMgr=CaloIdManager::instance() ; m_emId = caloIdMgr->getEM_ID(); @@ -234,6 +231,13 @@ StatusCode LArTimeTuning::execute() { float err_timePeak; float err_Peak; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + do { // Iteration, outermost loop ATH_MSG_DEBUG ( "Iteration " << nIter ); @@ -261,7 +265,7 @@ StatusCode LArTimeTuning::execute() { const HWIdentifier febid=m_onlineHelper->feb_Id(chid); if ( m_layerSel >=0 ) { - Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + Identifier id = cabling->cnvToIdentifier(chid); int layer = m_emId->sampling(id); if ( layer != m_layerSel ) { continue; //Ignore this cell, not corresponding to layer selection diff --git a/LArCalorimeter/LArCalibUtils/src/LArTimeTuningNtuple.cxx b/LArCalorimeter/LArCalibUtils/src/LArTimeTuningNtuple.cxx old mode 100755 new mode 100644 index a1d8a85edd8ae8694aebacaa3fa6979c8fa61203..b424a5a7cae09219ad65fb59d783bbf22194906c --- a/LArCalorimeter/LArCalibUtils/src/LArTimeTuningNtuple.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArTimeTuningNtuple.cxx @@ -1,9 +1,8 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArTimeTuningNtuple.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/CaloIdManager.h" @@ -65,6 +64,10 @@ StatusCode LArTimeTuningNtuple::initialize(){ } m_ntuplePtr=nt; + + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); + return StatusCode::SUCCESS; } @@ -130,9 +133,18 @@ StatusCode LArTimeTuningNtuple::stop(){ return StatusCode::FAILURE; } - ToolHandle<LArCablingService> larCablingSvc("LArCablingService"); - ATH_CHECK( larCablingSvc.retrieve() ); - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont) { + ATH_MSG_ERROR( "Do not have calib line mapping !!!" ); + return StatusCode::FAILURE; + } if (m_CellTimeOffsetKey.length()>0) { LArCellTimeOffset *cellTimeOffset=nullptr; @@ -146,7 +158,7 @@ StatusCode LArTimeTuningNtuple::stop(){ m_nCellNt=0; for (;it!=it_e;it++) { - Identifier id = larCablingSvc->cnvToIdentifier(it->first); + Identifier id = cabling->cnvToIdentifier(it->first); m_cellTimeNt[m_nCellNt] = cellTimeOffset->TimeOffset(it->first); m_cellSlotNt[m_nCellNt] = m_larOnlineHelper->slot(it->first); @@ -158,7 +170,7 @@ StatusCode LArTimeTuningNtuple::stop(){ m_cellPhiNt[m_nCellNt] = emId->phi(id) ; m_cellGainNt[m_nCellNt] = -999 ; /*** FIX ME ***/ m_cellChannelNt[m_nCellNt] = m_larOnlineHelper->channel(it->first); - const std::vector<HWIdentifier>& calibLineV = larCablingSvc->calibSlotLine(it->first); + const std::vector<HWIdentifier>& calibLineV = clCont->calibSlotLine(it->first); std::vector<HWIdentifier>::const_iterator calibLineIt = calibLineV.begin(); m_cellCalibLineNt[m_nCellNt] = m_larOnlineHelper->channel(*calibLineIt) ; diff --git a/LArCalorimeter/LArCalibUtils/src/LArWFParamTool.cxx b/LArCalorimeter/LArCalibUtils/src/LArWFParamTool.cxx old mode 100755 new mode 100644 index 234cd15fba29295b9bebe7627e3dd3e20a63a47e..e78dbdea9777f51d34d4c30b2a922a702350a1ca --- a/LArCalorimeter/LArCalibUtils/src/LArWFParamTool.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArWFParamTool.cxx @@ -1,11 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCalibUtils/LArWFParamTool.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" #include <math.h> #ifndef __APPLE__ @@ -32,7 +32,6 @@ const double LArWFParamTool::m_EPSILON=2.22045e-16; LArWFParamTool::LArWFParamTool ( const std::string& type, const std::string& name,const IInterface* parent ) : AthAlgTool(type,name,parent), - m_larCablingSvc("LArCablingService"), m_NBaseline(0), m_ShiftToStart(false), m_SubtractBaseline(false), @@ -150,24 +149,9 @@ StatusCode LArWFParamTool::initialize() } - StatusCode sc = detStore()->retrieve(m_onlineHelper, "LArOnlineID"); - if (sc.isFailure()) { - ATH_MSG_ERROR( "Could not get LArOnlineID helper" ); - return sc; - } + ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); - sc = detStore()->retrieve(m_emId, "LArEM_ID"); - if (sc.isFailure()) { - ATH_MSG_ERROR( "Could not get LArOnlineID helper" ); - return sc; - } - - sc= m_larCablingSvc.retrieve(); - if (sc.isFailure()) { - ATH_MSG_ERROR( "Could not get LArCablingService" ); - return sc; - } - + ATH_CHECK( detStore()->retrieve(m_emId, "LArEM_ID") ); return StatusCode::SUCCESS; } @@ -177,6 +161,7 @@ StatusCode LArWFParamTool::getLArWaveParams(const LArCaliWave& larCaliWave, const HWIdentifier chid, const CaloGain::CaloGain gain, LArWFParams& wfParams, + const LArOnOffIdMapping *cabling, LArCaliWave* omegaScanWave, LArCaliWave* resOscill0, LArCaliWave* resOscill1) const @@ -219,7 +204,7 @@ StatusCode LArWFParamTool::getLArWaveParams(const LArCaliWave& larCaliWave, // find m_Omega0 using RTM if ( wfParams.omega0() == DoExtract ) { - StatusCode sc = RTM_Omega0(gCali,chid,wfParams,waveTiming,omegaScanWave); + StatusCode sc = RTM_Omega0(gCali,chid,wfParams,waveTiming,cabling,omegaScanWave); if ( sc.isFailure() ) { ATH_MSG_WARNING( "Could not extract Omega0 for ChID=" << chid.get_compact() << " gain=" << (int)gain ); @@ -231,7 +216,7 @@ StatusCode LArWFParamTool::getLArWaveParams(const LArCaliWave& larCaliWave, } - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); const unsigned layer=m_emId->sampling(id); if ( m_storeResOscill[ layer ] && resOscill0) { LArWave injres0 = injRespRes(gCali,wfParams.omega0(),0); @@ -401,11 +386,11 @@ LArWave LArWFParamTool::dstepCorrDfstep(const LArWave& gCali, const double& fste return w ; } -StatusCode LArWFParamTool::RTM_Omega0(const LArWave& gCali, const HWIdentifier chid, LArWFParams& wfParams, const WaveTiming_t& wt, LArCaliWave* omegaScanWave) const +StatusCode LArWFParamTool::RTM_Omega0(const LArWave& gCali, const HWIdentifier chid, LArWFParams& wfParams, const WaveTiming_t& wt, const LArOnOffIdMapping *cabling, LArCaliWave* omegaScanWave) const { /* begin of the COSINE RESPONSE analysis */ - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); // Define the (raw) minimum research interval (if the Layer card is not set, // uses the wider interval, and default value for the first minimum scan) diff --git a/LArCalorimeter/LArCellRec/CMakeLists.txt b/LArCalorimeter/LArCellRec/CMakeLists.txt index 5796f76f16b695d87ff36a7d509314ff48b9e98b..bebaead3a19660a1bd6b7dbd63e7e535cd363b4e 100644 --- a/LArCalorimeter/LArCellRec/CMakeLists.txt +++ b/LArCalorimeter/LArCellRec/CMakeLists.txt @@ -72,4 +72,4 @@ atlas_install_joboptions( share/*.py ) atlas_add_test( LArCellBuilderFromLArHitTool_test SCRIPT test/LArCellBuilderFromLArHitTool_test.sh PROPERTIES TIMEOUT 600 - EXTRA_PATTERNS "LArDetectorToolNV|is still valid|no data retrieved|Database being retired|Reading file|Unable to locate catalog|Resolved path|DigitizationFlags|^Domain|created CondCont|no dictionary for class|^ +[+]|Reading LArPedestalMC|IOV callback|^DetectorStore|Cache alignment" ) + EXTRA_PATTERNS "LArDetectorToolNV|is still valid|no data retrieved|Database being retired|Reading file|Unable to locate catalog|Resolved path|DigitizationFlags|^Domain|created CondCont|no dictionary for class|^ +[+]|Reading LArPedestalMC|IOV callback|^DetectorStore|Cache alignment|MetaDataSvc" ) diff --git a/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.py b/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.py index 1cdcf271c1146395156bc46bc1b76cb4a54c0c25..895102e89540ceeaef67477685c2d060814bc3db 100644 --- a/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.py +++ b/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.py @@ -28,6 +28,12 @@ from AtlasGeoModel import GeoModelInit from AtlasGeoModel import SetupRecoGeometry include( "CaloIdCnv/CaloIdCnv_joboptions.py" ) +from McEventSelector import McEventSelectorConf +svcMgr+=McEventSelectorConf.McEventSelector('EventSelector', + RunNumber=999999, + EventsPerLB=3, + TimeStampInterval=1) + from GeoModelSvc.GeoModelSvcConf import GeoModelSvc ServiceMgr += GeoModelSvc() theApp.CreateSvc += [ "GeoModelSvc"] @@ -43,14 +49,12 @@ topSequence = AlgSequence() theApp.EvtMax=5 - import ROOT from LArCellRec.LArCellDeadOTXCorrToolDefault import LArCellDeadOTXCorrToolDefault from AthenaCommon.AlgSequence import AlgSequence topSequence = AlgSequence() - ########################################################################### diff --git a/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.ref b/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.ref index 051220ee50516696ec0782547ddeb99384b577d2..6ef5be37f07d7234a475170dc83583651ae73b96 100644 --- a/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.ref +++ b/LArCalorimeter/LArCellRec/share/LArCellBuilderFromLArHitTool_test.ref @@ -1,14 +1,14 @@ -Thu Dec 6 05:01:02 CET 2018 +Fri Feb 1 08:30:54 CET 2019 Preloading tcmalloc_minimal.so Py:Athena INFO including file "AthenaCommon/Preparation.py" -Py:Athena INFO using release [AthenaWorkDir-22.0.1] [x86_64-slc6-gcc62-opt] [atlas-work3/fa0fd6d0989] -- built on [2018-12-06T0405] +Py:Athena INFO using release [WorkDir-22.0.1] [x86_64-slc6-gcc62-opt] [remove_LArCablingSvc/fa86075] -- built on [2019-01-31T2054] Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Py:Athena INFO executing ROOT6Setup Py:Athena INFO including file "AthenaCommon/Execution.py" -Py:Athena INFO including file "LArCellRec/LArCellBuilderFromLArHitTool_test.py" +Py:Athena INFO including file "LArCellRec//LArCellBuilderFromLArHitTool_test.py" [?1034hSetGeometryVersion.py obtained major release version 22 Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" -Py:ConfigurableDb INFO Read module info for 5473 configurables from 52 genConfDb files +Py:ConfigurableDb INFO Read module info for 5489 configurables from 48 genConfDb files Py:ConfigurableDb INFO No duplicates have been found: that's good ! EventInfoMgtInit: Got release version Athena-22.0.1 Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 @@ -43,7 +43,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve ApplicationMgr SUCCESS ==================================================================================================================================== Welcome to ApplicationMgr (GaudiCoreSvc v30r5) - running on lxplus077.cern.ch on Thu Dec 6 05:01:24 2018 + running on pckeatlas05.cern.ch on Fri Feb 1 08:31:04 2019 ==================================================================================================================================== ApplicationMgr INFO Successfully loaded modules : AthenaServices ApplicationMgr INFO Application Manager Configured successfully @@ -51,7 +51,7 @@ ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to leve StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry -ClassIDSvc INFO getRegistryEntries: read 3219 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 3320 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 @@ -60,8 +60,8 @@ PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data -DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config -DBReplicaSvc INFO Total of 10 servers found for host lxplus077.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pckeatlas05.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables @@ -70,6 +70,7 @@ PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atla PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml DbSession INFO Open DbSession Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) IOVDbSvc INFO Opened read transaction for POOL PersistencySvc IOVDbSvc INFO Only 5 POOL conditions files will be open at once IOVDbSvc INFO Cache alignment will be done in 3 slices @@ -84,7 +85,7 @@ IOVDbSvc INFO preLoadAddresses: Removing folder /TagInfo. It should IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" IOVSvcTool INFO IOVRanges will be checked at every Event -ClassIDSvc INFO getRegistryEntries: read 2134 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2091 CLIDRegistry entries for module ALL IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/OFLP200 IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 IOVDbSvc INFO Disconnecting from COOLOFL_CALO/OFLP200 @@ -112,7 +113,7 @@ IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/LArTTCellMapA IOVDbSvc INFO Added taginfo remove for /LAR/ElecCalibMC/fSampl IOVDbSvc INFO Added taginfo remove for /LAR/ElecCalibMC/uA2MeV ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL -ClassIDSvc INFO getRegistryEntries: read 2879 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 2366 CLIDRegistry entries for module ALL ClassIDSvc INFO getRegistryEntries: read 18 CLIDRegistry entries for module ALL DetDescrCnvSvc INFO initializing DetDescrCnvSvc INFO Found DetectorStore service @@ -201,11 +202,11 @@ EndcapDMConstru... INFO Start building EC electronics geometry multi-layered version of absorbers activated, mlabs == 1 ================================================ EndcapDMConstru... INFO Start building EC electronics geometry -GeoModelSvc INFO GeoModelSvc.LArDetectorToolNV SZ= 21904Kb Time = 0.75S +GeoModelSvc INFO GeoModelSvc.LArDetectorToolNV SZ= 21916Kb Time = 0.4S ClassIDSvc INFO getRegistryEntries: read 213 CLIDRegistry entries for module ALL ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 -ClassIDSvc INFO getRegistryEntries: read 6826 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 5404 CLIDRegistry entries for module ALL ClassIDSvc INFO getRegistryEntries: read 605 CLIDRegistry entries for module ALL CondInputLoader INFO Initializing CondInputLoader... CondInputLoader INFO Adding base classes: @@ -266,7 +267,7 @@ xAODMaker::Even... INFO Will take information from the EventInfo object ClassIDSvc INFO getRegistryEntries: read 319 CLIDRegistry entries for module ALL PyComponentMgr INFO Initializing PyComponentMgr... testalg1 INFO Initializing testalg1... -mgrClassIDSvc INFO getRegistryEntries: read 323 CLIDRegistry entries for module ALL +mgrClassIDSvc INFO getRegistryEntries: read 327 CLIDRegistry entries for module ALL CaloMgrDetDescrCnv INFO in createObj: creating a Calo Detector Manager object in the detector store ClassIDSvc INFO getRegistryEntries: read 186 CLIDRegistry entries for module ALL CaloIDHelper_ID... INFO in createObj: creating a CaloCell_ID helper object in the detector store @@ -276,15 +277,15 @@ CaloIDHelper_ID... INFO in createObj: creating a LArHEC_ID helper object in th AtlasDetectorID INFO initialize_from_dictionary - OK CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_ID helper object in the detector store AtlasDetectorID INFO initialize_from_dictionary - OK -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal2DNeighbors-April2011.txt -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsNext-April2011.txt -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsPrev-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal2DNeighbors-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsNext-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsPrev-April2011.txt CaloIDHelper_ID... INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store AtlasDetectorID INFO initialize_from_dictionary - OK LArMiniFCAL_ID INFO initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID. CaloIDHelper_ID... INFO in createObj: creating a TileID helper object in the detector store AtlasDetectorID INFO initialize_from_dictionary - OK -TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileNeighbour_reduced.txt +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileNeighbour_reduced.txt AtlasDetectorID INFO initialize_from_dictionary - OK CaloIdMgrDetDes... INFO in createObj: creating a CaloDescrManager object in the detector store CaloIDHelper_ID... INFO in createObj: creating a CaloDM_ID helper object in the detector store @@ -303,38 +304,38 @@ CaloIDHelper_ID... INFO in createObj: creating a LArHEC_SuperCell_ID helper ob AtlasDetectorID INFO initialize_from_dictionary - OK CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store AtlasDetectorID INFO initialize_from_dictionary - OK -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt -LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt CaloIDHelper_ID... INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store AtlasDetectorID INFO initialize_from_dictionary - OK -TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-12-04T2300/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileSuperCellNeighbour.txt +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileSuperCellNeighbour.txt AtlasDetectorID INFO initialize_from_dictionary - OK CaloIdMgrDetDes... INFO Finished CaloIdMgrDetDes... INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv DetectorStore WARNING retrieve(default): No valid proxy for default object of type TileDetDescrManager(CLID 2941) CaloMgrDetDescrCnvWARNING Could not get the TileDetectorManager. No Calo Elements will be built for Tile - <ROOT.CaloDetDescrManager object at 0x1679d480> -ClassIDSvc INFO getRegistryEntries: read 4203 CLIDRegistry entries for module ALL + <ROOT.CaloDetDescrManager object at 0x151d9f80> +ClassIDSvc INFO getRegistryEntries: read 4207 CLIDRegistry entries for module ALL ToolSvc.tool1em INFO No threshold on hit energy ToolSvc.tool1em INFO THRESHOLD CHOICE : No Threshold ! ToolSvc.CaloNoi... INFO CaloNoiseTool called ToolSvc.CaloNoiseToolDefault initialize() begin LArOnlineIDDetD... INFO in createObj: creating a LArOnlineID helper object in the detector store LArOnlineID INFO initialize_from_dictionary AtlasDetectorID INFO initialize_from_dictionary - OK -ClassIDSvc INFO getRegistryEntries: read 2605 CLIDRegistry entries for module ALL -IOVSvcTool INFO Still in initialize phase, not tiggering callback for LArCablingService[0x1cd28a00]+7f3320d16630 bound to AthenaAttributeList[/LAR/Identifier/OnOffIdMap] +ClassIDSvc INFO getRegistryEntries: read 2474 CLIDRegistry entries for module ALL +IOVSvcTool INFO Still in initialize phase, not tiggering callback for LArCablingLegacyService[0x1b5ec800]+7fa5eb666d90 bound to AthenaAttributeList[/LAR/Identifier/OnOffIdMap] ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/OnOffIdMap ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/CalibIdMap ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/FebRodMap -ToolSvc.LArCabl... INFO Sucessfully initialized LArCablingService with 3 callbacks. +ToolSvc.LArCabl... INFO Sucessfully initialized LArCablingLegacyService with 3 callbacks. ToolSvc.LArADC2... INFO Registered callback for key: LArRamp ToolSvc.LArADC2... INFO Registered callback for key: LArDAC2uA ToolSvc.LArADC2... INFO Registered callback for key: LAruA2MeV ToolSvc.LArADC2... INFO Registered callback for key: LArMphysOverMcal ToolSvc.LArADC2... INFO Registered callback for key: LArHVScaleCorr -IOVSvcTool INFO Still in initialize phase, not tiggering callback for LArMCSymTool[0x1cd29e00]+189 bound to /LAR/Identifier/CalibIdMap +IOVSvcTool INFO Still in initialize phase, not tiggering callback for LArMCSymTool[0x2852e000]+189 bound to /LAR/Identifier/FebRodMap ClassIDSvc INFO getRegistryEntries: read 53 CLIDRegistry entries for module ALL ToolSvc.LArAuto... INFO Registered callback for key: LArShape ToolSvc.LArAuto... INFO Registered callback for key: LArAutoCorr @@ -342,19 +343,19 @@ ToolSvc.LArOFCT... INFO Registered callback for key: LArShape ToolSvc.LArOFCT... INFO Registered callback for key: LArNoise ToolSvc.LArOFCT... INFO Registered callback for LArOFCTool/LArAutoCorrTotalTool ToolSvc.CaloNoi... INFO Will cache electronic noise -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArNoiseMC[LArNoise] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArNoiseMC[LArNoise] ToolSvc.CaloNoi... INFO Registered callback for key: LArNoise -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArAutoCorrMC[LArAutoCorr] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArAutoCorrMC[LArAutoCorr] ToolSvc.CaloNoi... INFO Registered callback for key: LArAutoCorr -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArShape32MC[LArShape] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArShape32MC[LArShape] ToolSvc.CaloNoi... INFO Registered callback for key: LArShape -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArfSamplMC[LArfSampl] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArfSamplMC[LArfSampl] ToolSvc.CaloNoi... INFO Registered callback for key: LArfSampl -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArMinBiasMC[LArMinBias] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArMinBiasMC[LArMinBias] ToolSvc.CaloNoi... INFO Registered callback for key: LArMinBias -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArDAC2uA +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LAruA2MeV ToolSvc.CaloNoi... INFO Registered callbacks for LArADC2MeVTool -> CaloNoiseTool -IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x2907a398]+191 bound to LArAutoCorr +IOVSvcTool INFO Still in initialize phase, not tiggering callback for CaloNoiseTool[0x28766398]+191 bound to LArShape ToolSvc.CaloNoi... INFO Registered callbacks for LArOFCTool -> CaloNoiseTool ToolSvc.CaloNoi... INFO CaloNoiseTool initialize() end ToolSvc.tool1em INFO no noise selected @@ -623,7 +624,7 @@ LArSymCondition... INFO recorded new LArMinBiasAverageSym with range {[0,l:0] LArSymCondition... INFO recorded new LArShapeSym with range {[0,l:0] - [INVALID]} into Conditions Store LArSymCondition... INFO recorded new LArMphysOverMcalSym with range {[0,l:0] - [INVALID]} into Conditions Store xAODMaker::Even...WARNING xAOD::EventInfo with key "EventInfo" is already in StoreGate; EventInfoCnvAlg should not be scheduled. -ClassIDSvc INFO getRegistryEntries: read 1223 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 1176 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 1 events processed so far <<<=== ClassIDSvc INFO getRegistryEntries: read 708 CLIDRegistry entries for module ALL @@ -647,22 +648,23 @@ ToolSvc.tool5hec WARNING windows not reimplemented yet AthRNGSvc INFO Creating engine ToolSvc.tool5fcal/ToolSvc.tool5fcal ToolSvc.tool5fcal WARNING windows not reimplemented yet AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 5 events processed so far <<<=== +MetaDataSvc INFO MetaDataSvc::stop() /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... -Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] F4885664-6C4D-DF11-A94A-00304867340C /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] D27D07D4-C135-E011-84A9-003048F0E01E /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] F4885664-6C4D-DF11-A94A-00304867340C +/cvmfs/atlas-co... INFO Database being retired... /cvmfs/atlas-co... INFO Database being retired... Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 445FAD9A-5DB3-E14A-81DB-BA6244602734 -/cvmfs/atlas-co... INFO Database being retired... Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully IncidentProcAlg1 INFO Finalize @@ -671,42 +673,42 @@ testalg1 INFO Finalizing testalg1... IncidentProcAlg2 INFO Finalize PyComponentMgr INFO Finalizing PyComponentMgr... IdDictDetDescrCnv INFO in finalize -IOVDbFolder INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 (( 0.84 ))s -IOVDbFolder INFO Folder /LAR/BadChannels/BadChannels (AttrListColl) db-read 1/1 objs/chan/bytes 0/8/0 (( 0.99 ))s -IOVDbFolder INFO Folder /LAR/BadChannels/MissingFEBs (AttrList) db-read 1/1 objs/chan/bytes 1/1/16 (( 0.55 ))s -IOVDbFolder INFO Folder /LAR/Identifier/CalibIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/1520148 (( 0.52 ))s -IOVDbFolder INFO Folder /LAR/Identifier/FebRodMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/6100 (( 0.01 ))s -IOVDbFolder INFO Folder /LAR/Identifier/OnOffIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/780292 (( 0.07 ))s +IOVDbFolder INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/340 (( 1.78 ))s +IOVDbFolder INFO Folder /LAR/BadChannels/BadChannels (AttrListColl) db-read 1/1 objs/chan/bytes 0/8/0 (( 1.46 ))s +IOVDbFolder INFO Folder /LAR/BadChannels/MissingFEBs (AttrList) db-read 1/1 objs/chan/bytes 1/1/32 (( 1.79 ))s +IOVDbFolder INFO Folder /LAR/Identifier/CalibIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/3040296 (( 0.98 ))s +IOVDbFolder INFO Folder /LAR/Identifier/FebRodMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/12200 (( 0.01 ))s +IOVDbFolder INFO Folder /LAR/Identifier/OnOffIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/1560584 (( 0.10 ))s IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/AutoCorr (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/486 (( 0.59 ))s -IOVDbFolder INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 (( 0.43 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/DAC2uA (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/170 (( 0.48 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/HVScaleCorr (PoolRefColl) db-read 1/2 objs/chan/bytes 12/12/1980 (( 0.49 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/MinBias (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/174 (( 0.49 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/MinBiasAverage (PoolRefColl) db-read 1/1 objs/chan/bytes 1/1/181 (( 0.50 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/MphysOverMcal (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/516 (( 0.41 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/Noise (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/516 (( 0.49 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/Pedestal (PoolRef) db-read 1/1 objs/chan/bytes 1/1/167 (( 2.22 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/Ramp (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/489 (( 0.49 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/Shape (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/477 (( 0.49 ))s -IOVDbFolder INFO Folder /LAR/Identifier/LArTTCellMapAtlas (PoolRef) db-read 1/0 objs/chan/bytes 1/1/173 (( 0.44 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/AutoCorr (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/648 (( 0.57 ))s +IOVDbFolder INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/390 (( 0.48 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/DAC2uA (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/340 (( 0.50 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/HVScaleCorr (PoolRefColl) db-read 1/2 objs/chan/bytes 12/12/2145 (( 0.52 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/MinBias (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/348 (( 0.54 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/MinBiasAverage (PoolRefColl) db-read 1/1 objs/chan/bytes 1/1/362 (( 0.52 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/MphysOverMcal (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/688 (( 0.42 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/Noise (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/688 (( 0.54 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/Pedestal (PoolRef) db-read 1/1 objs/chan/bytes 1/1/334 (( 0.56 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/Ramp (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/652 (( 0.63 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/Shape (PoolRefColl) db-read 1/2 objs/chan/bytes 3/3/636 (( 0.53 ))s +IOVDbFolder INFO Folder /LAR/Identifier/LArTTCellMapAtlas (PoolRef) db-read 1/0 objs/chan/bytes 1/1/346 (( 0.51 ))s IOVDbFolder WARNING Folder /LAR/Identifier/LArTTCellMapAtlas is requested but no data retrieved -IOVDbFolder INFO Folder /LAR/ElecCalibMC/fSampl (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/194 (( 0.50 ))s -IOVDbFolder INFO Folder /LAR/ElecCalibMC/uA2MeV (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/165 (( 0.52 ))s -IOVDbSvc INFO bytes in (( 11.52 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/fSampl (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/388 (( 0.77 ))s +IOVDbFolder INFO Folder /LAR/ElecCalibMC/uA2MeV (PoolRefColl) db-read 1/2 objs/chan/bytes 1/1/330 (( 0.57 ))s +IOVDbSvc INFO bytes in (( 13.76 ))s IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s -IOVDbSvc INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 20 ReadTime: (( 11.52 ))s +IOVDbSvc INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 20 ReadTime: (( 13.76 ))s IOVDbSvc INFO Connection COOLOFL_CALO/OFLP200 : nConnect: 1 nFolders: 3 ReadTime: (( 0.00 ))s AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -cObjR_ALL INFO Time User : Tot= 0.92 [s] Ave/Min/Max=0.0142(+-0.0755)/ 0/ 0.57 [s] #= 65 -cObj_ALL INFO Time User : Tot= 1.28 [s] Ave/Min/Max=0.0441(+-0.126)/ 0/ 0.62 [s] #= 29 -ChronoStatSvc INFO Time User : Tot= 52 [s] #= 1 +cObjR_ALL INFO Time User : Tot= 470 [ms] Ave/Min/Max= 7.23(+- 37.7)/ 0/ 280 [ms] #= 65 +cObj_ALL INFO Time User : Tot= 0.67 [s] Ave/Min/Max=0.0231(+-0.0633)/ 0/ 0.31 [s] #= 29 +ChronoStatSvc INFO Time User : Tot= 36.8 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/LArCalorimeter/LArCellRec/src/LArCellHVCorr.cxx b/LArCalorimeter/LArCellRec/src/LArCellHVCorr.cxx index 56eeac7b53183eddacb3b39809045826d14a92d8..a906c3ed57e392537e16d0c9f23e8f7006b659dd 100644 --- a/LArCalorimeter/LArCellRec/src/LArCellHVCorr.cxx +++ b/LArCalorimeter/LArCellRec/src/LArCellHVCorr.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCellHVCorr.h" @@ -51,6 +51,8 @@ StatusCode LArCellHVCorr::initialize() { ATH_CHECK( m_hvCorrTool.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); + // if (m_undoHVonline) { // sc = detStore()->regHandle(m_dd_HVScaleCorr,m_keyHVScaleCorr); // if (sc.isFailure()) { @@ -87,10 +89,17 @@ float LArCellHVCorr::getCorrection(const Identifier id) float LArCellHVCorr::getCorrection(const Identifier id) const { - float hvcorr = m_hvCorrTool->Scale(id); + // this is highly ineffective, but this tool will be soon decommissioned, so could live with this for some time... + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_WARNING("Do not have mapping object " << m_cablingKey.key() << " returning 1."); + return 1.; + } + float hvcorr = m_hvCorrTool->Scale(cabling->createSignalChannelID(id)); if (m_undoHVonline) { - float hvonline = m_dd_HVScaleCorr->HVScaleCorr(id); + float hvonline = m_dd_HVScaleCorr->HVScaleCorr(cabling->createSignalChannelID(id)); if (hvonline>0. && hvonline<100.) hvcorr = hvcorr/hvonline; } @@ -110,7 +119,8 @@ float LArCellHVCorr::getCorrection(const Identifier id) const void LArCellHVCorr::MakeCorrection (CaloCell* theCell, const EventContext& /*ctx*/) const { - const float hvcorr=getCorrection(theCell->ID()); + const Identifier id=theCell->ID(); + const float hvcorr=getCorrection(id); theCell->setEnergy(theCell->energy()*hvcorr); } diff --git a/LArCalorimeter/LArCellRec/src/LArCellHVCorr.h b/LArCalorimeter/LArCellRec/src/LArCellHVCorr.h index 427f9453c35ff3bad0188c1447c33670dd5b7dc2..0f6f3791b74e2e7ea22c349f2a2f695700b08cf1 100644 --- a/LArCalorimeter/LArCellRec/src/LArCellHVCorr.h +++ b/LArCalorimeter/LArCellRec/src/LArCellHVCorr.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -14,6 +14,8 @@ #include "LArElecCalib/ILArHVScaleCorr.h" #include "LArElecCalib/ILArCellHVCorrTool.h" #include "StoreGate/DataHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" class CaloCell; @@ -50,7 +52,9 @@ public: virtual bool updateOnLastCallback() override {return m_updateOnLastCallback;} private: - float getCorrection(const Identifier id) const; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + + float getCorrection(const Identifier id) const; ToolHandle<ILArHVCorrTool> m_hvCorrTool; std::string m_keyHVScaleCorr; diff --git a/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.cxx b/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.cxx index 9a21e3e0a1799f4616844567b168ffbb7af1751b..662627853dc8acb63d54e547ecd968ad7896b489 100644 --- a/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.cxx +++ b/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArCellHVCorrAlg.h" @@ -22,6 +22,7 @@ LArCellHVCorrAlg::~LArCellHVCorrAlg() {} StatusCode LArCellHVCorrAlg::initialize() { ATH_CHECK(m_offlineHVScaleCorrKey.initialize()); + ATH_CHECK( m_cablingKey.initialize() ); return StatusCode::SUCCESS; } @@ -66,7 +67,13 @@ void LArCellHVCorrAlg::MakeCorrection (CaloCell* theCell, ATH_MSG_ERROR("Do not have ofline HV corr. conditions object !!!!"); return; } - float hvcorr = oflHVCorr->HVScaleCorr(theCell->ID()); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return; + } + float hvcorr = oflHVCorr->HVScaleCorr(cabling->createSignalChannelID((theCell->ID()))); if (hvcorr<0.9 ) { if (hvcorr<0.4) { @@ -85,9 +92,9 @@ void LArCellHVCorrAlg::MakeCorrection (CaloCell* theCell, } void LArCellHVCorrAlg::MakeCorrection (CaloCell* theCell, - const EventContext& /*ctx*/, const ILArHVScaleCorr* oflHVCorr ) const + const EventContext& /*ctx*/, const ILArHVScaleCorr* oflHVCorr, const LArOnOffIdMapping* cabling ) const { - float hvcorr = oflHVCorr->HVScaleCorr(theCell->ID()); + float hvcorr = oflHVCorr->HVScaleCorr(cabling->createSignalChannelID(theCell->ID())); if (hvcorr<0.9 ) { if (hvcorr<0.4) { diff --git a/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.h b/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.h index bc8571587f43c042c2f655381f25994c462cae33..466e274dd7ba7478c332416096386f2823defe04 100644 --- a/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.h +++ b/LArCalorimeter/LArCellRec/src/LArCellHVCorrAlg.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCELLREC_LARCELLHVCORRALG_H @@ -10,6 +10,7 @@ #include "GaudiKernel/ToolHandle.h" #include "LArElecCalib/ILArHVScaleCorr.h" #include "LArElecCalib/ILArCellHVCorrTool.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "StoreGate/ReadCondHandleKey.h" class CaloCell; @@ -31,13 +32,14 @@ public: //Implements the CaloCellCorrection interface virtual void MakeCorrection (CaloCell* /*theCell*/, const EventContext& /*ctx*/) const override final; void MakeCorrection (CaloCell* theCell, - const EventContext& ctx, const ILArHVScaleCorr* ofl=nullptr) const; + const EventContext& ctx, const ILArHVScaleCorr* ofl=nullptr, const LArOnOffIdMapping* cabling=nullptr) const; private: SG::ReadCondHandleKey<ILArHVScaleCorr> m_offlineHVScaleCorrKey{this, "keyOfflineHVCorr", "LArHVScaleCorrRecomputed","Key for LArHVScaleCorr"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; }; diff --git a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/Hid2RESrcID.h b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/Hid2RESrcID.h index 18df3634f08e8d3cadd4793274933ddd6df360fb..de7eb0bf108ec43dd54a76bbd7304ab8a47b93a7 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/Hid2RESrcID.h +++ b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/Hid2RESrcID.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARBYTESTREAM_HID2RESRCID_H @@ -7,7 +7,7 @@ // #include "ByteStreamData/RESrcID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include <stdint.h> @@ -69,7 +69,7 @@ public: private: bool m_initialized; - LArCablingService* m_cablingSvc; + LArCablingLegacyService* m_cablingSvc; const LArOnlineID* m_onlineHelper; typedef std::map<HWIdentifier, uint32_t> COLL_MAP ; COLL_MAP m_coll2ROD ; diff --git a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodDecoder.h b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodDecoder.h index fc25d1add0ba9249d1d078a84071603acf2ab408..d9ea5b98b9ccb2d54da4dbc84c941fc088c72cc7 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodDecoder.h +++ b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodDecoder.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -29,7 +29,7 @@ #include "LArROD/LArCellBuilderDriver.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArByteStream/LArRodBlockStructure.h" #include "LArRecUtils/MakeLArCellFromRaw.h" #include "LArRecConditions/ILArBadChannelMasker.h" @@ -201,7 +201,7 @@ private: // inline void writeFebInfo(LArRawChannelContainer& m_coll, LArFebEnergy& febene); - ToolHandle<LArCablingService> m_larCablingSvc; + ToolHandle<LArCablingLegacyService> m_larCablingSvc; float m_LArCellEthreshold ; bool m_larCell; // set to True if it is used for ConvertingLArCell bool m_readtdc; // set to True if the tdc phase is read from the upper byte of the nsamples word. @@ -433,7 +433,7 @@ void LArRodDecoder::fillCollectionHLT(const uint32_t* p, uint32_t n CaloGain::CaloGain gain_in = (CaloGain::CaloGain) gain; HWIdentifier cId = m_onlineHelper->channel_Id(fId,fcNb); LArDigit dg(cId, gain_in, samples); - if ( m_larCellFromDigit ){ + if ( m_larCellFromDigit){ m_larCellFromDigit->buildLArCell(&dg,energy,time,gain_in); } collElem = coll[fcNb+nfeb]; diff --git a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodEncoder.h b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodEncoder.h index d780a3e8a0b01f8ac0b0700097ff37d18f023e5e..0b3399e9eeca1e69f55a74c0a3563eb3b009cfa1 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodEncoder.h +++ b/LArCalorimeter/LArCnv/LArByteStream/LArByteStream/LArRodEncoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARBYTESTREAM_LARROD_ENCODER_H @@ -41,7 +41,7 @@ #include "LArRawEvent/LArCalibDigit.h" #include "LArRawEvent/LArCalibDigitContainer.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArByteStream/LArRodBlockStructure.h" //#include "LArByteStream/LArRodBlockStructure_0.h" //#include "LArByteStream/LArRodBlockStructure_1.h" @@ -112,7 +112,7 @@ private: //Static members; static LArRodBlockStructure* m_BlStruct; - static LArCablingService* m_cablingSvc; + static LArCablingLegacyService* m_cablingSvc; static const CaloDetDescrManager* m_CaloDetDescrManager; static const LArOnlineID* m_onlineHelper; /* diff --git a/LArCalorimeter/LArCnv/LArByteStream/src/Hid2RESrcID.cxx b/LArCalorimeter/LArCnv/LArByteStream/src/Hid2RESrcID.cxx index be679b533ba1034cfd4df3280a2651a519962559..c683c145751265e3acdf251040053b36efd2dc47 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/src/Hid2RESrcID.cxx +++ b/LArCalorimeter/LArCnv/LArByteStream/src/Hid2RESrcID.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArByteStream/Hid2RESrcID.h" @@ -47,9 +47,9 @@ StatusCode Hid2RESrcID::initialize() sc = Gaudi::svcLocator()->service("ToolSvc",toolSvc ); if(sc.isSuccess()) { - sc = toolSvc->retrieveTool("LArCablingService",m_cablingSvc); + sc = toolSvc->retrieveTool("LArCablingLegacyService",m_cablingSvc); if (sc.isFailure()) { - log << MSG::FATAL << "Could not get LArCablingService !" << endmsg; + log << MSG::FATAL << "Could not get LArCablingLegacyService !" << endmsg; exit(1); } } else { // check if it fails diff --git a/LArCalorimeter/LArCnv/LArByteStream/src/LArRodDecoder.cxx b/LArCalorimeter/LArCnv/LArByteStream/src/LArRodDecoder.cxx index f632159708c37a99b971c198f952b3804ec15d9f..76ccc0aa641ce6e4bf9447e14cfcd21f5d84e506 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/src/LArRodDecoder.cxx +++ b/LArCalorimeter/LArCnv/LArByteStream/src/LArRodDecoder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Implementation of LArRodDecoder class @@ -41,7 +41,7 @@ static const InterfaceID IID_ILArRodDecoder LArRodDecoder::LArRodDecoder ( const std::string& type, const std::string& name,const IInterface* parent ) : AthAlgTool(type,name,parent), m_larblockstruct(0), - m_larCablingSvc("LArCablingService"), + m_larCablingSvc("LArCablingLegacyService"), m_LArCellEthreshold(-100.), m_larCell(false), m_readtdc(false), @@ -118,7 +118,7 @@ LArRodDecoder::initialize() sc=m_larCablingSvc.retrieve(); if (sc.isFailure()) { - msg(MSG::ERROR) << "Unable to retrieve LArCablingService" << endmsg; + msg(MSG::ERROR) << "Unable to retrieve LArCablingLegacyService" << endmsg; return StatusCode::FAILURE; } diff --git a/LArCalorimeter/LArCnv/LArByteStream/src/LArRodEncoder.cxx b/LArCalorimeter/LArCnv/LArByteStream/src/LArRodEncoder.cxx index 3185e8dadfa0956daeec0faf79fa8a0d27438b80..f2e3716f65ebd42e35971484e2ae208119692b5c 100644 --- a/LArCalorimeter/LArCnv/LArByteStream/src/LArRodEncoder.cxx +++ b/LArCalorimeter/LArCnv/LArByteStream/src/LArRodEncoder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Implementation of LArRodEncoder class @@ -16,7 +16,7 @@ #include "CaloInterface/ICaloNoiseTool.h" // static variables -LArCablingService* LArRodEncoder::m_cablingSvc=NULL; +LArCablingLegacyService* LArRodEncoder::m_cablingSvc=NULL; const LArOnlineID* LArRodEncoder::m_onlineHelper=NULL; LArRodBlockStructure* LArRodEncoder::m_BlStruct=NULL; const CaloDetDescrManager* LArRodEncoder::m_CaloDetDescrManager=NULL; @@ -43,7 +43,7 @@ LArRodEncoder::LArRodEncoder() if(sc.isSuccess()) { sc = - toolSvc->retrieveTool("LArCablingService",m_cablingSvc); + toolSvc->retrieveTool("LArCablingLegacyService",m_cablingSvc); } else { // check if it fails // what do you want to do if it fails... log << MSG::FATAL << "Could not get LArCablingService !" << endmsg; diff --git a/LArCalorimeter/LArCnv/LArCondAthenaPool/CMakeLists.txt b/LArCalorimeter/LArCnv/LArCondAthenaPool/CMakeLists.txt index 42d0bd3f806f0658d761d48e62797dcdba9d8a9f..4c08d20d1b9f572aaf70f7de60c0591da0fcd6a2 100644 --- a/LArCalorimeter/LArCnv/LArCondAthenaPool/CMakeLists.txt +++ b/LArCalorimeter/LArCnv/LArCondAthenaPool/CMakeLists.txt @@ -16,7 +16,7 @@ atlas_depends_on_subdirs( PUBLIC # Component(s) in the package: atlas_add_poolcnv_library( LArCondAthenaPoolPoolCnv src/*.cxx - FILES LArRawConditions/LArAutoCorrComplete.h LArRawConditions/LArAutoCorrMC.h LArRawConditions/LArCaliPulseParamsComplete.h LArRawConditions/LArDAC2uAComplete.h LArRawConditions/LArDAC2uAMC.h LArRawConditions/LArDetCellParamsComplete.h LArRawConditions/LArfSamplComplete.h LArRawConditions/LArfSamplMC.h LArRawConditions/LArH6OscillationComplete.h LArRawConditions/LArMinBiasComplete.h LArRawConditions/LArMinBiasMC.h LArRawConditions/LArMinBiasAverageComplete.h LArRawConditions/LArMinBiasAverageMC.h LArRawConditions/LArMphysOverMcalComplete.h LArRawConditions/LArMphysOverMcalMC.h LArRawConditions/LArNoiseComplete.h LArRawConditions/LArNoiseMC.h LArRawConditions/LArOFCComplete.h LArRawConditions/LArOFCMC.h LArRawConditions/LArPedestalComplete.h LArRawConditions/LArPedestalMC.h LArRawConditions/LArPhysCaliTdiffComplete.h LArRawConditions/LArRampComplete.h LArRawConditions/LArRampMC.h LArRawConditions/LArShapeComplete.h LArRawConditions/LArShapeMC.h LArRawConditions/LArShape32MC.h LArRawConditions/LArTdriftComplete.h LArRawConditions/LAruA2MeVComplete.h LArRawConditions/LAruA2MeVMC.h LArRawConditions/LArWFParamsContainer.h LArRawConditions/LArOFCBinComplete.h LArRawConditions/LArRinjComplete.h LArRawConditions/LArCableLengthComplete.h LArRawConditions/LArCableAttenuationComplete.h LArRawConditions/LArTshaperComplete.h LArRawConditions/LArEMEC_CphiComplete.h LArRawConditions/LArEMEC_HValphaComplete.h LArRawConditions/LArEMEC_HVbetaComplete.h LArRawConditions/LArCaliWaveContainer.h LArRawConditions/LArPhysWaveContainer.h LArRawConditions/LArHVScaleCorrComplete.h LArRawConditions/LArDSPThresholdsComplete.h LArRawConditions/LArFEBTimeOffset.h LArRawConditions/LArCalibParams.h LArRawConditions/LArGlobalTimeOffset.h LArRawConditions/LArCaliPulseParamsVsCalib.h + FILES LArRawConditions/LArAutoCorrComplete.h LArRawConditions/LArAutoCorrMC.h LArRawConditions/LArCaliPulseParamsComplete.h LArRawConditions/LArDAC2uAComplete.h LArRawConditions/LArDAC2uAMC.h LArRawConditions/LArDetCellParamsComplete.h LArRawConditions/LArfSamplComplete.h LArRawConditions/LArfSamplMC.h LArRawConditions/LArH6OscillationComplete.h LArRawConditions/LArMinBiasComplete.h LArRawConditions/LArMinBiasMC.h LArRawConditions/LArMinBiasAverageComplete.h LArRawConditions/LArMinBiasAverageMC.h LArRawConditions/LArMphysOverMcalComplete.h LArRawConditions/LArMphysOverMcalMC.h LArRawConditions/LArNoiseComplete.h LArRawConditions/LArNoiseMC.h LArRawConditions/LArOFCComplete.h LArRawConditions/LArOFCMC.h LArRawConditions/LArPedestalComplete.h LArRawConditions/LArPedestalMC.h LArRawConditions/LArPhysCaliTdiffComplete.h LArRawConditions/LArRampComplete.h LArRawConditions/LArRampMC.h LArRawConditions/LArShapeComplete.h LArRawConditions/LArShapeMC.h LArRawConditions/LArShape32MC.h LArRawConditions/LArTdriftComplete.h LArRawConditions/LAruA2MeVComplete.h LArRawConditions/LAruA2MeVMC.h LArRawConditions/LArWFParamsContainer.h LArRawConditions/LArOFCBinComplete.h LArRawConditions/LArRinjComplete.h LArRawConditions/LArCableLengthComplete.h LArRawConditions/LArCableAttenuationComplete.h LArRawConditions/LArTshaperComplete.h LArRawConditions/LArEMEC_CphiComplete.h LArRawConditions/LArEMEC_HValphaComplete.h LArRawConditions/LArEMEC_HVbetaComplete.h LArRawConditions/LArCaliWaveContainer.h LArRawConditions/LArPhysWaveContainer.h LArRawConditions/LArHVScaleCorrComplete.h LArRawConditions/LArDSPThresholdsComplete.h LArRawConditions/LArFEBTimeOffset.h LArRawConditions/LArCalibParams.h LArRawConditions/LArGlobalTimeOffset.h MULT_CHAN_TYPES LArAutoCorrComplete LArAutoCorrMC LArCaliPulseParamsComplete LArDAC2uAComplete LArDAC2uAMC LArDetCellParamsComplete LArfSamplComplete LArfSamplMC LArH6OscillationComplete LArMinBiasComplete LArMinBiasMC LArMinBiasAverageComplete LArMinBiasAverageMC LArMphysOverMcalComplete LArMphysOverMcalMC LArNoiseComplete LArNoiseMC LArOFCComplete LArOFCMC LArPedestalComplete LArPhysCaliTdiffComplete LArRampComplete LArRampMC LArShapeComplete LArShapeMC LArShape32MC LArTdriftComplete LAruA2MeVComplete LAruA2MeVMC LArOFCBinComplete LArRinjComplete LArCableLengthComplete LArCableAttenuationComplete LArTshaperComplete LArEMEC_CphiComplete LArEMEC_HValphaComplete LArEMEC_HVbetaComplete LArCaliWaveContainer LArPhysWaveContainer LArHVScaleCorrComplete LArDSPThresholdsComplete LINK_LIBRARIES AthenaPoolUtilities AthenaPoolCnvSvcLib LArCondTPCnv LArRawConditions ) diff --git a/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.cxx b/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.cxx index 08d6ddf40607627c34fad9732f9fc4eadc28a680..542b5b4c5fd15199dbe0d02490ac0123dfff8129 100644 --- a/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.cxx +++ b/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArHV2Ntuple.h" @@ -30,7 +30,6 @@ #include "LArHV/EMECPresamplerHVModuleConstLink.h" #include "CaloIdentifier/CaloCell_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetectorElements.h" #include "CaloGeoHelpers/CaloPhiRange.h" @@ -51,8 +50,7 @@ m_hv(0), m_current(0), m_barrelec(0), m_posneg(0), m_FT(0),m_slot(0),m_channel(0), - m_caloId(0), m_onlId(0), - m_cabling("LArCablingService") + m_caloId(0), m_onlId(0) { declareProperty("AddCellID",m_addcells); } @@ -69,6 +67,8 @@ ATH_MSG_INFO ("LArHV2Ntuple initialize()" ); ATH_CHECK( service("THistSvc",m_thistSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); + m_tree = new TTree("mytree","Calo Noise ntuple"); m_tree->Branch("bec",&m_bec,"bec/I"); m_tree->Branch("isPresampler",&m_isPresampler,"isPresampler/I"); @@ -87,13 +87,32 @@ m_tree->Branch("channel",&m_channel,"channel/I"); ATH_CHECK( detStore()->retrieve(m_caloId, "CaloCell_ID") ); ATH_CHECK( detStore()->retrieve(m_onlId, "LArOnlineID") ); - ATH_CHECK( m_cabling.retrieve() ); ATH_CHECK( detStore()->retrieve(m_calodetdescrmgr) ); + } + + + ATH_CHECK( m_thistSvc->regTree("/file1/hv/mytree",m_tree) ); + return StatusCode::SUCCESS; + + } + //__________________________________________________________________________ + StatusCode LArHV2Ntuple::execute() + { + //............................................. + + ATH_MSG_DEBUG ( "LArHV2Ntuple execute()" ); + if(m_hvonlId_map.size()==0) { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } std::vector<Identifier>::const_iterator cell_b=m_caloId->cell_begin(); std::vector<Identifier>::const_iterator cell_e=m_caloId->cell_end(); for(;cell_b!=cell_e; ++cell_b) { if(m_caloId->is_tile(*cell_b)) continue; - HWIdentifier onlid = m_cabling->createSignalChannelID(*cell_b); + HWIdentifier onlid = cabling->createSignalChannelID(*cell_b); std::vector<int> hvlines = GetHVLines(*cell_b); for(unsigned i=0; i<hvlines.size(); ++i ) { if(m_hvonlId_map.find(hvlines[i]) == m_hvonlId_map.end()) { // new key @@ -107,18 +126,6 @@ }// end map filling } - - ATH_CHECK( m_thistSvc->regTree("/file1/hv/mytree",m_tree) ); - return StatusCode::SUCCESS; - - } - //__________________________________________________________________________ - StatusCode LArHV2Ntuple::execute() - { - //............................................. - - ATH_MSG_DEBUG ( "LArHV2Ntuple execute()" ); - const LArHVManager *manager = NULL; if (detStore()->retrieve(manager)==StatusCode::SUCCESS) { const EMBHVManager* hvManager_EMB=manager->getEMBHVManager(); diff --git a/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.h b/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.h index 12d83182b1a743fc7c3fd1ed64a16064765d663f..0397f29f774a52f201ff43a7415caf962d413cbc 100644 --- a/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.h +++ b/LArCalorimeter/LArCondUtils/src/LArHV2Ntuple.h @@ -13,14 +13,15 @@ // Gaudi includes #include "AthenaBaseComps/AthAlgorithm.h" -#include "GaudiKernel/ToolHandle.h" #include "StoreGate/StoreGateSvc.h" #include "GaudiKernel/ITHistSvc.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include "TTree.h" class CaloCell_ID; class LArOnlineID; -class LArCablingService; class Identifier; class HWIdentifier; class CaloDetDescrManager; @@ -42,6 +43,8 @@ class LArHV2Ntuple : public AthAlgorithm { private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + //--------------------------------------------------- // Member variables //--------------------------------------------------- @@ -70,7 +73,6 @@ class LArHV2Ntuple : public AthAlgorithm { // ID helper const CaloCell_ID* m_caloId; const LArOnlineID* m_onlId; - ToolHandle<LArCablingService> m_cabling; const DataHandle<CaloDetDescrManager> m_calodetdescrmgr; std::map<int, std::vector<HWIdentifier> >m_hvonlId_map; diff --git a/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.cxx b/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.cxx index 339f265f31e250bf7bfe5e8509bec46ad116b349..c29feabc0535d994338d03aedb5248d6c7b387e2 100644 --- a/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.cxx +++ b/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArHVPathologyDbAlg.h" @@ -13,7 +13,7 @@ #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetectorElements.h" @@ -47,7 +47,7 @@ LArHVPathologyDbAlg::LArHVPathologyDbAlg(const std::string& name, ISvcLocator* p , m_regSvc("IOVRegistrationSvc",name) , m_pathologyTool("LArHVPathologyDbTool") , m_mode(0) - , m_cablingService("LArCablingService") + , m_cablingService("LArCablingLegacyService") , m_larem_id(0) , m_larhec_id(0) , m_larfcal_id(0) diff --git a/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.h b/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.h index 5c9181f7bce63a5769b50e15c50531f490e8d505..043209796780498ba579176cc1a8e2d40327d39c 100644 --- a/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.h +++ b/LArCalorimeter/LArCondUtils/src/LArHVPathologyDbAlg.h @@ -10,7 +10,7 @@ class IIOVRegistrationSvc; class ILArHVPathologyDbTool; -class LArCablingService ; +class LArCablingLegacyService ; class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; @@ -51,7 +51,7 @@ class LArHVPathologyDbAlg : public AthAlgorithm const DataHandle<CaloIdManager> m_caloIdMgr; const DataHandle<CaloDetDescrManager> m_calodetdescrmgr; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; const LArEM_ID* m_larem_id; const LArHEC_ID* m_larhec_id; const LArFCAL_ID* m_larfcal_id; diff --git a/LArCalorimeter/LArDigitization/LArDigitization/LArHitEMap.h b/LArCalorimeter/LArDigitization/LArDigitization/LArHitEMap.h old mode 100755 new mode 100644 index d0e018ff36d947a26b25f334a4a43286fd145d80..8fe061a63ce3aa8f7fd3b1ecc90098a993eeb73b --- a/LArCalorimeter/LArDigitization/LArDigitization/LArHitEMap.h +++ b/LArCalorimeter/LArDigitization/LArDigitization/LArHitEMap.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARDIGITIZATION_LARHITEMAP_H @@ -20,7 +20,7 @@ #include "AthenaKernel/CLASS_DEF.h" class ISvcLocator; -class LArCablingService; +class LArCablingLegacyService; class LArHitEMap { @@ -46,7 +46,7 @@ private: const LArHEC_ID* m_larhec_id; const LArFCAL_ID* m_larfcal_id; const DataHandle<CaloDetDescrManager> m_calodetdescrmgr; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; bool m_initialized; diff --git a/LArCalorimeter/LArDigitization/LArDigitization/LArHitList.h b/LArCalorimeter/LArDigitization/LArDigitization/LArHitList.h old mode 100755 new mode 100644 index a022ca84dd4e08fb9480e5b3e2f462cdaac0ada3..149c2140ba175dbcc9d2734c11d33002c51ecf8d --- a/LArCalorimeter/LArDigitization/LArDigitization/LArHitList.h +++ b/LArCalorimeter/LArDigitization/LArDigitization/LArHitList.h @@ -1,12 +1,12 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARDIGITIZATION_LARHITLIST_H #define LARDIGITIZATION_LARHITLIST_H #include <vector> #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloDetDescr/CaloDetDescrElement.h" #include "Identifier/Identifier.h" #include "LArIdentifier/LArOnlineID.h" @@ -24,7 +24,7 @@ class LArHitList { public: - LArHitList(Identifier id, const CaloDetDescrElement *calodde, ToolHandle<LArCablingService>& cablingService){ + LArHitList(Identifier id, const CaloDetDescrElement *calodde, ToolHandle<LArCablingLegacyService>& cablingService){ m_identifier = id; m_online = cablingService->createSignalChannelID(id); m_caloDDE = calodde; diff --git a/LArCalorimeter/LArDigitization/src/LArHitEMap.cxx b/LArCalorimeter/LArDigitization/src/LArHitEMap.cxx old mode 100755 new mode 100644 index caad4f4d4ea34627ff24d2c8b5a9da3ddf015d71..7a226fa5c843dc13e1591d6294ffd1e60ef58eab --- a/LArCalorimeter/LArDigitization/src/LArHitEMap.cxx +++ b/LArCalorimeter/LArDigitization/src/LArHitEMap.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include <iostream> @@ -10,7 +10,7 @@ #include "CaloIdentifier/LArID.h" #include "Identifier/Identifier.h" #include "Identifier/IdentifierHash.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "GaudiKernel/MsgStream.h" #include "GaudiKernel/Property.h" @@ -32,7 +32,7 @@ LArHitEMap::LArHitEMap(void): m_larem_id(0), m_larhec_id(0), m_larfcal_id(0), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_initialized(false) { m_ncellem=0; diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrDecoderTool.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrDecoderTool.h old mode 100755 new mode 100644 index e3b44c8305fbf5965a42c81eea89209f147d4022..4573285bf76913ecfad451035d288f9666d627d3 --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrDecoderTool.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrDecoderTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -23,7 +23,7 @@ class ILArAutoCorrDecoderTool : virtual public IAlgTool { virtual const Eigen::MatrixXd AutoCorr( const HWIdentifier& CellID, int gain, unsigned nSamples=5) const=0 ; // offline ID - virtual const Eigen::MatrixXd AutoCorr( const Identifier& CellID, int gain, unsigned nSamples=5) const = 0 ; + //virtual const Eigen::MatrixXd AutoCorr( const Identifier& CellID, int gain, unsigned nSamples=5) const = 0 ; static const InterfaceID& interfaceID() { return IID_ILArAutoCorrDecoderTool; } diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrTotalTool.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrTotalTool.h old mode 100755 new mode 100644 index 36d7bc717466393d1eec5894091c47cbd4a5d15c..bb42b3db7a15e2e714dce0a052f330331d9309a7 --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrTotalTool.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArAutoCorrTotalTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARELECCALIB_ILARAUTOCORRTOTALTOOL_H @@ -27,19 +27,10 @@ class ILArAutoCorrTotalTool: virtual public IAlgTool { int gain, float Nminbias=-1) const = 0; - virtual const std::vector<double> autoCorrTotal(const Identifier& id, - int gain, - float Nminbias=-1) const = 0; - virtual const std::vector<double> samplRMS(const HWIdentifier& id, int gain, float Nminbias=-1) const = 0; - virtual const std::vector<double> samplRMS(const Identifier& id, - int gain, - float Nminbias=-1) const = 0; - - virtual StatusCode LoadCalibration(IOVSVC_CALLBACK_ARGS) = 0; static const InterfaceID& interfaceID() { return IID_ILArAutoCorrTotalTool; } diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_Cphi.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_Cphi.h old mode 100755 new mode 100644 index 4cf43c45c051081fd94845db0cb05ebe8410852e..c0756b9229b1cadf71c82dc87471b986d514a1ce --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_Cphi.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_Cphi.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONS_ILAREMEC_CPHI_H @@ -27,9 +27,6 @@ class ILArEMEC_Cphi { // online ID virtual const float& EMEC_Cphi(const HWIdentifier& id) const = 0 ; - // offline ID - virtual const float& EMEC_Cphi(const Identifier& id) const=0; - enum {ERRORCODE = LArElecCalib::ERRORCODE}; } ; diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HValpha.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HValpha.h old mode 100755 new mode 100644 index e29aa7740631bc0c6d5e0607904e60346d515df1..043c5b426671d6cf269b8d0ff2b12d7f2bc37f4e --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HValpha.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HValpha.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONS_ILAREMEC_HVALPHA_H @@ -26,11 +26,7 @@ class ILArEMEC_HValpha { // online ID virtual const float& EMEC_HValpha(const HWIdentifier& id) const = 0 ; - // offline ID - virtual const float& EMEC_HValpha(const Identifier& id) const =0; - enum {ERRORCODE = LArElecCalib::ERRORCODE}; - } ; diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HVbeta.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HVbeta.h old mode 100755 new mode 100644 index 45dd6c1e6db4dfb023de4ad141557807e6e2a9ea..9ba91f09f4c4f2eb76470d35658401b825973056 --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HVbeta.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArEMEC_HVbeta.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONS_ILAREMEC_HVBETA_H @@ -26,9 +26,6 @@ class ILArEMEC_HVbeta { // online ID virtual const float& EMEC_HVbeta(const HWIdentifier& id) const = 0 ; - // offline ID - virtual const float& EMEC_HVbeta(const Identifier& id) const=0; - enum {ERRORCODE = LArElecCalib::ERRORCODE}; } ; diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArH6Oscillation.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArH6Oscillation.h old mode 100755 new mode 100644 index 696e2a1b466eaae13dc7d98662ad4ac6e2220c4a..553fd1e3a024e660d8ddc45e835bb34a0b954416 --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArH6Oscillation.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArH6Oscillation.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARELECCALIB_ILARH6OSCILLATION_H @@ -29,9 +29,6 @@ public: // online ID virtual const double& channelPhase(const HWIdentifier& id) const =0; - // offline ID - virtual const double& channelPhase(const Identifier& id) const = 0 ; - /** access to channel amplitude * index by Identifier @@ -39,9 +36,6 @@ public: // online ID virtual const double& channelAmplitude(const HWIdentifier& id) const =0; - // offline ID - virtual const double& channelAmplitude(const Identifier& id) const = 0 ; - } ; CLASS_DEF( ILArH6Oscillation, 55993376,1) diff --git a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArHVScaleCorr.h b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArHVScaleCorr.h index c24e83ada54319f4b48d5d2b837957dda1d2b738..0a9a93ab434005bee604a1214a34651a822a10ec 100644 --- a/LArCalorimeter/LArElecCalib/LArElecCalib/ILArHVScaleCorr.h +++ b/LArCalorimeter/LArElecCalib/LArElecCalib/ILArHVScaleCorr.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONS_ILARHVSCALRCORR_H @@ -24,9 +24,6 @@ class ILArHVScaleCorr { // online ID virtual const float& HVScaleCorr(const HWIdentifier& id ) const = 0 ; - // offline ID - virtual const float& HVScaleCorr(const Identifier& id ) const =0; - enum {ERRORCODE = LArElecCalib::ERRORCODE}; } ; diff --git a/LArCalorimeter/LArExample/LArConditionsCommon/python/LArCellConditionsAlg.py b/LArCalorimeter/LArExample/LArConditionsCommon/python/LArCellConditionsAlg.py index 7e8959269a66d281ce57746d9d32dfd8e291b11f..10107490b24ea78ed87407fb0eea7a2d0ecea4fd 100644 --- a/LArCalorimeter/LArExample/LArConditionsCommon/python/LArCellConditionsAlg.py +++ b/LArCalorimeter/LArExample/LArConditionsCommon/python/LArCellConditionsAlg.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration ##================================================================================= ## Name: LArCellConditionsAlg.py @@ -131,10 +131,6 @@ class LArCellConditionsAlg(PyAthena.Alg): def execute(self): self.msg.info('running execute...') - #print "Check Validity.. (and thus initialize the LArCablingSvc)" - #self.larCablingSvc.isLArOnOffIdValid() - #self.larCablingSvc.readOnlOffMap() - #for some obscure reason, we need run dump before we can retrieve the flat objects using their abstract interface garbagedump = open(os.devnull, 'w') self._detStore.dump(garbagedump) diff --git a/LArCalorimeter/LArExample/LArConditionsCommon/share/DumpLArCondData_MC.py b/LArCalorimeter/LArExample/LArConditionsCommon/share/DumpLArCondData_MC.py index c500090f45cd0a88f2b0aec365d46be3e737ac26..e8309bf23c1ac6760e1dda404776953e66998604 100755 --- a/LArCalorimeter/LArExample/LArConditionsCommon/share/DumpLArCondData_MC.py +++ b/LArCalorimeter/LArExample/LArConditionsCommon/share/DumpLArCondData_MC.py @@ -73,9 +73,6 @@ from LArCabling.LArCabingConf import LArCablingService ToolSvc += LArCablingService() # Create a dumper object with output level for printout -#larCablingSvc = theApp.getHandle().toolsvc().retrieve("LArCablingService","LArCablingService")._itool -#larCablingSvc.setPython(larCablingSvc) - #-------------------------------------------------------------- # access by identifier #-------------------------------------------------------------- diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/TestLArHWID_Algo.h b/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/TestLArHWID_Algo.h old mode 100755 new mode 100644 index 34df239c049b6b600766ccfd19db44492a2b6a11..f0dc503492121f9527eacfc21c917dba441e45c7 --- a/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/TestLArHWID_Algo.h +++ b/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/TestLArHWID_Algo.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TESTLARHWID_ALGO_H @@ -26,7 +26,6 @@ class LArHEC_ID; class LArFCAL_ID; class LArOnlineID; class LArHVCellID; -class LArCablingService; class LArHVLineID; class LArElectrodeID; class LArHVCablingTool; @@ -119,7 +118,6 @@ class TestLArHWID_Algo : public AthAlgorithm { //std::string m_Connected ; - //LArCablingService* m_cablingSvc ; const CaloLVL1_ID* m_lvl1Helper; const LArEM_ID* m_emHelper; const LArHEC_ID* m_hecHelper; diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/initTTMap_Algo.h b/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/initTTMap_Algo.h old mode 100755 new mode 100644 index c82df2ed013a9bc972b1089515551761b8ed2018..3d4d7be22aece758d47fb87855914a5d80257bdb --- a/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/initTTMap_Algo.h +++ b/LArCalorimeter/LArExample/TestLArHardwareID/TestLArHardwareID/initTTMap_Algo.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef INITTTMAP_ALGO_H @@ -20,7 +20,6 @@ class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; //class LArOnlineID; -class LArCablingService; class CaloTriggerTowerService; class initTTMap_Algo : public AthAlgorithm { @@ -30,12 +29,10 @@ class initTTMap_Algo : public AthAlgorithm { /* property to select TT mapping input for FCAL * ON = take FCAL mapping from G. Oakham's file - * OFF = take FCAL mapping from hard coded cabling svc */ std::string m_initFromFile ; bool m_dumpMap; - LArCablingService* m_cablingSvc ; CaloTriggerTowerService* m_triggertowerSvc ; const CaloLVL1_ID* m_lvl1Helper; const LArEM_ID* m_emHelper; diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/src/TestLArHWID_Algo.cxx b/LArCalorimeter/LArExample/TestLArHardwareID/src/TestLArHWID_Algo.cxx old mode 100755 new mode 100644 index fd859b7cf7f394f63faaca63647b4742b48d9b3b..22b1fad58268b5289264bce6fc4ee499055d3174 --- a/LArCalorimeter/LArExample/TestLArHardwareID/src/TestLArHWID_Algo.cxx +++ b/LArCalorimeter/LArExample/TestLArHardwareID/src/TestLArHWID_Algo.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include <stdlib.h> @@ -24,8 +24,6 @@ #include "LArIdentifier/LArHVLineID.h" #include "LArIdentifier/LArElectrodeID.h" #include "LArIdentifier/LArOnlID_Exception.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArHVCablingTool.h" /********************************************************/ TestLArHWID_Algo::TestLArHWID_Algo(const std::string &name , ISvcLocator* pSvcLocator) : @@ -40,7 +38,6 @@ TestLArHWID_Algo::TestLArHWID_Algo(const std::string &name , ISvcLocator* pSvcLo m_OnlineTest("OFF"), m_OfflineTest("OFF"), m_SubDetector("OFF"), - //m_cablingSvc(0), m_lvl1Helper(0), m_emHelper(0), m_hecHelper(0), @@ -48,7 +45,6 @@ TestLArHWID_Algo::TestLArHWID_Algo(const std::string &name , ISvcLocator* pSvcLo m_onlineHelper(0), m_hvHelper(0), m_electrodeHelper(0) - //m_hvcablingTool(0) { declareProperty("Detector", m_Detector ) ; if( m_Detector != "ALL" && @@ -163,12 +159,8 @@ StatusCode TestLArHWID_Algo::initialize(){ // ============================================================== ATH_MSG_INFO ( " initializing " ); - //ATH_CHECK( toolSvc()->retrieveTool("LArCablingService", m_cablingSvc) ); - //ATH_MSG_ERROR ("initialize() failed locating ToolSvc" ); ATH_CHECK(m_cablingReadKey.initialize()); - //ATH_CHECK( toolSvc()->retrieveTool("LArHVCablingTool", m_hvcablingTool) ); - //ATH_MSG_DEBUG ( "initialize() successfully retrieved LArHVCablingTool" ); ATH_CHECK(m_HVReadKey.initialize()); // Calo diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/src/initTTMap_Algo.cxx b/LArCalorimeter/LArExample/TestLArHardwareID/src/initTTMap_Algo.cxx old mode 100755 new mode 100644 index 990a7d3c3e79e2bfd5713ea77703c74bc5142a71..021b13f334542eb40020b12dc5979c80cc0b7c69 --- a/LArCalorimeter/LArExample/TestLArHardwareID/src/initTTMap_Algo.cxx +++ b/LArCalorimeter/LArExample/TestLArHardwareID/src/initTTMap_Algo.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include <stdlib.h> @@ -22,7 +22,6 @@ #include "CaloIdentifier/LArID_Exception.h" //#include "LArIdentifier/LArIdManager.h" //#include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "CaloTriggerTool/CaloTriggerTowerService.h" #include "CaloTriggerTool/LArTTCell.h" #include "CaloTriggerTool/LArTTCellMap.h" @@ -33,7 +32,6 @@ initTTMap_Algo::initTTMap_Algo(const std::string &name , ISvcLocator* pSvcLocato AthAlgorithm( name , pSvcLocator) , m_initFromFile("OFF"), m_dumpMap(false), - m_cablingSvc(0), m_triggertowerSvc(0), m_lvl1Helper(0), m_emHelper(0), @@ -65,9 +63,6 @@ StatusCode initTTMap_Algo::initialize(){ IToolSvc* toolSvc = nullptr; ATH_CHECK( service( "ToolSvc",toolSvc ) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService", m_cablingSvc) ); - ATH_MSG_DEBUG ( "initialize() successfully retrieved LArCablingService" ); - ATH_CHECK( toolSvc->retrieveTool("CaloTriggerTowerService", m_triggertowerSvc) ); ATH_MSG_DEBUG ( "initialize() successfully retrieved CaloTriggerTowerService" ); @@ -146,7 +141,6 @@ StatusCode initTTMap_Algo::initMap(){ int nSkip=0; LArTTCell d; - // ....... init EM and HEC from hard coded mapping in LArCablingService // ....... loop on Trigger Towers ATH_MSG_DEBUG ( " Starting loop on Trigger Towers " ); diff --git a/LArCalorimeter/LArL1Sim/LArL1Sim/LArSCL1Maker.h b/LArCalorimeter/LArL1Sim/LArL1Sim/LArSCL1Maker.h old mode 100755 new mode 100644 index 207346355b3d8f6046a0f4824b761e355f994528..91b3575b8766c959746a702bf2842c2fc715e074 --- a/LArCalorimeter/LArL1Sim/LArL1Sim/LArSCL1Maker.h +++ b/LArCalorimeter/LArL1Sim/LArL1Sim/LArSCL1Maker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARL1SIM_LARSCL1MAKER_H @@ -23,6 +23,9 @@ #include "LArElecCalib/ILArAutoCorrNoiseTool.h" #include "LArElecCalib/ILArADC2MeVTool.h" #include "CaloDetDescr/ICaloSuperCellIDTool.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + class PileUpMergeSvc; @@ -33,7 +36,6 @@ class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; class LArOnline_SuperCellID; -class LArSuperCellCablingTool; class ILArShape; class ILArfSampl; class ILArPedestal; @@ -86,6 +88,8 @@ class LArSCL1Maker : public AthAlgorithm, private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKeySC{this,"ScCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; + // // >>>>>>>> private algorithm parts // @@ -130,7 +134,6 @@ class LArSCL1Maker : public AthAlgorithm, int m_BeginRunPriority; - ToolHandle<LArSuperCellCablingTool> m_cablingSCSvc; ToolHandle<ICaloSuperCellIDTool> m_scidtool; /** pointer to the offline TT helper */ const CaloCell_SuperCell_ID* m_scHelper; diff --git a/LArCalorimeter/LArL1Sim/src/LArSCL1Maker.cxx b/LArCalorimeter/LArL1Sim/src/LArSCL1Maker.cxx index 31684df96c16afc4aea82fe185fa8e88b95b040d..1047c25761ead62ea580a805e9d01b8dbfba7484 100755 --- a/LArCalorimeter/LArL1Sim/src/LArSCL1Maker.cxx +++ b/LArCalorimeter/LArL1Sim/src/LArSCL1Maker.cxx @@ -35,8 +35,6 @@ #include "CaloIdentifier/CaloLVL1_ID.h" #include "LArIdentifier/LArIdManager.h" #include "LArIdentifier/LArOnline_SuperCellID.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "CaloIdentifier/CaloCell_SuperCell_ID.h" #include "CaloDetDescr/ICaloSuperCellIDTool.h" #include "CaloEvent/CaloCellContainer.h" @@ -78,7 +76,6 @@ LArSCL1Maker::LArSCL1Maker(const std::string& name, ISvcLocator* pSvcLocator) : , m_rndmEngineName("LArSCL1Maker") , m_rndmEngine(0) , p_triggerTimeTool() - , m_cablingSCSvc("LArSuperCellCablingTool") , m_scidtool("CaloSuperCellIDTool") , m_scHelper(0) , m_OnlSCHelper(0) @@ -252,7 +249,7 @@ StatusCode LArSCL1Maker::initialize() // ..... need cabling services, to get channels associated to each SC // - CHECK( m_cablingSCSvc.retrieve() ); + CHECK( m_cablingKeySC.initialize() ); CHECK( m_scidtool.retrieve() ); @@ -335,6 +332,14 @@ StatusCode LArSCL1Maker::execute() return StatusCode::FAILURE; } + // .... get SC cabling map + // + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKeySC}; + const LArOnOffIdMapping* cabling = *cablingHdl; + if(!cabling) { + ATH_MSG_ERROR("Do not have SC cabling map !!!"); + return StatusCode::FAILURE; + } // ...... register the TTL1 containers into the TES // @@ -402,7 +407,7 @@ StatusCode LArSCL1Maker::execute() Identifier scId = m_scidtool->offlineToSuperCellID(cellId); IdentifierHash scHash = m_scHelper->calo_cell_hash(scId) ; if ( scHash.value() == 999999 ) continue; - HWIdentifier hwSC = m_cablingSCSvc->createSignalChannelID(scId); + HWIdentifier hwSC = cabling->createSignalChannelID(scId); IdentifierHash scHWHash = m_OnlSCHelper->channel_Hash(hwSC); if(m_saveHitsContainer.size()>0) { @@ -457,7 +462,7 @@ StatusCode LArSCL1Maker::execute() //record the truth hit information if(m_saveHitsContainer.size()>0) { - Identifier soft_id = m_cablingSCSvc->cnvToIdentifier(id); + Identifier soft_id = cabling->cnvToIdentifier(id); IdentifierHash idhash = m_sem_mgr->getCaloCell_ID()->calo_cell_hash(soft_id); const CaloDetDescrElement* dde = m_sem_mgr->get_element(idhash); CaloGain::CaloGain gain = (CaloGain::CaloGain)1; diff --git a/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.cxx b/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.cxx old mode 100755 new mode 100644 index 7a9431e26358ae1058e2253fa2ea2e0daf0df51b..ca473e0c533d4b7b207ce7873f5429978a736e56 --- a/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.cxx +++ b/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -45,7 +45,7 @@ LArCosmicsMonTool::LArCosmicsMonTool(const std::string& type, const IInterface* parent) : ManagedMonitorToolBase(type, name, parent), m_rootStore(nullptr), - m_larCablingService("LArCablingService"), + m_larCablingService("LArCablingLegacyService"), m_badChannelMask("BadLArRawChannelMask"), m_newrun(true) { diff --git a/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.h b/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.h old mode 100755 new mode 100644 index 3eb1634e869823808c51ad2af2568d43318b39c5..fd5b76ffdcba70a9ea139a0d47a442cd006b729d --- a/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.h +++ b/LArCalorimeter/LArMonTools/src/LArCosmicsMonTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -25,7 +25,7 @@ #include "LArRawEvent/LArDigitContainer.h" #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArRecConditions/ILArBadChannelMasker.h" @@ -93,7 +93,7 @@ class LArCosmicsMonTool: public ManagedMonitorToolBase //LArOnlineIDStrHelper* m_strHelper; ITHistSvc* m_rootStore; /** Handle to LArCablingService */ - ToolHandle<LArCablingService> m_larCablingService; + ToolHandle<LArCablingLegacyService> m_larCablingService; /** Handle to bad-channel mask */ ToolHandle<ILArBadChannelMasker> m_badChannelMask; diff --git a/LArCalorimeter/LArMonTools/src/LArCoverage.cxx b/LArCalorimeter/LArMonTools/src/LArCoverage.cxx old mode 100755 new mode 100644 index 80d9109f36cc73819f8d1a3b8e3e09416918cdd7..2b382e9fac381dc9a91895fde930af7d485a72b9 --- a/LArCalorimeter/LArMonTools/src/LArCoverage.cxx +++ b/LArCalorimeter/LArMonTools/src/LArCoverage.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -42,7 +42,7 @@ LArCoverage::LArCoverage(const std::string& type, const std::string& name, const IInterface* parent) : ManagedMonitorToolBase(type, name, parent), - m_larCablingService("LArCablingService"), + m_larCablingService("LArCablingLegacyService"), m_badChannelMask("BadLArRawChannelMask"), m_hCoverageEMBA(), m_hCoverageEMBC(), diff --git a/LArCalorimeter/LArMonTools/src/LArCoverage.h b/LArCalorimeter/LArMonTools/src/LArCoverage.h index 2052300259ca5d688aa2012f87dd3e19b85206f3..2c613e5b31032bc58d8d173e4fe76173e5246b99 100644 --- a/LArCalorimeter/LArMonTools/src/LArCoverage.h +++ b/LArCalorimeter/LArMonTools/src/LArCoverage.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -30,7 +30,7 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "EventContainers/SelectAllObject.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArRecConditions/ILArBadChannelMasker.h" #include "StoreGate/ReadCondHandleKey.h" #include "LArRecConditions/LArBadChannelCont.h" @@ -87,7 +87,7 @@ class LArCoverage: public ManagedMonitorToolBase LArOnlineIDStrHelper* m_strHelper; ITHistSvc* m_rootStore; /** Handle to LArCablingService */ - ToolHandle<LArCablingService> m_larCablingService; + ToolHandle<LArCablingLegacyService> m_larCablingService; /** Handle to bad-channel tools */ ToolHandle<ILArBadChannelMasker> m_badChannelMask; /** Handle to caloNoiseTool */ diff --git a/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.cxx b/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.cxx index b5c948d206b5ef8106d0f5bd3b5d89759ba93b76..01e88fc4d2cc1d98ff394eb32210a2a05754059e 100644 --- a/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.cxx +++ b/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -46,7 +46,7 @@ LArHVCorrectionMonTool::LArHVCorrectionMonTool(const std::string& type, m_CaloDetDescrMgr(0), m_strHelper(0), m_rootStore(0), - m_larCablingService("LArCablingService"), + m_larCablingService("LArCablingLegacyService"), m_hvCorrTool("LArHVCorrTool"), m_keyHVScaleCorr("LArHVScaleCorr"), m_eventsCounter(0) diff --git a/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.h b/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.h index 420f530109ec18d6f37825bfb1883515b3a9d5a8..726fbd21d21af869196692dc84c6d090df24acb4 100644 --- a/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.h +++ b/LArCalorimeter/LArMonTools/src/LArHVCorrectionMonTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -27,7 +27,7 @@ #include "LArRawEvent/LArRawChannel.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "EventContainers/SelectAllObject.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArElecCalib/ILArHVCorrTool.h" #include "LArElecCalib/ILArHVScaleCorr.h" @@ -82,7 +82,7 @@ class LArHVCorrectionMonTool: public ManagedMonitorToolBase LArOnlineIDStrHelper* m_strHelper; ITHistSvc* m_rootStore; /** Handle to LArCablingService */ - ToolHandle<LArCablingService> m_larCablingService; + ToolHandle<LArCablingLegacyService> m_larCablingService; /** Handle to hv tools */ ToolHandle<ILArHVCorrTool> m_hvCorrTool; const DataHandle<ILArHVScaleCorr> m_dd_HVScaleCorr; diff --git a/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx b/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx old mode 100755 new mode 100644 index 328a6035e6b873c52ca7390ab36efbec196f3946..5ec771ca3a3ee05b23b2b0565ca7c391e0bcf084 --- a/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx +++ b/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /* */ @@ -78,8 +78,7 @@ LArNoiseCorrelationMon::LArNoiseCorrelationMon(const std::string& type, : ManagedMonitorToolBase(type, name, parent), m_strHelper(nullptr), m_LArOnlineIDHelper(nullptr), - m_badChannelMask("BadLArRawChannelMask"), - m_LArCablingService("LArCablingService") + m_badChannelMask("BadLArRawChannelMask") { /** FEBs to be monitored. If empty, all FEBs will be monitored*/ std::vector<std::string> empty_vector(0); @@ -147,8 +146,8 @@ LArNoiseCorrelationMon::initialize() ATH_CHECK(detStore()->retrieve( m_LArOnlineIDHelper, "LArOnlineID" )); - /** Get LAr Calbling Service*/ - ATH_CHECK(m_LArCablingService.retrieve()); + /** Init cabling kay */ + ATH_CHECK(m_cablingKey.initialize()); /** Get bad-channel mask (only if jO IgnoreBadChannels is true)*/ @@ -257,6 +256,14 @@ LArNoiseCorrelationMon::fillHistograms() } else { ATH_MSG_DEBUG ( " Pass trigger selection " ); } + + /*retrieve cabling*/ + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling=*cablingHdl; + if(!cabling) { + ATH_MSG_ERROR("Do not have cabling map with key: "<<m_cablingKey.key()); + return StatusCode::FAILURE; + } /*retrieve pedestal*/ @@ -283,7 +290,7 @@ LArNoiseCorrelationMon::fillHistograms() CaloGain::CaloGain gain = pLArDigit->gain(); float pedestal = pedestals->pedestal(id,gain); - if(!isGoodChannel(id,pedestal)) + if(!isGoodChannel(id,pedestal,cabling)) continue; /** Retrieve samples*/ @@ -312,7 +319,7 @@ LArNoiseCorrelationMon::fillHistograms() CaloGain::CaloGain gain2 = pLArDigit2->gain(); float pedestal2 = pedestals->pedestal(id2,gain2); - if(!isGoodChannel(id2,pedestal2)) continue; + if(!isGoodChannel(id2,pedestal2,cabling)) continue; /** get the channel number */ m_ch2 = m_LArOnlineIDHelper->channel(id2); @@ -374,7 +381,7 @@ StatusCode LArNoiseCorrelationMon::procHistograms() /*---------------------------------------------------------*/ /** check if channel is ok for monitoring */ - bool LArNoiseCorrelationMon::isGoodChannel(const HWIdentifier ID,const float ped) const + bool LArNoiseCorrelationMon::isGoodChannel(const HWIdentifier ID,const float ped, const LArOnOffIdMapping *cabling) const { /** Remove problematic channels*/ if (m_ignoreKnownBadChannels && m_badChannelMask->cellShouldBeMasked(ID)) @@ -385,7 +392,7 @@ StatusCode LArNoiseCorrelationMon::procHistograms() return false; /**skip disconnected channels:*/ - if(!m_LArCablingService->isOnlineConnected(ID)) + if(!cabling->isOnlineConnected(ID)) return false; return true; diff --git a/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.h b/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.h old mode 100755 new mode 100644 index df0befd0f313ba9d1d14b5e4400b38c6fe90fe5d..5c0681a450e0cfd380c0843a03228b35c44dd8d2 --- a/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.h +++ b/LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -18,7 +18,8 @@ //LAr services: #include "LArElecCalib/ILArPedestal.h" #include "LArRecConditions/ILArBadChannelMasker.h" -#include "LArCabling/LArCablingService.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" //STL: @@ -63,9 +64,8 @@ protected: /** Handle to bad-channel mask */ ToolHandle<ILArBadChannelMasker> m_badChannelMask; - /** Handle to LArCablingService */ - ToolHandle<LArCablingService> m_LArCablingService; - + /** Handle to cabling */ + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /** Handle to pedestal */ SG::ReadCondHandleKey<ILArPedestal> m_keyPedestal{this,"LArPedestalKey","LArPedestal","SG key of LArPedestal CDO"}; @@ -133,7 +133,7 @@ private: int m_evtCounter; /** Declare methods used*/ - bool isGoodChannel(const HWIdentifier id,const float ped) const; + bool isGoodChannel(const HWIdentifier id,const float ped,const LArOnOffIdMapping *cabling) const; void fillInCorrelations(); void bookSelectedFEBs(MonGroup& grEMBA,MonGroup& grEMBC,MonGroup& grEMECA,MonGroup& grEMECC,MonGroup& grHECA,MonGroup& grHECC,MonGroup& grFCALA,MonGroup& grFCALC); void bookAllFEBs(MonGroup& grEMBA,MonGroup& grEMBC,MonGroup& grEMECA,MonGroup& grEMECC,MonGroup& grHECA,MonGroup& grHECC,MonGroup& grFCALA,MonGroup& grFCALC); diff --git a/LArCalorimeter/LArMonTools/src/LArRODMonTool.h b/LArCalorimeter/LArMonTools/src/LArRODMonTool.h old mode 100755 new mode 100644 index ac1ce536ddef233906c25f463c76b4784a88b8b5..d548203693a16baca062f0fb3d05e5873a47ac44 --- a/LArCalorimeter/LArMonTools/src/LArRODMonTool.h +++ b/LArCalorimeter/LArMonTools/src/LArRODMonTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -46,7 +46,6 @@ class LArDigitContainer; #include <set> class LArEM_ID; -//class LArCablingService; class TH1F; class TH2F; class TProfile2D; diff --git a/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.cxx b/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.cxx old mode 100755 new mode 100644 index 278826cf1afd78a4a7aef48987d45cdbd54e19ca..2350d3b2a82dfa7384701ab68c91a48f52f9775e --- a/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.cxx +++ b/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawChannelMonTool.h" @@ -102,7 +102,7 @@ LArRawChannelMonTool::LArRawChannelMonTool( const std::string & type, , m_lar_online_id_ptr ( 0 ) , m_calo_description_mgr_ptr( 0 ) , m_calo_id_mgr_ptr( 0 ) - , m_cabel_service_tool ( "LArCablingService" ) + , m_cabel_service_tool ( "LArCablingLegacyService" ) , m_masking_tool ( "BadLArRawChannelMask" ) , m_atlas_ready( false ) , m_lar_online_id_str_helper_ptr ( 0 ) diff --git a/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.h b/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.h old mode 100755 new mode 100644 index de287ede90dfaedd6d2d915ea8911ebffcbaa609..499c8529e82daf4316f1ac538f8e611352258370 --- a/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.h +++ b/LArCalorimeter/LArMonTools/src/LArRawChannelMonTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARMONTOOLS_LARRAWCHANNELMONTOOL_H @@ -18,7 +18,7 @@ //#include "AthenaMonitoring/IDQFilterTool.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloInterface/ICaloNoiseTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArRecConditions/ILArBadChannelMasker.h" // --- boost --- @@ -148,7 +148,7 @@ class LArRawChannelMonTool: public ManagedMonitorToolBase const CaloDetDescrManager *m_calo_description_mgr_ptr; const CaloIdManager *m_calo_id_mgr_ptr; //!< offline calo structure - ToolHandle<LArCablingService> m_cabel_service_tool;//!< LAr connections + ToolHandle<LArCablingLegacyService> m_cabel_service_tool;//!< LAr connections ToolHandle<ICaloNoiseTool> m_calo_noise_tool; //!< Calorimeter noise ToolHandle<ILArBadChannelMasker> m_masking_tool; //!< LAr Masking diff --git a/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArDSPThresholdFillInline.h b/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArDSPThresholdFillInline.h index d7ff8ce3d36107a8dd1ef3ade2e636cec76d64e8..f90b7bb8448eaca0c3e27088fddbe8de11ba1a78 100644 --- a/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArDSPThresholdFillInline.h +++ b/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArDSPThresholdFillInline.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARDSPTHRESHOLDSFILLINGINLINE_H @@ -8,11 +8,11 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" #include "CaloIdentifier/CaloCellGroup.h" -#include "LArCabling/LArCablingService.h" #include "LArRecConditions/ILArBadChannelMasker.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" class LArOnlineID; -class LArCablingService; class ICaloNoiseTool; class ILArBadChannelMasker; @@ -25,6 +25,7 @@ class LArDSPThresholdFillInline:public AthAlgorithm { StatusCode stop(); private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const LArOnlineID* m_onlineID; std::string m_nameOfSet; @@ -40,7 +41,6 @@ class LArDSPThresholdFillInline:public AthAlgorithm { bool m_fill; ToolHandle < ICaloNoiseTool > m_noisetool; - ToolHandle < LArCablingService > m_cablingSvc; ToolHandle < ILArBadChannelMasker > m_badChannelMasker; enum mode_t{ diff --git a/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArGeoWeightsFill.h b/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArGeoWeightsFill.h index 9800a2f1de95013939cd4231c17f31133abcf755..e4a4005d8f99645ec82c2bd9eb6ac4e5651bd171 100644 --- a/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArGeoWeightsFill.h +++ b/LArCalorimeter/LArOnlDbPrep/LArOnlDbPrep/LArGeoWeightsFill.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARGEOWEIGHTSFILL_H @@ -7,7 +7,8 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "CaloTriggerTool/CaloTriggerTowerService.h" class StoreGateSvc; @@ -22,6 +23,8 @@ class LArGeoWeightsFill:public AthAlgorithm { StatusCode stop(); private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; + const LArOnlineID* m_onlineID; std::string m_nameOfSet; @@ -30,7 +33,6 @@ class LArGeoWeightsFill:public AthAlgorithm { bool m_fill, m_dump; std::string m_outFileName; - ToolHandle < LArCablingService > m_cablingSvc; ToolHandle < CaloTriggerTowerService > m_ttService; }; diff --git a/LArCalorimeter/LArOnlDbPrep/src/LArDSPThresholdFillInline.cxx b/LArCalorimeter/LArOnlDbPrep/src/LArDSPThresholdFillInline.cxx index a9acff8b11854998e8a25f66c81ee971b47514dc..916da12e45ae849b0383d43fa4e8cd3e074ba0f5 100644 --- a/LArCalorimeter/LArOnlDbPrep/src/LArDSPThresholdFillInline.cxx +++ b/LArCalorimeter/LArOnlDbPrep/src/LArDSPThresholdFillInline.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArOnlDbPrep/LArDSPThresholdFillInline.h" @@ -7,7 +7,6 @@ #include "StoreGate/StoreGate.h" #include "CaloIdentifier/CaloCell_ID.h" #include "CaloIdentifier/CaloGain.h" -#include "LArCabling/LArCablingService.h" #include "CaloInterface/ICaloNoiseTool.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetDescrElement.h" @@ -28,7 +27,6 @@ LArDSPThresholdFillInline::LArDSPThresholdFillInline(const std::string& name, IS AthAlgorithm(name,pSvcLocator), m_onlineID(0), m_noisetool("CaloNoiseToolDefault"), - m_cablingSvc("LArCablingService"), m_badChannelMasker("LArBadChannelMasker"), m_workmode (FIXED) { @@ -72,7 +70,7 @@ StatusCode LArDSPThresholdFillInline::initialize() { ATH_MSG_DEBUG ( "start initialize()" ); ATH_CHECK( detStore()->retrieve(m_onlineID,"LArOnlineID") ); - ATH_CHECK( m_cablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); if(m_maskBadChannels){ ATH_CHECK( m_badChannelMasker.retrieve() ); @@ -160,12 +158,19 @@ StatusCode LArDSPThresholdFillInline::stop() { } ATH_MSG_INFO ( "theCaloDDM retrieved" ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + for (unsigned hs=0;hs<hashMax;++hs) { const HWIdentifier chid=m_onlineID->channel_Id(hs); - const Identifier id=m_cablingSvc->cnvToIdentifier(chid); - ATH_MSG_DEBUG ( "cell id: " << id << " " << m_cablingSvc->isOnlineConnected(chid) ); + const Identifier id=cabling->cnvToIdentifier(chid); + ATH_MSG_DEBUG ( "cell id: " << id << " " << cabling->isOnlineConnected(chid) ); - if(!m_cablingSvc->isOnlineConnected(chid)){ + if(!cabling->isOnlineConnected(chid)){ ATH_MSG_DEBUG ( "cell id: " << id << " not connected channel, skip " ); // Same (very high) thresholds for disconnected channels as masked channels ptQThrBlob[hs]=m_maskedtqThrsh; diff --git a/LArCalorimeter/LArOnlDbPrep/src/LArGeoWeightsFill.cxx b/LArCalorimeter/LArOnlDbPrep/src/LArGeoWeightsFill.cxx index c85015fb2f041fd158ed4669603151501b874037..9a29101ce73491f2beacd6cb310c0de3e184cc73 100644 --- a/LArCalorimeter/LArOnlDbPrep/src/LArGeoWeightsFill.cxx +++ b/LArCalorimeter/LArOnlDbPrep/src/LArGeoWeightsFill.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArOnlDbPrep/LArGeoWeightsFill.h" #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGate.h" #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetDescrElement.h" #include <fstream> @@ -21,7 +20,6 @@ LArGeoWeightsFill::LArGeoWeightsFill(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name,pSvcLocator), m_onlineID(0), - m_cablingSvc("LArCablingService"), m_ttService("CaloTriggerTowerService") { declareProperty("Key",m_key="GeoWeights"); @@ -39,7 +37,7 @@ StatusCode LArGeoWeightsFill::initialize() { ATH_MSG_DEBUG ( "start initialize()" ); ATH_CHECK( detStore()->retrieve(m_onlineID,"LArOnlineID") ); - ATH_CHECK( m_cablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( m_ttService.retrieve() ); return StatusCode::SUCCESS; } @@ -86,11 +84,17 @@ StatusCode LArGeoWeightsFill::stop() { return StatusCode::FAILURE; } ATH_MSG_INFO ( "theCaloDDM retrieved" ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } for (unsigned hs=0;hs<hashMax;++hs) { const HWIdentifier chid=m_onlineID->channel_Id(hs); - if(!m_cablingSvc->isOnlineConnected(chid)){ + if(!cabling->isOnlineConnected(chid)){ ATH_MSG_DEBUG ( "cell chid: " << chid.get_compact() << " not connected channel, skip " ); //Set values for disconnected cells to 0 pcostheta[hs]=0.0; @@ -99,7 +103,7 @@ StatusCode LArGeoWeightsFill::stop() { pofflineTTid[hs]=0; continue; } - const Identifier id=m_cablingSvc->cnvToIdentifier(chid); + const Identifier id=cabling->cnvToIdentifier(chid); const CaloDetDescrElement *caloDDE = theCaloDDM->get_element(id); if(!caloDDE){ ATH_MSG_ERROR ( "Failed to return CaloDetDescrElement" ); diff --git a/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulator.h b/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulator.h old mode 100755 new mode 100644 index 7280ac3452aa9e5430886300051d0aba0b39c050..943628aaa145365aa0440f06808ae3685f8b9b4b --- a/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulator.h +++ b/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulator.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -26,7 +26,7 @@ #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGateSvc.h" #include "LArRawConditions/LArCalibParams.h" -#include "LArCabling/LArCablingService.h" + #include "LArRecConditions/LArCalibLineMapping.h" class LArCalibDigitsAccumulator : public AthAlgorithm { @@ -53,7 +53,7 @@ public: private: - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibCablingKey","LArCalibLineMap","SG Key of LArCalibLineMapping object"}; const LArOnlineID* m_onlineHelper; typedef std::vector<LArAccumulatedCalibDigit*> ACCUMDIGIT_VEC; diff --git a/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulatorFreeGain.h b/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulatorFreeGain.h index 2952afcd1720129e1fea16ff84a60e5cf459ed23..a2efe0c2e49418b3c4dad4c0625b4a266667b067 100644 --- a/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulatorFreeGain.h +++ b/LArCalorimeter/LArROD/LArROD/LArCalibDigitsAccumulatorFreeGain.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /************************************************** @@ -25,7 +25,7 @@ #include "LArIdentifier/LArOnlineID.h" #include "StoreGate/StoreGateSvc.h" #include "LArRawConditions/LArCalibParams.h" -#include "LArCabling/LArCablingService.h" +#include "LArRecConditions/LArCalibLineMapping.h" class LArCalibDigitsAccumulatorFreeGain : public AthAlgorithm { @@ -51,7 +51,7 @@ public: }; private: - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; const LArOnlineID* m_onlineHelper; diff --git a/LArCalorimeter/LArROD/LArROD/LArCellBuilderDriver.h b/LArCalorimeter/LArROD/LArROD/LArCellBuilderDriver.h old mode 100755 new mode 100644 index efedace976a3ae6a64f9df430234f75a449d2461..8b8f4712e4e2cead35ea1d0b52573df4999c11a6 --- a/LArCalorimeter/LArROD/LArROD/LArCellBuilderDriver.h +++ b/LArCalorimeter/LArROD/LArROD/LArCellBuilderDriver.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -18,7 +18,6 @@ #include "GaudiKernel/ToolHandle.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/CaloGain.h" #include "LArIdentifier/LArOnlineID.h" @@ -101,7 +100,6 @@ class LArCellBuilderDriver : public AthAlgTool //LArRoI_Map* m_roiMap; //LArRawOrdering m_larRawOrdering; - ToolHandle<LArCablingService> m_larCablingSvc; std::vector<float> m_ramps; diff --git a/LArCalorimeter/LArROD/LArROD/LArDigitsAccumulator.h b/LArCalorimeter/LArROD/LArROD/LArDigitsAccumulator.h index b1667a7a8f870dc705605cdcde50880fb8c1b0b4..2936f9d15eba403385ecc5f412291ee8f8926e80 100644 --- a/LArCalorimeter/LArROD/LArROD/LArDigitsAccumulator.h +++ b/LArCalorimeter/LArROD/LArROD/LArDigitsAccumulator.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -19,8 +19,8 @@ #include "LArRawEvent/LArDigitContainer.h" #include "LArRawEvent/LArAccumulatedDigitContainer.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArRecConditions/LArCalibLineMapping.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" class LArDigitsAccumulator : public AthAlgorithm { @@ -47,12 +47,12 @@ public: private: - ToolHandle<LArCablingService> m_larCablingSvc; const LArOnlineID* m_onlineHelper; typedef std::vector<LArAccumulatedDigit*> ACCUMDIGIT_VEC; ACCUMDIGIT_VEC m_my_vec; + SG::ReadCondHandleKey<LArCalibLineMapping> m_calibMapKey{this,"CalibMapKey","LArCalibLineMap","SG Key of calib line mapping object"}; /** * @brief LArAccumulatedDigitContainer name. diff --git a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilder.h b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilder.h old mode 100755 new mode 100644 index 18a2a79e7a242b59a25b11f48e35d0ca94232c5d..696acfe4a17f1ba72eca497b85bfb086d5aacc56 --- a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilder.h +++ b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -23,20 +23,13 @@ #include "LArElecCalib/ILArOFCTool.h" #include "LArElecCalib/ILArADC2MeVTool.h" #include "LArElecCalib/ILArHVCorrTool.h" - -// sandrine -//#include "LArCabling/LArCablingService.h" -//#include "CaloIdentifier/LArEM_ID.h" - -//#include "LArRawUtils/LArRoI_Map.h" -//#include "LArRawUtils/LArRawOrdering.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "LArRawEvent/LArRawChannelContainer.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloIdManager.h" -#include "LArCabling/LArCablingService.h" class LArRawChannelBuilder : public AthAlgorithm { @@ -112,7 +105,7 @@ private: // to be used for detailed DEBUG output only const LArEM_ID* m_emId; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; int m_firstSample; // shift to apply to Shape from DB to match digitized samples std::string m_pedestalKey; diff --git a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderDriver.h b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderDriver.h old mode 100755 new mode 100644 index 558a679ef6a1a1a9222a8c15e85e47daba7caf02..9611a547f1cf6f8ffb64af4c82123ac02773f76b --- a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderDriver.h +++ b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderDriver.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -20,7 +20,6 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/CaloGain.h" #include "LArIdentifier/LArOnlineID.h" @@ -33,6 +32,7 @@ #include "LArROD/ILArRawChannelBuilderToolBase.h" #include "LArROD/ILArRawChannelBuilderADC2EToolBase.h" #include "LArROD/ILArRawChannelBuilderPedestalToolBase.h" +#include "LArCabling/LArOnOffIdMapping.h" #include <vector> #include <string> @@ -88,7 +88,7 @@ class LArRawChannelBuilderDriver : public AthAlgorithm int m_checkSamples; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; std::vector<float> m_ramps; diff --git a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderToolBaseClass.h b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderToolBaseClass.h old mode 100755 new mode 100644 index d49f30acaab77f20ff450ec790f5e325d7ab9347..da8976d396ac8ef97209fe184ed933ad8a0e33f6 --- a/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderToolBaseClass.h +++ b/LArCalorimeter/LArROD/LArROD/LArRawChannelBuilderToolBaseClass.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear eamcs, this is -*-c++-*-as @@ -26,8 +26,7 @@ #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" +#include "LArCabling/LArOnOffIdMapping.h" class LArRawChannelBuilderToolBaseClass : public AthAlgTool, public virtual ILArRawChannelBuilderToolBaseClass @@ -47,15 +46,9 @@ class LArRawChannelBuilderToolBaseClass : public AthAlgTool, { m_parent=myParent; if ( m_isSC ) { - ToolHandle<LArSuperCellCablingTool> lscct("LArSuperCellCablingTool"); - CHECK( lscct.retrieve() ); - LArSuperCellCablingTool* plscct = &(*lscct); - m_larCablingSvc = (LArCablingBase*) plscct; + ATH_CHECK( m_cablingKeySC.initialize() ); } else { - ToolHandle<LArCablingService> lcS("LArCablingService"); - CHECK( lcS.retrieve() ); - LArCablingService* plcS = &(*lcS); - m_larCablingSvc = (LArCablingBase*)plcS; + ATH_CHECK( m_cablingKey.initialize() ); } return initTool(); }; @@ -82,6 +75,9 @@ class LArRawChannelBuilderToolBaseClass : public AthAlgTool, Identifier currentID(); protected: + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKeySC{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; LArRawChannelBuilderParams *m_parent; @@ -89,8 +85,6 @@ class LArRawChannelBuilderToolBaseClass : public AthAlgTool, StoreGateSvc* m_detStore; - LArCablingBase* m_larCablingSvc; - bool m_isSC; }; diff --git a/LArCalorimeter/LArROD/LArROD/LArRawChannelSimpleBuilder.h b/LArCalorimeter/LArROD/LArROD/LArRawChannelSimpleBuilder.h old mode 100755 new mode 100644 index 6a93bbdac1e9ebe54845d3051f732e5d3189ccc4..a33bc46ec72700e20b7c45905845a317679a0805 --- a/LArCalorimeter/LArROD/LArROD/LArRawChannelSimpleBuilder.h +++ b/LArCalorimeter/LArROD/LArROD/LArRawChannelSimpleBuilder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -17,12 +17,13 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" #include "LArRawEvent/LArRawChannelContainer.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "LArElecCalib/ILArADC2MeVTool.h" #include "LArRecUtils/LArParabolaPeakRecoTool.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" class LArRawChannelContainer; @@ -39,7 +40,7 @@ public: private: //Services & Tools - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; const LArEM_ID* m_emId; const LArFCAL_ID* m_fcalId; const LArHEC_ID* m_hecId; diff --git a/LArCalorimeter/LArROD/LArROD/LArSuperCellBuilderDriver.h b/LArCalorimeter/LArROD/LArROD/LArSuperCellBuilderDriver.h old mode 100755 new mode 100644 index 0f7249bc896eed529b88de935ef88305c8b26cef..9e9a7ff4716e24183bdb36b261a689282eaf0208 --- a/LArCalorimeter/LArROD/LArROD/LArSuperCellBuilderDriver.h +++ b/LArCalorimeter/LArROD/LArROD/LArSuperCellBuilderDriver.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -19,10 +19,10 @@ #include "StoreGate/StoreGateSvc.h" #include "AthenaBaseComps/AthAlgorithm.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "CaloIdentifier/CaloGain.h" #include "LArIdentifier/LArOnline_SuperCellID.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "LArROD/LArRawChannelBuilderParams.h" #include "LArROD/ILArRawChannelBuilderToolBase.h" @@ -83,6 +83,7 @@ class LArSuperCellBuilderDriver : public AthAlgorithm IToolSvc* m_toolSvc; const LArOnline_SuperCellID* m_onlineHelper; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKeySC{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; std::string m_DataLocation, m_ChannelContainerName; @@ -97,7 +98,7 @@ class LArSuperCellBuilderDriver : public AthAlgorithm int m_checkSamples; - ToolHandle<LArSuperCellCablingTool> m_larCablingSvc; + std::vector<float> m_ramps; diff --git a/LArCalorimeter/LArROD/LArROD/ReadLArDigits.h b/LArCalorimeter/LArROD/LArROD/ReadLArDigits.h old mode 100755 new mode 100644 index 3ccabb7d4c1810a51c1087414c541704f209b30f..e96d1af282e44572e040ed90802867da1ead6a89 --- a/LArCalorimeter/LArROD/LArROD/ReadLArDigits.h +++ b/LArCalorimeter/LArROD/LArROD/ReadLArDigits.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -19,12 +19,14 @@ #include "GaudiKernel/MsgStream.h" #include "StoreGate/StoreGateSvc.h" #include "LArRawEvent/LArDigitContainer.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "GaudiKernel/INTupleSvc.h" #include "GaudiKernel/NTuple.h" #include "GaudiKernel/SmartDataPtr.h" #include "LArIdentifier/LArOnlineID.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include <fstream> class ReadLArDigits : public AthAlgorithm @@ -40,8 +42,8 @@ class ReadLArDigits : public AthAlgorithm StatusCode finalize(); private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; int m_count; - ToolHandle<LArCablingService> m_larCablingSvc; const LArEM_ID* m_emId; const LArOnlineID* m_onlineHelper; std::ofstream m_outfile; diff --git a/LArCalorimeter/LArROD/LArROD/ReadLArRaw.h b/LArCalorimeter/LArROD/LArROD/ReadLArRaw.h old mode 100755 new mode 100644 index b0fe2ea69e480ab2851adf1d06c0a211402cbbae..47652514ca984d1d8c3f34095afde2608ba7675a --- a/LArCalorimeter/LArROD/LArROD/ReadLArRaw.h +++ b/LArCalorimeter/LArROD/LArROD/ReadLArRaw.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -12,12 +12,13 @@ #define ReadLArRaw_H #include "AthenaBaseComps/AthAlgorithm.h" -#include "GaudiKernel/ToolHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" + #include <fstream> ///////////////////////////////////////////////////////////////////////////// -class LArCablingService ; class LArOnlineID; class LArRoI_Map; class LArEM_ID; @@ -36,10 +37,8 @@ class ReadLArRaw:public AthAlgorithm { std::string m_dumpFile; std::ofstream m_outFile; - - // Provide the LArCablingService - ToolHandle<LArCablingService> m_cablingService; - + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + const LArOnlineID * m_onlineID; const LArEM_ID* m_larem_id; diff --git a/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulator.cxx b/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulator.cxx old mode 100755 new mode 100644 index bf49fd5871cd71c2c6bd8328a9f242c800d5c21f..16310c9cd25740ea7307bfefce839f10878fef7f --- a/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulator.cxx +++ b/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulator.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArCalibDigitsAccumulator.h" @@ -12,7 +12,6 @@ using CLHEP::ns; LArCalibDigitsAccumulator::LArCalibDigitsAccumulator (const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), - m_larCablingSvc("LArCablingService"), m_onlineHelper(0), m_calibAccuDigitContainerName("LArAccumulatedCalibDigits"), m_nStepTrigger(1), @@ -32,28 +31,10 @@ LArCalibDigitsAccumulator::LArCalibDigitsAccumulator (const std::string& name, I StatusCode LArCalibDigitsAccumulator::initialize(){ - MsgStream log(msgSvc(), name()); - StatusCode sc; - // retrieve online ID helper - sc = detStore()->retrieve(m_onlineHelper, "LArOnlineID"); - if (sc.isFailure()) { - log << MSG::ERROR << "Could not get LArOnlineID helper !" << endmsg; - return StatusCode::FAILURE; - } - - // retrieve cabling service - IToolSvc* toolSvc; - sc=service( "ToolSvc",toolSvc ); - if (sc.isFailure()) { - log << MSG::ERROR << "Unable to retrieve ToolSvc" << endmsg; - return StatusCode::FAILURE; - } - - if (m_larCablingSvc.retrieve().isFailure()) { - log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); + + ATH_CHECK( m_calibMapKey.initialize() ); m_Accumulated.resize(m_onlineHelper->channelHashMax()); @@ -66,12 +47,17 @@ StatusCode LArCalibDigitsAccumulator::execute() { StatusCode sc; - MsgStream log(msgSvc(), name()); if ( m_event_counter < 100 || m_event_counter%100==0 ) - log << MSG::INFO << "Processing event " << m_event_counter << endmsg; + ATH_MSG_INFO( "Processing event " << m_event_counter ); ++m_event_counter; + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_calibMapKey}; + const LArCalibLineMapping *clcabling {*clHdl}; + if(!clcabling) { + ATH_MSG_WARNING( "Do not have calib line mapping from key " << m_calibMapKey.key() ); + return StatusCode::FAILURE; + } // pointer to input container const LArCalibDigitContainer* calibDigitContainer=NULL; @@ -80,7 +66,7 @@ StatusCode LArCalibDigitsAccumulator::execute() const LArCalibParams* calibParams; sc=detStore()->retrieve(calibParams,"LArCalibParams"); if (sc.isFailure()) - {log << MSG::ERROR << "Cannot load LArCalibParams from DetStore." << endmsg; + {ATH_MSG_ERROR( "Cannot load LArCalibParams from DetStore." ); return StatusCode::FAILURE; } @@ -96,10 +82,10 @@ StatusCode LArCalibDigitsAccumulator::execute() sc=evtStore()->retrieve(calibDigitContainer,*key_it); if(sc.isFailure()) { - log << MSG::ERROR << "Can't retrieve LArCalibDigitContainer with key " << *key_it << "from StoreGate." << endmsg; + ATH_MSG_ERROR( "Can't retrieve LArCalibDigitContainer with key " << *key_it << "from StoreGate." ); return StatusCode::SUCCESS; }else{ - log << MSG::DEBUG << "Retrieved LArCalibDigitContainer with key " << *key_it << " from StoreGate." << endmsg; + ATH_MSG_DEBUG( "Retrieved LArCalibDigitContainer with key " << *key_it << " from StoreGate." ); } // store LArAccumulatedDigits @@ -111,9 +97,9 @@ StatusCode LArCalibDigitsAccumulator::execute() LArCalibDigitContainer::const_iterator it_end=calibDigitContainer->end(); if(it == it_end) { - log << MSG::DEBUG << "LArCalibDigitContainer with key=" << *key_it << " is empty " << endmsg; + ATH_MSG_DEBUG( "LArCalibDigitContainer with key=" << *key_it << " is empty " ); }else{ - log << MSG::DEBUG << "LArCalibDigitContainer with key=" << *key_it << " has size = " << calibDigitContainer->size() << endmsg; + ATH_MSG_DEBUG( "LArCalibDigitContainer with key=" << *key_it << " has size = " << calibDigitContainer->size() ); } // counter of triggers @@ -142,12 +128,12 @@ StatusCode LArCalibDigitsAccumulator::execute() // BELOW: DIRTY HACK BECAUSE THERE SEEMS TO BE A BUG IN THE CABLINGSVC CONCERNING THE CALIBLINES. // get calibration settings - const std::vector<HWIdentifier>& calibLineID=m_larCablingSvc->calibSlotLine(chid); + const std::vector<HWIdentifier>& calibLineID=clcabling->calibSlotLine(chid); HWIdentifier calibModuleID; if(calibLineID.size()>0){ calibModuleID=m_onlineHelper->calib_module_Id(calibLineID[0]); nTriggerPerStep[febhash] = calibParams->NTrigger(calibModuleID); - log << MSG::DEBUG << "Ntrigger per step = " << nTriggerPerStep[febhash] << endmsg; + ATH_MSG_DEBUG( "Ntrigger per step = " << nTriggerPerStep[febhash] ); if(nTriggerPerStep[febhash] > 1000) nTriggerPerStep[febhash]=100; // very dirty !!! }else{ @@ -164,13 +150,13 @@ StatusCode LArCalibDigitsAccumulator::execute() else // next cells: should be the same delay if (m_delay!=(*it)->delay()) { - log << MSG::DEBUG << "Delay is changing to " << (*it)->delay() << " from " << m_delay << ": book a new LArAccumulatedCalibDigitContainer" << endmsg; + ATH_MSG_DEBUG( "Delay is changing to " << (*it)->delay() << " from " << m_delay << ": book a new LArAccumulatedCalibDigitContainer" ); m_delay=(*it)->delay(); } CaloGain::CaloGain gain=(*it)->gain(); if (gain<0 || gain>CaloGain::LARNGAIN) - {log << MSG::ERROR << "Found not-matching gain number ("<< (int)gain <<")" << endmsg; + {ATH_MSG_ERROR( "Found not-matching gain number ("<< (int)gain <<")" ); delete larAccuCalibDigitContainer; return StatusCode::FAILURE; } @@ -181,11 +167,11 @@ StatusCode LArCalibDigitsAccumulator::execute() // trigger counter for each cell cellAccumulated.m_ntrigger++; - log << MSG::DEBUG << "chid = " << chid << ", trigger = " << cellAccumulated.m_ntrigger << ", DAC = " << (*it)->DAC() << endmsg; + ATH_MSG_DEBUG( "chid = " << chid << ", trigger = " << cellAccumulated.m_ntrigger << ", DAC = " << (*it)->DAC() ); // at first trigger, initialize vectors unsigned int sizeSamples = (*it)->samples().size(); - log << MSG::DEBUG << "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples << endmsg; + ATH_MSG_DEBUG( "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples ); LArAccumulatedCalibDigit* accuCalibDigit; @@ -214,14 +200,14 @@ StatusCode LArCalibDigitsAccumulator::execute() cellAccumulated.m_sum2[j] += (*it)->samples()[j]*(*it)->samples()[j]; } - log << MSG::DEBUG << "Sum = " << cellAccumulated.m_sum[0] << endmsg; - log << MSG::DEBUG << "Sum2 = " << cellAccumulated.m_sum2[0] << endmsg; + ATH_MSG_DEBUG( "Sum = " << cellAccumulated.m_sum[0] ); + ATH_MSG_DEBUG( "Sum2 = " << cellAccumulated.m_sum2[0] ); // when reached total number of triggers for this step, fill LArAccumulatedCalibDigit and reset number of triggers if(cellAccumulated.m_ntrigger==nTriggerPerStep[febhash]){ - log << MSG::DEBUG << "filling LArAccumulatedCalibDigit " << endmsg; - log << MSG::DEBUG << "chid = " << chid << ", gain = " << gain << ", DAC = " << (*it)->DAC() << ", isPulsed = " << isPulsed << ", delay = " << m_delay << ", trigPerStep = " << nTriggerPerStep[febhash] << ", istep = " << iStepTrigger[febhash] << endmsg; + ATH_MSG_DEBUG( "filling LArAccumulatedCalibDigit " ); + ATH_MSG_DEBUG( "chid = " << chid << ", gain = " << gain << ", DAC = " << (*it)->DAC() << ", isPulsed = " << isPulsed << ", delay = " << m_delay << ", trigPerStep = " << nTriggerPerStep[febhash] << ", istep = " << iStepTrigger[febhash] ); accuCalibDigit->setAddSubStep(cellAccumulated.m_sum,cellAccumulated.m_sum2,nTriggerPerStep[febhash]); iStepTrigger[febhash]++; @@ -232,8 +218,8 @@ StatusCode LArCalibDigitsAccumulator::execute() std::vector<float> RMS = accuCalibDigit->RMS(); for(unsigned int i=0;i<mean.size();i++){ - log << MSG::DEBUG << "mean["<<i<<"] = " << mean[i] << endmsg; - log << MSG::DEBUG << "RMS["<<i<<"] = " << RMS[i] << endmsg; + ATH_MSG_DEBUG( "mean["<<i<<"] = " << mean[i] ); + ATH_MSG_DEBUG( "RMS["<<i<<"] = " << RMS[i] ); } larAccuCalibDigitContainer->push_back(accuCalibDigit); @@ -248,14 +234,14 @@ StatusCode LArCalibDigitsAccumulator::execute() larAccuCalibDigitContainer->setDelayScale(m_delayScale); sc = evtStore()->record(larAccuCalibDigitContainer,*key_it); if (sc!=StatusCode::SUCCESS) - {log << MSG::WARNING << "Unable to record LArAccumulatedCalibDigitContainer with key " << *key_it << " from DetectorStore. " << endmsg; + {ATH_MSG_WARNING( "Unable to record LArAccumulatedCalibDigitContainer with key " << *key_it << " from DetectorStore. " ); } else - log << MSG::DEBUG << "Recorded succesfully LArAccumulatedCalibDigitContainer with key " << *key_it << endmsg; + ATH_MSG_DEBUG( "Recorded succesfully LArAccumulatedCalibDigitContainer with key " << *key_it ); sc = evtStore()->setConst(larAccuCalibDigitContainer); if (sc.isFailure()) { - log << MSG::ERROR << " Cannot lock LArAccumulatedCalibDigitContainer " << endmsg; + ATH_MSG_ERROR( " Cannot lock LArAccumulatedCalibDigitContainer " ); return(StatusCode::FAILURE); } diff --git a/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulatorFreeGain.cxx b/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulatorFreeGain.cxx index 6f1f14d1ce91007187db2c1eebc76b32da867946..999dd08632892835fd1f672a1bdf70c35ff01d44 100644 --- a/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulatorFreeGain.cxx +++ b/LArCalorimeter/LArROD/src/LArCalibDigitsAccumulatorFreeGain.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArCalibDigitsAccumulatorFreeGain.h" @@ -12,7 +12,6 @@ using CLHEP::ns; LArCalibDigitsAccumulatorFreeGain::LArCalibDigitsAccumulatorFreeGain (const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), - m_larCablingSvc("LArCablingService"), m_onlineHelper(0), m_delay(0), m_isPulsed(false), @@ -34,28 +33,16 @@ LArCalibDigitsAccumulatorFreeGain::LArCalibDigitsAccumulatorFreeGain (const std: StatusCode LArCalibDigitsAccumulatorFreeGain::initialize(){ - MsgStream log(msgSvc(), name()); StatusCode sc; // retrieve online ID helper sc = detStore()->retrieve(m_onlineHelper, "LArOnlineID"); if (sc.isFailure()) { - log << MSG::ERROR << "Could not get LArOnlineID helper !" << endmsg; + ATH_MSG_ERROR( "Could not get LArOnlineID helper !" ); return StatusCode::FAILURE; } - // retrieve cabling service - IToolSvc* toolSvc; - sc=service( "ToolSvc",toolSvc ); - if (sc.isFailure()) { - log << MSG::ERROR << "Unable to retrieve ToolSvc" << endmsg; - return StatusCode::FAILURE; - } - - if (m_larCablingSvc.retrieve().isFailure()) { - log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK( m_calibMapKey.initialize() ); m_AccumulatedHG.resize(m_onlineHelper->channelHashMax()); m_AccumulatedMG.resize(m_onlineHelper->channelHashMax()); @@ -70,12 +57,17 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() { StatusCode sc; - MsgStream log(msgSvc(), name()); if ( m_event_counter < 100 || m_event_counter%100==0 ) - log << MSG::INFO << "Processing event " << m_event_counter << endmsg; + ATH_MSG_INFO( "Processing event " << m_event_counter ); ++m_event_counter; + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_calibMapKey}; + const LArCalibLineMapping *clcabling {*clHdl}; + if(!clcabling) { + ATH_MSG_WARNING( "Do not have calib line mapping !!!" ); + return StatusCode::FAILURE; + } // pointer to input container const LArCalibDigitContainer* calibDigitContainer=NULL; @@ -84,7 +76,7 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() const LArCalibParams* calibParams; sc=detStore()->retrieve(calibParams,"LArCalibParams"); if (sc.isFailure()) - {log << MSG::ERROR << "Cannot load LArCalibParams from DetStore." << endmsg; + {ATH_MSG_ERROR( "Cannot load LArCalibParams from DetStore." ); return StatusCode::FAILURE; } @@ -100,10 +92,10 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() sc=evtStore()->retrieve(calibDigitContainer,*key_it); if(sc.isFailure()) { - log << MSG::ERROR << "Can't retrieve LArCalibDigitContainer with key " << *key_it << "from StoreGate." << endmsg; + ATH_MSG_ERROR( "Can't retrieve LArCalibDigitContainer with key " << *key_it << "from StoreGate." ); return StatusCode::SUCCESS; }else{ - log << MSG::DEBUG << "Retrieved LArCalibDigitContainer with key " << *key_it << " from StoreGate." << endmsg; + ATH_MSG_DEBUG( "Retrieved LArCalibDigitContainer with key " << *key_it << " from StoreGate." ); } // Loop over CalibDigitContainer @@ -111,9 +103,9 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() LArCalibDigitContainer::const_iterator it_end=calibDigitContainer->end(); if(it == it_end) { - log << MSG::DEBUG << "LArCalibDigitContainer with key=" << *key_it << " is empty " << endmsg; + ATH_MSG_DEBUG( "LArCalibDigitContainer with key=" << *key_it << " is empty " ); }else{ - log << MSG::DEBUG << "LArCalibDigitContainer with key=" << *key_it << " has size = " << calibDigitContainer->size() << endmsg; + ATH_MSG_DEBUG( "LArCalibDigitContainer with key=" << *key_it << " has size = " << calibDigitContainer->size() ); } // counter of triggers @@ -146,12 +138,12 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() // BELOW: DIRTY HACK BECAUSE THERE SEEMS TO BE A BUG IN THE CABLINGSVC CONCERNING THE CALIBLINES. // get calibration settings - const std::vector<HWIdentifier>& calibLineID=m_larCablingSvc->calibSlotLine(chid); + const std::vector<HWIdentifier>& calibLineID=clcabling->calibSlotLine(chid); HWIdentifier calibModuleID; if(calibLineID.size()>0){ calibModuleID=m_onlineHelper->calib_module_Id(calibLineID[0]); nTriggerPerStep[febhash] = calibParams->NTrigger(calibModuleID); - log << MSG::DEBUG << "Ntrigger per step = " << nTriggerPerStep[febhash] << endmsg; + ATH_MSG_DEBUG( "Ntrigger per step = " << nTriggerPerStep[febhash] ); if(nTriggerPerStep[febhash] > 1000) nTriggerPerStep[febhash]=100; // very dirty !!! } else { nTriggerPerStep[febhash] = 100; // very dirty !! @@ -166,14 +158,14 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() } else { // next cells: should be the same delay if (m_delay!=(*it)->delay()) { - log << MSG::DEBUG << "Delay is changing to " << (*it)->delay() << " from " << m_delay << ": book a new LArAccumulatedCalibDigitContainer" << endmsg; + ATH_MSG_DEBUG( "Delay is changing to " << (*it)->delay() << " from " << m_delay << ": book a new LArAccumulatedCalibDigitContainer" ); m_delay=(*it)->delay(); } } CaloGain::CaloGain gain=(*it)->gain(); if (gain<0 || gain>CaloGain::LARNGAIN) { - log << MSG::ERROR << "Found not-matching gain number ("<< (int)gain <<")" << endmsg; + ATH_MSG_ERROR( "Found not-matching gain number ("<< (int)gain <<")" ); delete larAccuCalibDigitContainerHG; delete larAccuCalibDigitContainerMG; delete larAccuCalibDigitContainerLG; @@ -186,10 +178,10 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() if (gain==CaloGain::LARHIGHGAIN) { // trigger counter for each cell cellAccumulatedHG.m_ntrigger++; - log << MSG::DEBUG << "HG chid = " << chid << ", trigger = " << cellAccumulatedHG.m_ntrigger << ", DAC = " << (*it)->DAC() << endmsg; + ATH_MSG_DEBUG( "HG chid = " << chid << ", trigger = " << cellAccumulatedHG.m_ntrigger << ", DAC = " << (*it)->DAC() ); // at first trigger, initialize vectors unsigned int sizeSamples = (*it)->samples().size(); - log << MSG::DEBUG << "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples << endmsg; + ATH_MSG_DEBUG( "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples ); if(cellAccumulatedHG.m_ntrigger==1){ cellAccumulatedHG.m_sum.clear(); cellAccumulatedHG.m_sum2.clear(); @@ -200,8 +192,8 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() cellAccumulatedHG.m_sum[j] += (*it)->samples()[j]; cellAccumulatedHG.m_sum2[j] += (*it)->samples()[j]*(*it)->samples()[j]; } - log << MSG::DEBUG << "Sum = " << cellAccumulatedHG.m_sum[2] << endmsg; - log << MSG::DEBUG << "Sum2 = " << cellAccumulatedHG.m_sum2[2] << endmsg; + ATH_MSG_DEBUG( "Sum = " << cellAccumulatedHG.m_sum[2] ); + ATH_MSG_DEBUG( "Sum2 = " << cellAccumulatedHG.m_sum2[2] ); } // end High Gain /***************************** Medium Gain ***************************/ @@ -210,10 +202,10 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() if (gain==CaloGain::LARMEDIUMGAIN) { // trigger counter for each cell cellAccumulatedMG.m_ntrigger++; - log << MSG::DEBUG << "MG chid = " << chid << ", trigger = " << cellAccumulatedMG.m_ntrigger << ", DAC = " << (*it)->DAC() << endmsg; + ATH_MSG_DEBUG( "MG chid = " << chid << ", trigger = " << cellAccumulatedMG.m_ntrigger << ", DAC = " << (*it)->DAC() ); // at first trigger, initialize vectors unsigned int sizeSamples = (*it)->samples().size(); - log << MSG::DEBUG << "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples << endmsg; + ATH_MSG_DEBUG( "sizeSteps = " << sizeSteps << ", # of samples = " << sizeSamples ); if(cellAccumulatedMG.m_ntrigger==1){ cellAccumulatedMG.m_sum.clear(); cellAccumulatedMG.m_sum2.clear(); @@ -224,8 +216,8 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() cellAccumulatedMG.m_sum[j] += (*it)->samples()[j]; cellAccumulatedMG.m_sum2[j] += (*it)->samples()[j]*(*it)->samples()[j]; } - log << MSG::DEBUG << "Sum = " << cellAccumulatedMG.m_sum[2] << endmsg; - log << MSG::DEBUG << "Sum2 = " << cellAccumulatedMG.m_sum2[2] << endmsg; + ATH_MSG_DEBUG( "Sum = " << cellAccumulatedMG.m_sum[2] ); + ATH_MSG_DEBUG( "Sum2 = " << cellAccumulatedMG.m_sum2[2] ); } // end High Gain /***************************** Low Gain ***************************/ @@ -245,15 +237,15 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() cellAccumulatedLG.m_sum[j] += (*it)->samples()[j]; cellAccumulatedLG.m_sum2[j] += (*it)->samples()[j]*(*it)->samples()[j]; } - log << MSG::DEBUG << "Sum = " << cellAccumulatedLG.m_sum[2] << endmsg; - log << MSG::DEBUG << "Sum2 = " << cellAccumulatedLG.m_sum2[2] << endmsg; + ATH_MSG_DEBUG( "Sum = " << cellAccumulatedLG.m_sum[2] ); + ATH_MSG_DEBUG( "Sum2 = " << cellAccumulatedLG.m_sum2[2] ); } // end High Gain // when reached total number of triggers for this step, fill LArAccumulatedCalibDigit and reset number of triggers if( (cellAccumulatedHG.m_ntrigger+cellAccumulatedMG.m_ntrigger+cellAccumulatedLG.m_ntrigger)==nTriggerPerStep[febhash]){ - log << MSG::DEBUG << "filling LArAccumulatedCalibDigit " << endmsg; - log << MSG::DEBUG << "chid = " << chid << ", gain = " << gain << ", DAC = " << (*it)->DAC() << ", isPulsed = " << m_isPulsed << ", delay = " << m_delay << ", trigPerStep = " << nTriggerPerStep[febhash] << ", istep = " << iStepTrigger[febhash] << endmsg; + ATH_MSG_DEBUG( "filling LArAccumulatedCalibDigit " ); + ATH_MSG_DEBUG( "chid = " << chid << ", gain = " << gain << ", DAC = " << (*it)->DAC() << ", isPulsed = " << m_isPulsed << ", delay = " << m_delay << ", trigPerStep = " << nTriggerPerStep[febhash] << ", istep = " << iStepTrigger[febhash] ); iStepTrigger[febhash]++; unsigned int sizeSamples = (*it)->samples().size(); @@ -306,12 +298,12 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() sc = evtStore()->record(larAccuCalibDigitContainerHG,"HIGH"); if (sc!=StatusCode::SUCCESS) - log << MSG::WARNING << "Unable to record LArAccumulatedCalibDigitContainer with key HIGH from DetectorStore. " << endmsg; + ATH_MSG_WARNING( "Unable to record LArAccumulatedCalibDigitContainer with key HIGH from DetectorStore. " ); else - log << MSG::DEBUG << "Recorded succesfully LArAccumulatedCalibDigitContainer with key HIGH" << endmsg; + ATH_MSG_DEBUG( "Recorded succesfully LArAccumulatedCalibDigitContainer with key HIGH" ); sc = evtStore()->setConst(larAccuCalibDigitContainerHG); if (sc.isFailure()) { - log << MSG::ERROR << " Cannot lock LArAccumulatedCalibDigitContainerHG " << endmsg; + ATH_MSG_ERROR( " Cannot lock LArAccumulatedCalibDigitContainerHG " ); delete larAccuCalibDigitContainerMG; delete larAccuCalibDigitContainerLG; return(StatusCode::FAILURE); @@ -319,24 +311,24 @@ StatusCode LArCalibDigitsAccumulatorFreeGain::execute() sc = evtStore()->record(larAccuCalibDigitContainerMG,"MEDIUM"); if (sc!=StatusCode::SUCCESS) - log << MSG::WARNING << "Unable to record LArAccumulatedCalibDigitContainer with key MEDIUM from DetectorStore. " << endmsg; + ATH_MSG_WARNING( "Unable to record LArAccumulatedCalibDigitContainer with key MEDIUM from DetectorStore. " ); else - log << MSG::DEBUG << "Recorded succesfully LArAccumulatedCalibDigitContainer with key MEDIUM" << endmsg; + ATH_MSG_DEBUG( "Recorded succesfully LArAccumulatedCalibDigitContainer with key MEDIUM" ); sc = evtStore()->setConst(larAccuCalibDigitContainerMG); if (sc.isFailure()) { - log << MSG::ERROR << " Cannot lock LArAccumulatedCalibDigitContainerMG " << endmsg; + ATH_MSG_ERROR( " Cannot lock LArAccumulatedCalibDigitContainerMG " ); delete larAccuCalibDigitContainerLG; return(StatusCode::FAILURE); } sc = evtStore()->record(larAccuCalibDigitContainerLG,"LOW"); if (sc!=StatusCode::SUCCESS) - log << MSG::WARNING << "Unable to record LArAccumulatedCalibDigitContainer with key LOW from DetectorStore. " << endmsg; + ATH_MSG_WARNING( "Unable to record LArAccumulatedCalibDigitContainer with key LOW from DetectorStore. " ); else - log << MSG::DEBUG << "Recorded succesfully LArAccumulatedCalibDigitContainer with key LOW" << endmsg; + ATH_MSG_DEBUG( "Recorded succesfully LArAccumulatedCalibDigitContainer with key LOW" ); sc = evtStore()->setConst(larAccuCalibDigitContainerLG); if (sc.isFailure()) { - log << MSG::ERROR << " Cannot lock LArAccumulatedCalibDigitContainerLG " << endmsg; + ATH_MSG_ERROR( " Cannot lock LArAccumulatedCalibDigitContainerLG " ); return(StatusCode::FAILURE); } } // loop over key container diff --git a/LArCalorimeter/LArROD/src/LArCellBuilderDriver.cxx b/LArCalorimeter/LArROD/src/LArCellBuilderDriver.cxx old mode 100755 new mode 100644 index 88d4ec9c50e2327639da187e52cbec630cd46811..cdb7c4d305789425e52f7726db7e11fe1dc2f805 --- a/LArCalorimeter/LArROD/src/LArCellBuilderDriver.cxx +++ b/LArCalorimeter/LArROD/src/LArCellBuilderDriver.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -30,9 +30,7 @@ LArCellBuilderDriver::LArCellBuilderDriver( m_buildTools(), m_adc2eTools(), m_pedestalTools(), - m_oldPedestal(0.), - m_larCablingSvc("LArCablingService") - //m_roiMap("LArRoI_Map") + m_oldPedestal(0.) { //m_useIntercept={false,false,false,false}; declareProperty("LArRawChannelContainerName", m_ChannelContainerName); @@ -61,17 +59,6 @@ StatusCode LArCellBuilderDriver::initialize() ATH_MSG_ERROR( "Could not get LArOnlineID helper !" ); return StatusCode::FAILURE; } - // if (m_roiMap.retrieve().isFailure()) -// { -// ATH_MSG_ERROR( "Unable to find tool LArRoI_Map" ); -// return StatusCode::FAILURE; -// } - - if(m_larCablingSvc.retrieve().isFailure()) - { - ATH_MSG_ERROR( "Could not retrieve LArCablingService Tool" ); - return StatusCode::FAILURE; - } // *** //m_larRawOrdering.setMap(&(*m_roiMap)); @@ -164,7 +151,7 @@ bool LArCellBuilderDriver::buildLArCell(const LArDigit* digit, m_params->curr_chid=digit->channelID(); m_params->curr_gain=digit->gain(); - if(!m_buildDiscChannel && !m_larCablingSvc->isOnlineConnected(m_params->curr_chid)) + if(!m_buildDiscChannel) return false; m_params->curr_sample0 = digit->samples()[0]; diff --git a/LArCalorimeter/LArROD/src/LArDigitsAccumulator.cxx b/LArCalorimeter/LArROD/src/LArDigitsAccumulator.cxx index c58db57485e300ad6cac71fc142a81a93e6b6a98..9a885e31e2a77659377dd20ef3e04566ccccd66d 100644 --- a/LArCalorimeter/LArROD/src/LArDigitsAccumulator.cxx +++ b/LArCalorimeter/LArROD/src/LArDigitsAccumulator.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArDigitsAccumulator.h" @@ -10,7 +10,6 @@ LArDigitsAccumulator::LArDigitsAccumulator (const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), - m_larCablingSvc("LArCablingService"), m_onlineHelper(0), m_AccuDigitContainerName("LArAccumulatedDigits"), m_NtriggersPerStep(100), @@ -36,18 +35,6 @@ StatusCode LArDigitsAccumulator::initialize(){ return StatusCode::FAILURE; } - // retrieve cabling service - IToolSvc* toolSvc; - sc=service( "ToolSvc",toolSvc ); - if (sc.isFailure()) { - log << MSG::ERROR << "Unable to retrieve ToolSvc" << endmsg; - return StatusCode::FAILURE; - } - - if (m_larCablingSvc.retrieve().isFailure()) { - log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; - return StatusCode::FAILURE; - } m_Accumulated.resize(m_onlineHelper->channelHashMax()); diff --git a/LArCalorimeter/LArROD/src/LArRawChannelBuilder.cxx b/LArCalorimeter/LArROD/src/LArRawChannelBuilder.cxx old mode 100755 new mode 100644 index ced2b06c19294fe13698ca8b51984557c75b2ccc..44a18b9785457ef0d371415b0734914e60738db0 --- a/LArCalorimeter/LArROD/src/LArRawChannelBuilder.cxx +++ b/LArCalorimeter/LArROD/src/LArRawChannelBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArRawChannelBuilder.h" @@ -58,7 +58,6 @@ LArRawChannelBuilder::LArRawChannelBuilder (const std::string& name, ISvcLocator m_SamplingPeriodeUpperLimit(0), m_SamplingPeriodeLowerLimit(0), m_emId(NULL), - m_larCablingSvc("LArCablingService"), m_firstSample(0) , m_pedestalKey("LArPedestal") , m_shapesKey("LArShape") @@ -105,13 +104,7 @@ StatusCode LArRawChannelBuilder::initialize(){ log << MSG::ERROR << "Could not get LArOnlineID helper !" << endmsg; return StatusCode::FAILURE; } - /* - sc = m_roiMap.retrieve(); - if (sc.isFailure()) { - log << MSG::ERROR << "Unable to find tool LArRoI_Map" << endmsg; - return StatusCode::FAILURE; - } - */ + if (m_useOFCTool) { sc = m_OFCTool.retrieve(); if (sc.isFailure()) { @@ -126,8 +119,6 @@ StatusCode LArRawChannelBuilder::initialize(){ return StatusCode::FAILURE; } - // *** - const CaloIdManager *caloIdMgr=CaloIdManager::instance() ; m_emId=caloIdMgr->getEM_ID(); if (!m_emId) { @@ -135,14 +126,7 @@ StatusCode LArRawChannelBuilder::initialize(){ return StatusCode::FAILURE; } - // translate offline ID into online ID - sc = m_larCablingSvc.retrieve(); - if(sc.isFailure()){ - log << MSG::ERROR << "Could not retrieve LArCablingService Tool" << endmsg; - return StatusCode::FAILURE; - } - - // *** + ATH_CHECK( m_cablingKey.initialize() ); if (m_hvcorr) { sc = m_hvCorrTool.retrieve(); @@ -153,8 +137,6 @@ StatusCode LArRawChannelBuilder::initialize(){ } - //m_larRawOrdering.setMap(&(*m_roiMap)); - //Set counters for errors and warnings to zero m_noEnergy = 0; // Number of events with at least completly failed channel m_noTime = 0; // Number of events with at least one channel without time info @@ -231,6 +213,13 @@ StatusCode LArRawChannelBuilder::execute() const ILArShape* larShape=NULL; //Retrieve Digit Container + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + sc=evtStore()->retrieve(digitContainer,m_DataLocation); if(sc.isFailure()) { log << MSG::ERROR << "Can't retrieve LArDigitContainer with key " <<m_DataLocation << "from StoreGate." << endmsg; @@ -331,9 +320,9 @@ StatusCode LArRawChannelBuilder::execute() if (debugPrint) { Identifier id ; try { - id = m_larCablingSvc->cnvToIdentifier(chid); + id = cabling->cnvToIdentifier(chid); } catch ( LArID_Exception & except ) { - log << MSG::DEBUG << "A larCablingSvc exception was caught for channel 0x!" + log << MSG::DEBUG << "A Cabling exception was caught for channel 0x!" << MSG::hex << chid.get_compact() << MSG::dec << endmsg; continue ; } @@ -545,17 +534,6 @@ StatusCode LArRawChannelBuilder::execute() if (m_hvcorr) { // HV tool float hvCorr = m_hvCorrTool->Scale(chid); -// debug printout - // const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); - // if (m_emId->is_lar_em(id) && abs(m_emId->barrel_ec(id))==1 && - // m_emId->sampling(id)>0) { - // layer = m_emId->sampling(id); - // eta = m_emId->eta(id); - // phi = m_emId->phi(id); - // region = m_emId->region(id); - // std::cout << "side,sampling,region,eta,phi,corr " << m_emId->barrel_ec(id) << " " << layer << " " << region << " " - // << eta << " " << phi << " " << hvCorr << std::endl; - // } energy = energy*hvCorr; } @@ -601,13 +579,13 @@ StatusCode LArRawChannelBuilder::execute() if(nSamples == 4 && m_firstSample == 0 ){ Identifier id ; try { - id = m_larCablingSvc->cnvToIdentifier(chid); + id = cabling->cnvToIdentifier(chid); if(m_emId->is_lar_hec(id)) { ihecshift=1; log << MSG::DEBUG << "Setting firstSample to 1 for HEC channel "<< chid.get_compact() << endmsg; } } catch ( LArID_Exception & except ) { - log << MSG::DEBUG << "A larCablingSvc exception was caught for channel 0x!" + log << MSG::DEBUG << "A Cabling exception was caught for channel 0x!" << MSG::hex << chid.get_compact() << MSG::dec << endmsg; } } diff --git a/LArCalorimeter/LArROD/src/LArRawChannelBuilderDriver.cxx b/LArCalorimeter/LArROD/src/LArRawChannelBuilderDriver.cxx old mode 100755 new mode 100644 index 799d74b0150c7156960514a5d3f73c5f69ea8181..a83249c66175444184f1a5b9302f315712285211 --- a/LArCalorimeter/LArROD/src/LArRawChannelBuilderDriver.cxx +++ b/LArCalorimeter/LArROD/src/LArRawChannelBuilderDriver.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -21,9 +21,7 @@ LArRawChannelBuilderDriver::LArRawChannelBuilderDriver(const std::string& name, m_buildTools(this), m_adc2eTools(this), m_pedestalTools(this), - m_oldPedestal(0), - m_larCablingSvc("LArCablingService") - //m_roiMap("LArRoI_Map") + m_oldPedestal(0) { declareProperty("LArRawChannelContainerName", m_ChannelContainerName); declareProperty("DataLocation", m_DataLocation ); @@ -47,11 +45,8 @@ StatusCode LArRawChannelBuilderDriver::initialize() } - if(m_larCablingSvc.retrieve().isFailure()){ - msg(MSG::ERROR) << "Could not retrieve LArCablingService Tool" << endmsg; - return StatusCode::FAILURE; - } - + ATH_CHECK( m_cablingKey.initialize() ); + if ( m_buildTools.retrieve().isFailure() ){ msg(MSG::ERROR) << "Unable to find Builder Tools " << m_buildTools << endmsg; return StatusCode::FAILURE; @@ -132,6 +127,13 @@ StatusCode LArRawChannelBuilderDriver::execute() return StatusCode::SUCCESS; } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + // declare all variables first ... builderToolVector::iterator itStart = m_buildTools.begin(); builderToolVector::iterator itEnd = m_buildTools.end(); @@ -157,7 +159,7 @@ StatusCode LArRawChannelBuilderDriver::execute() m_params->curr_gain = CaloGain::UNKNOWNGAIN; } - if(!m_buildDiscChannel && !m_larCablingSvc->isOnlineConnected(m_params->curr_chid)) + if(!m_buildDiscChannel && !cabling->isOnlineConnected(m_params->curr_chid)) continue; m_params->curr_sample0 = (*cont_it)->samples()[0]; diff --git a/LArCalorimeter/LArROD/src/LArRawChannelBuilderToolBaseClass.cxx b/LArCalorimeter/LArROD/src/LArRawChannelBuilderToolBaseClass.cxx old mode 100755 new mode 100644 index bc32c35405cea994984906590569b0a92277b083..1ac36c70d17e278de3f2657c2939f1819e8f949a --- a/LArCalorimeter/LArROD/src/LArRawChannelBuilderToolBaseClass.cxx +++ b/LArCalorimeter/LArROD/src/LArRawChannelBuilderToolBaseClass.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARROD_LARRAWCHANNELBUILDERTOOLBASECLASS @@ -21,8 +21,7 @@ LArRawChannelBuilderToolBaseClass::LArRawChannelBuilderToolBaseClass(const std:: m_parent(NULL), m_helper(NULL), m_detStore(NULL), - m_larCablingSvc(0) - ,m_isSC(false) + m_isSC(false) { declareProperty("IsSuperCell", m_isSC = false); } @@ -95,19 +94,27 @@ LArRawChannelBuilderToolBaseClass::finalEventHidden() Identifier LArRawChannelBuilderToolBaseClass::currentID( void ) { - if(m_parent->curr_id==0) - { + const LArOnOffIdMapping *cabling=nullptr; + if(m_isSC) { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKeySC}; + cabling = *cablingHdl; + } else { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + cabling = *cablingHdl; + } + if(!cabling) { + m_parent->curr_id=0; + } else { + if(m_parent->curr_id==0) { try { - m_parent->curr_id = m_larCablingSvc->cnvToIdentifier(m_parent->curr_chid); + m_parent->curr_id = cabling->cnvToIdentifier(m_parent->curr_chid); } catch ( LArID_Exception & except ) { - MsgStream log(msgSvc(), name()); - log << MSG::INFO - << "A larCablingSvc exception was caught for channel 0x!" - << MSG::hex << m_parent->curr_chid.get_compact() << MSG::dec << endmsg; - // log << MSG::INFO<<m_onlineHelper->print_to_string(curr_chid)<<endmsg; + ATH_MSG_INFO("Cabling exception was caught for channel 0x!" + << MSG::hex << m_parent->curr_chid.get_compact() << MSG::dec ); m_parent->curr_id=0; } } + } return m_parent->curr_id; } diff --git a/LArCalorimeter/LArROD/src/LArRawChannelSimpleBuilder.cxx b/LArCalorimeter/LArROD/src/LArRawChannelSimpleBuilder.cxx old mode 100755 new mode 100644 index 18ac193e8e5f736a3f2491109f24dc1bf0a53ee0..217bdab9c5f1b6c7cde25585ccd084a005d53bc5 --- a/LArCalorimeter/LArROD/src/LArRawChannelSimpleBuilder.cxx +++ b/LArCalorimeter/LArROD/src/LArRawChannelSimpleBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/LArRawChannelSimpleBuilder.h" @@ -20,7 +20,6 @@ using CLHEP::MeV; LArRawChannelSimpleBuilder::LArRawChannelSimpleBuilder (const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), // m_roiMap("LArRoI_Map"), - m_larCablingSvc("LArCablingService"), m_emId(0), m_fcalId(0), m_hecId(0), @@ -106,16 +105,14 @@ StatusCode LArRawChannelSimpleBuilder::initialize(){ m_fcalId=caloIdMgr->getFCAL_ID(); m_hecId=caloIdMgr->getHEC_ID(); - if (m_larCablingSvc.retrieve().isFailure()) { - log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK(m_cablingKey.initialize()); sc = detStore()->retrieve(m_onlineHelper, "LArOnlineID"); if (sc.isFailure()) { log << MSG::ERROR << "Could not get LArOnlineID helper !" << endmsg; return StatusCode::FAILURE; } + return StatusCode::SUCCESS; } @@ -169,6 +166,13 @@ StatusCode LArRawChannelSimpleBuilder::execute() { } } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + //loop twice over the digits. In the first pass the best window is //found for the averaged signal. In the second pass the full raw //channel is created and the averaging in the window found in the @@ -249,7 +253,7 @@ StatusCode LArRawChannelSimpleBuilder::execute() { unsigned int nAverage = 1; float myScale = 1; try { - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); if (m_fcalId->is_lar_fcal(id)) { isFCAL = true; nMin = nMinFCAL; @@ -407,7 +411,7 @@ StatusCode LArRawChannelSimpleBuilder::execute() { if( m_peakParabolaTool) { int layer = 0; try { - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); MSG::hex(log) << MSG::DEBUG << " id = " << id << endmsg; if (m_emId->is_em_barrel(id)) { layer= m_emId->sampling(id); @@ -526,7 +530,7 @@ StatusCode LArRawChannelSimpleBuilder::execute() { // << " FebID / chid / channel = " << FebID << " / " << chid << " / " << channel << endmsg; try { - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); MSG::hex(log) << MSG::DEBUG << " id = " << id << endmsg; diff --git a/LArCalorimeter/LArROD/src/LArSuperCellBuilderDriver.cxx b/LArCalorimeter/LArROD/src/LArSuperCellBuilderDriver.cxx old mode 100755 new mode 100644 index c9b57dffb6614924fd09d230911306f4483a662f..fdfd494cdc1a43deb2a867585fb2a0c554b9d277 --- a/LArCalorimeter/LArROD/src/LArSuperCellBuilderDriver.cxx +++ b/LArCalorimeter/LArROD/src/LArSuperCellBuilderDriver.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -14,7 +14,6 @@ #include "LArRawEvent/LArRawChannelContainer.h" #include "CaloIdentifier/CaloIdManager.h" #include "Identifier/Identifier.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloEvent/CaloCellContainer.h" #include "CaloIdentifier/CaloCell_SuperCell_ID.h" @@ -40,7 +39,6 @@ LArSuperCellBuilderDriver::LArSuperCellBuilderDriver (const std::string& name, m_adc2eTools(), m_pedestalTools(), m_oldPedestal(0.), - m_larCablingSvc("LArSuperCellCablingTool"), m_counter(0) { declareProperty("LArRawChannelContainerName", m_ChannelContainerName); @@ -70,18 +68,9 @@ StatusCode LArSuperCellBuilderDriver::initialize() ATH_MSG_ERROR( "Could not get LArOnlineID helper !" ); return StatusCode::FAILURE; } - // if (m_roiMap.retrieve().isFailure()) -// { -// ATH_MSG_ERROR( "Unable to find tool LArRoI_Map" ); -// return StatusCode::FAILURE; -// } - - if(m_larCablingSvc.retrieve().isFailure()) - { - ATH_MSG_ERROR( "Could not retrieve LArCablingService Tool" ); - return StatusCode::FAILURE; - } - + + ATH_CHECK( m_cablingKeySC.initialize() ); + // *** //m_larRawOrdering.setMap(&(*m_roiMap)); @@ -170,10 +159,14 @@ StatusCode LArSuperCellBuilderDriver::execute() { return StatusCode::SUCCESS; } - ToolHandle<LArSuperCellCablingTool> cabling; const CaloSuperCellDetDescrManager* sem_mgr; - CHECK( cabling.retrieve() ); - CHECK( detStore()->retrieve (sem_mgr, "CaloSuperCellMgr") ); + ATH_CHECK( detStore()->retrieve (sem_mgr, "CaloSuperCellMgr") ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdlSC{m_cablingKeySC}; + const LArOnOffIdMapping* cabling=*cablingHdlSC; + if(!cabling) { + ATH_MSG_ERROR( "Do not have SC cabling from key" << m_cablingKeySC.key() ); + return StatusCode::FAILURE; + } initEventTools(); @@ -185,7 +178,7 @@ StatusCode LArSuperCellBuilderDriver::execute() { int time=0; int prov=0; CaloGain::CaloGain gain; - if ( buildLArCell( (*cont_it), energy, time, gain, prov, &msg() ) ){ + if ( cabling->isOnlineConnected((*cont_it)->channelID()) && buildLArCell( (*cont_it), energy, time, gain, prov, &msg() ) ){ ii++; Identifier id = cabling->cnvToIdentifier((*cont_it)->channelID()); IdentifierHash idhash = sem_mgr->getCaloCell_ID()->calo_cell_hash(id); @@ -225,7 +218,7 @@ bool LArSuperCellBuilderDriver::buildLArCell(const LArDigit* digit, m_params->curr_chid=digit->channelID(); m_params->curr_gain=digit->gain(); - if(!m_buildDiscChannel && !m_larCablingSvc->isOnlineConnected(m_params->curr_chid)){ + if(!m_buildDiscChannel ){ m_counter++; return false; } diff --git a/LArCalorimeter/LArROD/src/ReadLArDigits.cxx b/LArCalorimeter/LArROD/src/ReadLArDigits.cxx old mode 100755 new mode 100644 index a456993b6bd1db306c21107bd6bb59373b510631..6fdeb225a0d49ffff9c9e2f2dbf0f1c5df48acc8 --- a/LArCalorimeter/LArROD/src/ReadLArDigits.cxx +++ b/LArCalorimeter/LArROD/src/ReadLArDigits.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArROD/ReadLArDigits.h" @@ -14,7 +14,6 @@ ReadLArDigits::SortDigits::SortDigits(const LArOnlineID* onlineHelper) } ReadLArDigits::ReadLArDigits(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), - m_larCablingSvc("LArCablingService"), m_emId(NULL), m_onlineHelper(NULL), m_ntuplePtr(NULL) @@ -38,10 +37,7 @@ StatusCode ReadLArDigits::initialize() const CaloIdManager *caloIdMgr=CaloIdManager::instance() ; m_emId=caloIdMgr->getEM_ID(); - if (m_larCablingSvc.retrieve().isFailure()) { - log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK(m_cablingKey.initialize()); StatusCode sc = detStore()->retrieve(m_onlineHelper, "LArOnlineID"); if (sc.isFailure()) { @@ -166,7 +162,12 @@ StatusCode ReadLArDigits::execute() return StatusCode::FAILURE; } - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } if (m_outfile.is_open()) { SortDigits sortDigits(m_onlineHelper); std::sort(larDigitCont->begin(),larDigitCont->end(),sortDigits); @@ -184,7 +185,7 @@ StatusCode ReadLArDigits::execute() const std::vector<short>& vSamples=(*it)->samples(); m_cellIndex++; try { - const Identifier id=m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id=cabling->cnvToIdentifier(chid); if (m_emId->is_lar_em(id)) {m_eta[cellCounter]=m_emId->eta(id); m_phi[cellCounter]=m_emId->phi(id); diff --git a/LArCalorimeter/LArROD/src/ReadLArRaw.cxx b/LArCalorimeter/LArROD/src/ReadLArRaw.cxx old mode 100755 new mode 100644 index b7bed43495c1b35ff0871f4450c696b0e1da0e7c..b3cab9bdff4ce0bb474767a6ed592502d938dc3e --- a/LArCalorimeter/LArROD/src/ReadLArRaw.cxx +++ b/LArCalorimeter/LArROD/src/ReadLArRaw.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /* @@ -22,7 +22,6 @@ #include "GaudiKernel/MsgStream.h" #include "StoreGate/StoreGate.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArID.h" #include "CaloIdentifier/LArID_Exception.h" #include "LArIdentifier/LArOnlineID.h" @@ -51,7 +50,6 @@ using namespace std ; ReadLArRaw::ReadLArRaw(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), m_ChannelContainerName("LArRawChannelContainer"), - m_cablingService("LArCablingService"), m_onlineID(0), m_larem_id(0) { @@ -67,13 +65,8 @@ StatusCode ReadLArRaw::initialize(){ MsgStream log(msgSvc(), name()); log << MSG::INFO << "in initialize()" << endmsg; - if (m_cablingService.retrieve().isFailure()) { - log << MSG::FATAL - << " CablingService not found " - << endmsg; - return StatusCode::FAILURE; - } - + ATH_CHECK(m_cablingKey.initialize()); + StoreGateSvc* detStore; if (service("DetectorStore", detStore).isFailure()) { log << MSG::ERROR @@ -125,12 +118,19 @@ StatusCode ReadLArRaw::execute() { int emax= 0; HWIdentifier maxId; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + LArRawChannelContainer::const_iterator it1 = LArRaw->begin(); LArRawChannelContainer::const_iterator it2 = LArRaw->end(); for(; it1!=it2; ++it1){ HWIdentifier ch_id=it1->identify(); if (m_outFile.is_open()) { - if(m_cablingService->isOnlineConnected(ch_id)) + if(cabling->isOnlineConnected(ch_id)) m_outFile << "LArRawChannelDump: 0x" << std::hex << ch_id.get_compact() << std::dec << " E=" << it1->energy() << " t=" << it1->time() << " g=" << (int)it1->gain() << " Q=" << it1->quality() << std::endl; } diff --git a/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.cxx b/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.cxx index 0cdf9f66e34aa5d10a5e87042fe39a42cd0fa94a..9652924de68cee96628aa335fb85e286fcb86228 100644 --- a/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.cxx +++ b/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.cxx @@ -16,7 +16,6 @@ #include "TTree.h" #include "GaudiKernel/ITHistSvc.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "LArRawEvent/LArDigitContainer.h" //needed for linker ... @@ -82,7 +81,7 @@ StatusCode SuperCellVsCaloCellTestAlg::initialize() { ServiceHandle<ITHistSvc> histSvc("THistSvc",name()); CHECK( histSvc->regTree(TString::Format("/%s/debug",m_stream.c_str()).Data(),m_tree) ); - + ATH_CHECK( m_cablingKey.initialize() ); return StatusCode::SUCCESS; @@ -125,8 +124,12 @@ StatusCode SuperCellVsCaloCellTestAlg::execute() { const CaloCellContainer* tscells=0;if(!m_tscKey.empty()) CHECK( evtStore()->retrieve(tscells,m_tscKey) ); - - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have SC mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } //iterate over supercells, and build up a histogram of the resolution for(auto scell : *scells) { @@ -166,8 +169,7 @@ StatusCode SuperCellVsCaloCellTestAlg::execute() { if( (tscellEt>1. && scellEt/tscellEt<0.25) || (scellEt>1. && tscellEt/scellEt<0.25) ) { m_eventNumber = getContext().eventID().event_number(); - ToolHandle<LArSuperCellCablingTool> larCablingTool; - HWIdentifier hwid = larCablingTool->createSignalChannelID(scell->ID()); + HWIdentifier hwid = cabling->createSignalChannelID(scell->ID()); m_treeChannel = hwid.get_identifier32().get_compact(); m_treeSampling = samplingEnum; m_treeEta = scell->caloDDE()->eta(); diff --git a/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.h b/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.h index 8e71c5b6b2fab399d8d8d15b7d84c755b4b6d3ab..23fdf21030b84069840ed136551c65e78b1ab09e 100644 --- a/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.h +++ b/LArCalorimeter/LArROD/src/tests/SuperCellVsCaloCellTestAlg.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARROD_SUPERCELLVSCALOCELLTESTALG_H @@ -13,6 +13,8 @@ #include "CaloDetDescr/ICaloSuperCellIDTool.h" #include "CaloIdentifier/CaloCell_ID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "GaudiKernel/ToolHandle.h" @@ -35,7 +37,7 @@ class SuperCellVsCaloCellTestAlg: public ::AthAlgorithm { private: - + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of LArOnOffIdMapping object"}; ToolHandle<ICaloSuperCellIDTool> m_sc2ccMappingTool; const CaloCell_ID* m_ccIdHelper; diff --git a/LArCalorimeter/LArRawConditions/CMakeLists.txt b/LArCalorimeter/LArRawConditions/CMakeLists.txt index 036ee8a152aa66f28d79c0824d3a61f0a94f82be..2f0f5844a764d1531e77df9257ccc4c6356e338b 100644 --- a/LArCalorimeter/LArRawConditions/CMakeLists.txt +++ b/LArCalorimeter/LArRawConditions/CMakeLists.txt @@ -18,6 +18,7 @@ atlas_depends_on_subdirs( PUBLIC LArCalorimeter/LArElecCalib LArCalorimeter/LArIdentifier LArCalorimeter/LArCabling + LArCalorimeter/LArRecConditions PRIVATE LArCalorimeter/LArTools ) @@ -29,14 +30,14 @@ atlas_add_library( LArRawConditions src/*.cxx PUBLIC_HEADERS LArRawConditions PRIVATE_INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} - LINK_LIBRARIES CaloIdentifier AthenaKernel AthContainers SGTools AthenaPoolUtilities Identifier GaudiKernel LArIdentifier StoreGateLib SGtests LArToolsLib LArCablingLib + LINK_LIBRARIES CaloIdentifier AthenaKernel AthContainers SGTools AthenaPoolUtilities Identifier GaudiKernel LArIdentifier StoreGateLib SGtests LArToolsLib LArCablingLib LArRecConditions PRIVATE_LINK_LIBRARIES ${ROOT_LIBRARIES} ) atlas_add_dictionary( LArRawConditions1Dict LArRawConditions/LArRawConditionsDict1.h LArRawConditions/selection1.xml INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} - LINK_LIBRARIES ${ROOT_LIBRARIES} CaloIdentifier AthenaKernel AthContainers SGTools StoreGateLib SGtests AthenaPoolUtilities Identifier GaudiKernel LArIdentifier LArToolsLib LArCablingLib LArRawConditions ) + LINK_LIBRARIES ${ROOT_LIBRARIES} CaloIdentifier AthenaKernel AthContainers SGTools StoreGateLib SGtests AthenaPoolUtilities Identifier GaudiKernel LArIdentifier LArToolsLib LArCablingLib LArRawConditions LArRecConditions) atlas_add_dictionary( LArRawConditions2Dict LArRawConditions/LArRawConditionsDict2.h diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArAutoCorrTotal.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArAutoCorrTotal.h index b999fc63f683256fd3e619db46f7a6b81e9e4d96..59ef79510f43ec27aaf8d24ae4a3ce0c4c014423 100644 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArAutoCorrTotal.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArAutoCorrTotal.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARAUTOCORRTOTAL @@ -42,7 +42,7 @@ public: float Nminbias) const; const std::vector<double> autoCorrTotal(const HWIdentifier &hwid, int gain, float Nminbias) const; - const std::vector<double> autoCorrTotal(const Identifier &offid, int gain, + const std::vector<double> autoCorrTotal(const Identifier &id, int gain, float Nminbias) const; const std::vector<double> computeRMS(const std::vector<float> terms, @@ -52,7 +52,7 @@ public: float Nminbias) const; const std::vector<double> samplRMS(const HWIdentifier &hwid, int gain, float Nminbias) const; - const std::vector<double> samplRMS(const Identifier &offid, int gain, + const std::vector<double> samplRMS(const Identifier &id, int gain, float Nminbias) const; private: diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliPulseParamsVsCalib.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliPulseParamsVsCalib.h deleted file mode 100755 index 4f58c375c6add24692307c7d6004e0cd8293aeba..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliPulseParamsVsCalib.h +++ /dev/null @@ -1,74 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef LARRAWCONDITIONS_LARCALIPULSEPARAMSVSCALIB_H -#define LARRAWCONDITIONS_LARCALIPULSEPARAMSVSCALIB_H - -#include "LArElecCalib/ILArCaliPulseParams.h" -#include "LArRawConditions/LArCaliPulseParamsP.h" -#include "LArRawConditions/LArConditionsVsCalib.h" - -/** This class implements the ILArCaliPulseParams interface - * - * @author M. Fanti - * @version 0-0-1 , 7/02/06 - * - * History: - * - - */ - -class LArCaliPulseParamsVsCalib: public ILArCaliPulseParams, - public LArConditionsVsCalib<LArCaliPulseParamsP> -{ - - public: - - LArCaliPulseParamsVsCalib() ; - ~LArCaliPulseParamsVsCalib() ; - - // gain parameter not used! it doesn't make sense for calibration channels - // it is accepted as parameter for compatibility with other interfaces - // but can be omitted - - // retrieving CaliPulseParams using online ID - virtual const float& Tcal (const HWIdentifier& ChID, int /* gain */) const - { return (get(ChID)).m_Tcal ; } ; - virtual const float& Fstep(const HWIdentifier& ChID, int /* gain */) const - { return (get(ChID)).m_Fstep ; } ; - virtual const float& Offset(const HWIdentifier& ChID, int /* gain */) const - { return (get(ChID)).m_Offset ; } ; - virtual const float& dTimeCal(const HWIdentifier& ChID, int /* gain */) const - { return (get(ChID)).m_dTimeCal ; } ; - virtual const short& nCB(const HWIdentifier& ChID, int /* gain */) const - { return (get(ChID)).m_nCB ; } ; - - // retrieving CaliPulseParams using offline ID - virtual const float& Tcal (const Identifier& CellID, int /* gain */) const - { return (get(CellID)).m_Tcal ; } ; - virtual const float& Fstep(const Identifier& CellID, int /* gain */) const - { return (get(CellID)).m_Fstep ; } ; - virtual const float& Offset(const Identifier& CellID, int /* gain */) const - { return (get(CellID)).m_Offset ; } ; - virtual const float& dTimeCal(const Identifier& CellID, int /* gain */) const - { return (get(CellID)).m_dTimeCal ; } ; - const short& nCB(const Identifier& CellID, int /* gain */) const - { return (get(CellID)).m_nCB ; } ; - - // set method filling the data members individually - void set(const HWIdentifier& ChID, float tcal, float fstep); - void set(const HWIdentifier& ChID, float tcal, float fstep, float offset, float dtcal); - void set(const HWIdentifier& ChID, float tcal, float fstep, float offset, float dtcal, short ncb); - void set(const HWIdentifier& ChID, int /* gain */, float tcal, float fstep) - { set(ChID,tcal,fstep) ; } ; - void set(const HWIdentifier& ChID, int /* gain */, float tcal, float fstep, float offset, float dtcal) - { set(ChID,tcal,fstep,offset,dtcal) ; } ; - void set(const HWIdentifier& ChID, int /* gain */, float tcal, float fstep, float offset, float dtcal, short ncb) - { set(ChID,tcal,fstep,offset,dtcal,ncb) ; } ; - -} ; - -CLASS_DEF( LArCaliPulseParamsVsCalib,115714668,1) - -#endif - diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliWaveContainer.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliWaveContainer.h old mode 100755 new mode 100644 index 5b46a873adb3ef684f70f86889e979d1cb67f4d8..d605e73e27fd0cd56518d551ae319a40a88a6820 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliWaveContainer.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArCaliWaveContainer.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /* author : Marcello Fanti, Sandrine Laplace, Walter Lampl */ @@ -55,6 +55,7 @@ private: }; CLASS_DEF(LArCaliWaveContainer,1262967440,0) +CLASS_DEF(CondCont<LArCaliWaveContainer>,1202133600,0) // inline methods diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.h deleted file mode 100755 index b118264c207cc86b8be54b10b94761772972f515..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.h +++ /dev/null @@ -1,90 +0,0 @@ -//Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - - -#ifndef LARRAWCONDITIONS_LARCONDITIONSVSCALIB_H -#define LARRAWCONDITIONS_LARCONDITIONSVSCALIB_H - -#include "LArRawConditions/LArConditionsVsCalibBase.h" -#include "LArRawConditions/LArConditionsVsCalibDB.h" - -/** Template class for condition objects organized vs calibration line - * - * @author M. Fanti - * @version 0-0-1 , 7/02/06 - * - * History: - * - - */ - -template < class T > -class LArConditionsVsCalib: - public LArConditionsVsCalibBase, - public LArConditionsVsCalibDB<T> -{ - -public: - - // static const unsigned nChannelsBoard = 128 ; // channels per calibration board - // typedef typename LArConditionsVsCalibDB<T>::nChannelsBoard nChannelsBoard ; - -// typedef unsigned CB_Id ; // this refers to Calib Board [feedthrough,slot] -// typedef std::vector<T> T_vector ; // vector of 128 T's -// typedef typename std::pair<CB_Id,T_vector> CB_Tvec_pair ; -// typedef typename std::vector<CB_Tvec_pair> CB_vector ; -// typedef typename CB_vector::const_iterator Const_CB_It ; -// typedef typename CB_vector::iterator CB_It ; - - typedef typename LArConditionsVsCalibDB<T>::CB_Id CB_Id ; - typedef typename LArConditionsVsCalibDB<T>::T_vector T_vector ; - typedef typename LArConditionsVsCalibDB<T>::CB_Tvec_pair CB_Tvec_pair ; - typedef typename LArConditionsVsCalibDB<T>::CB_vector CB_vector ; - typedef typename LArConditionsVsCalibDB<T>::Const_CB_It Const_CB_It ; - typedef typename LArConditionsVsCalibDB<T>::CB_It CB_It ; - - LArConditionsVsCalib() {} ; - virtual ~LArConditionsVsCalib() {} ; - - // retrieving conditions object using online ID (ChID is read-out or calibration channel) - virtual const T& get(const HWIdentifier& ChID) const ; - - // retrieving conditions object using offline ID - virtual const T& get(const Identifier& CellID) const ; - - // set method filling the data payload - void setPdata(const HWIdentifier& ChID, const T& payload) ; - void setPdata(CB_Id id, const T_vector& payload_v) ; - -protected: - - /// Access to standard empty value - T& empty() const; - -// // bool operator< (const CB_Tvec_pair& x, const CB_Tvec_pair& y) -// // { return (x.first < y.first); } ; - -// class PairSort { -// public: -// bool operator () (const CB_Tvec_pair& x, const CB_Tvec_pair& y) -// { return (x.first < y.first); } -// bool operator () (const CB_Tvec_pair& x, const unsigned int& id) -// { return (x.first < id); } -// bool operator () (const unsigned int& id, const CB_Tvec_pair& y) -// { return (id < y.first); } -// }; - - - -} ; - -#ifndef __REFLEX__ -#include "LArConditionsVsCalib.icc" -#endif - - -#endif - - diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.icc b/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.icc deleted file mode 100755 index b26cb2766bd00dbaf248b1d32c4481a1638c32f1..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalib.icc +++ /dev/null @@ -1,150 +0,0 @@ -//Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - - -/** Template class for condition objects organized vs calibration line - * - * @author M. Fanti - * @version 0-0-1 , 7/02/06 - * - * History: - * - - */ - -#include "AthenaKernel/getMessageSvc.h" -#include <iostream> - -//class LArCablingService ; - - -// return empty payload reference -// template < class T > -// inline T& LArConditionsVsCalib<T>::empty() const { -// static T dummy ; -// return (dummy) ; -// } - -// // calib board query/navigation: - -// template < class T > -// inline typename LArConditionsVsCalib<T>::Const_CB_It -// LArConditionsVsCalib<T>::find(CB_Id id) const { -// Const_CB_It result = std::lower_bound(m_cb_vect.begin(), -// m_cb_vect.end(), -// id, PairSort()) ; -// if ( result != m_cb_vect.end() && (*result).first == id ) return (result) ; -// return m_cb_vect.end() ; -// } - -// template < class T > -// inline typename LArConditionsVsCalib<T>::Const_CB_It -// LArConditionsVsCalib<T>::begin() const { -// return m_cb_vect.begin() ; -// } -// template < class T > -// inline typename LArConditionsVsCalib<T>::Const_CB_It -// LArConditionsVsCalib<T>::end() const { -// return m_cb_vect.end() ; -// } -// template < class T > -// inline size_t LArConditionsVsCalib<T>::size() const { -// return m_cb_vect.size() ; -// } - -// // insert new slot and sort -// template < class T > -// inline void LArConditionsVsCalib<T>::insert(CB_Id id) { -// m_cb_vect.push_back( CB_Tvec_pair( id,T_vector( nChannelsBoard ) ) ) ; -// std::sort( m_cb_vect.begin() , m_cb_vect.end() , PairSort() ) ; -// } - -template < class T > -void LArConditionsVsCalib<T>::setPdata(CB_Id calibBoard, const T_vector & payload_v) { - // const unsigned & N = nChannelsBoard ; - unsigned N = LArConditionsVsCalibDB<T>::nChannelsBoard ; - MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalib<>"); - if ( payload_v.size() != N ) { - log << MSG::WARNING << "Number of provided channels is " << payload_v.size() << " != " << N << endmsg ; - return ; - } - typename LArConditionsVsCalib<T>::Const_CB_It it = LArConditionsVsCalibDB<T>::find( calibBoard ) ; - if ( it == LArConditionsVsCalibDB<T>::end() ) { - log << MSG::DEBUG << "Inserting new calib board " << calibBoard << endmsg ; - LArConditionsVsCalibDB<T>::insert (calibBoard) ; - it = LArConditionsVsCalibDB<T>::find( calibBoard ) ; - } - if ( it == LArConditionsVsCalibDB<T>::end() ) { - log << MSG::WARNING << "Could not find/allocate calib board " << calibBoard << endmsg ; - return ; - } - typename CB_It::value_type& vec = - const_cast<typename CB_It::value_type&> (*it); - vec.second = payload_v ; -} - -template < class T > -void LArConditionsVsCalib<T>::setPdata(const HWIdentifier& ChID, const T& payload) { - MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalib<>"); - HWIdentifier calibLine = getCalibLine(ChID) ; - if ( calibLine == 0 ) { - log << MSG::WARNING << "Could not get calib line for channel " << ChID.getString() << endmsg ; - return ; - } - CB_Id calibBoard = m_onlineHelper->calib_module_Id( calibLine ).get_identifier32().get_compact() ; - unsigned channel = m_onlineHelper->channel( calibLine ) ; - typename LArConditionsVsCalib<T>::Const_CB_It it = LArConditionsVsCalibDB<T>::find( calibBoard ) ; - if ( it == LArConditionsVsCalibDB<T>::end() ) { - log << MSG::DEBUG << "Inserting new calib board " << calibBoard - << " for channel " << ChID.getString() << endmsg ; - LArConditionsVsCalibDB<T>::insert (calibBoard) ; - it = LArConditionsVsCalibDB<T>::find( calibBoard ) ; - } - if ( it == LArConditionsVsCalibDB<T>::end() ) { - log << MSG::WARNING << "Could not find/allocate calib board " << calibBoard - << " for channel " << ChID.getString() << endmsg ; - return ; - } - typename CB_It::value_type& vec = - const_cast<typename CB_It::value_type&> (*it); - ( vec.second ) [channel] = payload ; -} - -template < class T > -const T& LArConditionsVsCalib<T>::get(const HWIdentifier& ChID) const { - MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalib<>"); - log << MSG::VERBOSE << "... get(HWIdentifier): trying to get calib line HWId" << endmsg ; - HWIdentifier calibLine = getCalibLine(ChID) ; - if ( calibLine == 0 ) { - log << MSG::WARNING << "Could not find calib line for channel " << ChID.getString() << endmsg ; - return (empty()) ; - } - log << MSG::VERBOSE << "... get(HWIdentifier): trying to get calib board HWId" << endmsg ; - CB_Id calibBoard = m_onlineHelper->calib_module_Id( calibLine ).get_identifier32().get_compact() ; - log << MSG::VERBOSE << "... get(HWIdentifier): trying to get calib channel" << endmsg ; - unsigned channel = m_onlineHelper->channel( calibLine ) ; - log << MSG::VERBOSE << "... get(HWIdentifier): trying to get calib board iterator" << endmsg ; - typename LArConditionsVsCalib<T>::Const_CB_It it = LArConditionsVsCalibDB<T>::find( calibBoard ) ; - if ( it ==LArConditionsVsCalibDB<T>::end() ) { - log << MSG::WARNING << "Could not find calib board for channel " << ChID.getString() << endmsg ; - return (empty()) ; - } - log << MSG::VERBOSE << "... get(HWIdentifier): success!" << endmsg ; - return ( (*it).second ) [channel] ; -} - -template < class T > -const T& LArConditionsVsCalib<T>::get(const Identifier& CellID) const { - HWIdentifier ChID = m_cablingSvc->createSignalChannelID(CellID) ; - return get(ChID) ; -} - - -template<class T> -inline T& LArConditionsVsCalib<T>::empty() const -{ - static T result; - return (result); -} diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibBase.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibBase.h deleted file mode 100755 index 144ed339c56bbffce8acfd584e2e6a263aa2f334..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibBase.h +++ /dev/null @@ -1,62 +0,0 @@ -//Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - - -#ifndef LARRAWCONDITIONS_LARCONDITIONSVSCALIBBASE_H -#define LARRAWCONDITIONS_LARCONDITIONSVSCALIBBASE_H - -#include "GaudiKernel/IMessageSvc.h" - -#include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" - -#include "GaudiKernel/Bootstrap.h" -#include "GaudiKernel/IService.h" -#include "GaudiKernel/ISvcLocator.h" -#include "GaudiKernel/IToolSvc.h" -#include "StoreGate/StoreGateSvc.h" -#include "StoreGate/DataHandle.h" - -#include "AthenaKernel/getMessageSvc.h" -#include <iostream> - -// class LArCablingService ; - -/** Base class for LArConditionsVsCalib<> template - * - * @author M. Fanti - * @version 0-0-1 , 7/02/06 - * - * History: - * - - */ - -class LArConditionsVsCalibBase -{ - - public: - - LArConditionsVsCalibBase() : m_init(false), m_detStore(NULL), m_cablingSvc(NULL), m_onlineHelper(NULL) {} ; - virtual ~LArConditionsVsCalibBase() {} ; - - virtual StatusCode initialize() ; - // dummy method, only for compatibility with LArConditionsContainerBase - void setGroupingType(int) {} ; - - protected: - bool m_init ; - StoreGateSvc* m_detStore ; - LArCablingService* m_cablingSvc ; - const LArOnlineID* m_onlineHelper ; - - HWIdentifier getCalibLine(HWIdentifier ChID) const ; - // HWIdentifier getSlotID (HWIdentifier ChID) const ; -} ; - - -#endif - - diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibDB.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibDB.h deleted file mode 100755 index d5604c71506e924feb9d655dd5108e9589d9ff56..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArConditionsVsCalibDB.h +++ /dev/null @@ -1,102 +0,0 @@ -//Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - - -#ifndef LARRAWCONDITIONS_LARCONDITIONSVSCALIBDB_H -#define LARRAWCONDITIONS_LARCONDITIONSVSCALIBDB_H - -//class LArCablingService ; - -/** Template class for condition objects organized vs calibration line - * - * @author M. Fanti - * @version 0-0-1 , 7/02/06 - * - * History: - * - - */ - -template < class T > -class LArConditionsVsCalibDB -{ - -public: - - static const unsigned nChannelsBoard = 128 ; // channels per calibration board - - typedef unsigned int CB_Id ; // this refers to Calib Board [feedthrough,slot] - typedef std::vector<T> T_vector ; // vector of 128 T's - typedef typename std::pair<CB_Id,T_vector> CB_Tvec_pair ; - typedef typename std::vector<CB_Tvec_pair> CB_vector ; - typedef typename CB_vector::const_iterator Const_CB_It ; - typedef typename CB_vector::iterator CB_It ; - - LArConditionsVsCalibDB() {} ; - virtual ~LArConditionsVsCalibDB() {} ; - - Const_CB_It find(CB_Id id) const ; // access conditions for given CB_Id - Const_CB_It begin() const ; // calib board begin iterator - Const_CB_It end() const ; // calib board end iterator - size_t size() const ; // number of calib boards - void insert(CB_Id id) ; // insert new calib board - -protected: - - CB_vector m_cb_vect ; - -// bool operator< (const CB_Tvec_pair& x, const CB_Tvec_pair& y) -// { return (x.first < y.first); } ; - - class PairSort { - public: - bool operator () (const CB_Tvec_pair& x, const CB_Tvec_pair& y) - { return (x.first < y.first); } - bool operator () (const CB_Tvec_pair& x, const unsigned int& id) - { return (x.first < id); } - bool operator () (const unsigned int& id, const CB_Tvec_pair& y) - { return (id < y.first); } - }; - -} ; - -// calib board query/navigation: - -template < class T > -inline typename LArConditionsVsCalibDB<T>::Const_CB_It -LArConditionsVsCalibDB<T>::find(CB_Id id) const { - Const_CB_It result = std::lower_bound(m_cb_vect.begin(), - m_cb_vect.end(), - id, PairSort()) ; - if ( result != m_cb_vect.end() && (*result).first == id ) return (result) ; - return m_cb_vect.end() ; -} - -template < class T > -inline typename LArConditionsVsCalibDB<T>::Const_CB_It -LArConditionsVsCalibDB<T>::begin() const { - return m_cb_vect.begin() ; -} -template < class T > -inline typename LArConditionsVsCalibDB<T>::Const_CB_It -LArConditionsVsCalibDB<T>::end() const { - return m_cb_vect.end() ; -} -template < class T > -inline size_t LArConditionsVsCalibDB<T>::size() const { - return m_cb_vect.size() ; -} - -// insert new slot and sort -template < class T > -inline void LArConditionsVsCalibDB<T>::insert(CB_Id id) { - m_cb_vect.push_back( CB_Tvec_pair( id,T_vector( nChannelsBoard ) ) ) ; - std::sort( m_cb_vect.begin() , m_cb_vect.end() , PairSort() ) ; -} - - -#endif - - diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_CphiComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_CphiComplete.h old mode 100755 new mode 100644 index 72f03bd6052f94dd3a8ff536d95340a25c2ffc80..97ce98e5ede25f30f21b2077f855a541817da777 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_CphiComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_CphiComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LAREMEC_CPHICOMPLETE_H @@ -38,8 +38,6 @@ class LArEMEC_CphiComplete: public ILArEMEC_Cphi, virtual const float& EMEC_Cphi(const HWIdentifier& CellID) const ; - virtual const float& EMEC_Cphi(const Identifier& CellID) const; - static float dummy; // set method filling the data members individually (if one diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HValphaComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HValphaComplete.h old mode 100755 new mode 100644 index 4b5ce772199a56ebf2a783eb78353b3566fe3285..ecec505dfa28e770ea12ce31d68096609cf2d0b3 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HValphaComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HValphaComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LAREMEC_HVALPHACOMPLETE_H @@ -38,8 +38,6 @@ class LArEMEC_HValphaComplete: public ILArEMEC_HValpha, virtual const float& EMEC_HValpha(const HWIdentifier& CellID) const ; - virtual const float& EMEC_HValpha(const Identifier& CellID) const; - static float dummy; // set method filling the data members individually (if one diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HVbetaComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HVbetaComplete.h old mode 100755 new mode 100644 index f908e3dfab896fcbad1a649edc152c0b66426f84..a6aa353fa98ed9948ae99a38bbd5b2ae0b04bb32 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HVbetaComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArEMEC_HVbetaComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LAREMEC_HVBETACOMPLETE_H @@ -38,8 +38,6 @@ class LArEMEC_HVbetaComplete: public ILArEMEC_HVbeta, virtual const float& EMEC_HVbeta(const HWIdentifier& CellID) const ; - virtual const float& EMEC_HVbeta(const Identifier& CellID) const; - static float dummy; // set method filling the data members individually (if one diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArH6OscillationComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArH6OscillationComplete.h old mode 100755 new mode 100644 index 4d25ec76c22ae921990625dc9e85088ad8a326e3..8ceb72898e54b6981624abf7cde179e2aed090d0 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArH6OscillationComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArH6OscillationComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARH6OSCILLATIONCOMPLETE_H @@ -11,8 +11,6 @@ #include <vector> -class LArCablingService ; - /** This class implements the ILArH6Oscillation interface * * @author T. Barillari @@ -38,10 +36,6 @@ class LArH6OscillationComplete: public ILArH6Oscillation , virtual const double& channelAmplitude(const HWIdentifier& CellID) const ; - virtual const double& channelPhase(const Identifier& CellID) const; - - virtual const double& channelAmplitude(const Identifier& CellID) const; - // set method filling the data members individually (if one // wants to fill this class not using the DB) void set(const HWIdentifier& CellID, diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArMinBiasAverageComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArMinBiasAverageComplete.h old mode 100755 new mode 100644 index c9f4d842310963ae8fb11d2c7eb341e518f00b92..02e927df5d4f9a7dcf0bcda407736693d71c7b1a --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArMinBiasAverageComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArMinBiasAverageComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARMINBIASAVERAGECOMPLETE_H @@ -11,8 +11,6 @@ #include <vector> -class LArCablingService; - /** This class implements the ILArMinBiasAverage interface * History: * - 29/04/2004, S. Laplace: added ERRORCODE diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseComplete.h old mode 100755 new mode 100644 index 7afbfc46550e6b3574db94951196fd765e6e1d5e..910490c4fb6355a290b517d00107d167da75684a --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARNOISECOMPLETE_H @@ -11,8 +11,6 @@ #include <vector> -class LArCablingService ; - /** This class implements the ILArNoise interface * * @author W. Lampl, S. Laplace diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseMC.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseMC.h old mode 100755 new mode 100644 index bdb6dc580826bab84a603dc9f8acbcd01971021b..2709b6e9781c9ee4c6a2372858e7d033edb03a61 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseMC.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArNoiseMC.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARNOISEMC_H @@ -10,7 +10,6 @@ #include <vector> -class LArCablingService ; class ILArMCSymTool; /** Implementation of the interface ILArNoise for MC diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArRawConditionsDict1.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArRawConditionsDict1.h old mode 100755 new mode 100644 index ec8668ea8367500428b37d545e4be1de76f70b9f..9879356c310d2023776bfc808d1a5250e2a5a887 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArRawConditionsDict1.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArRawConditionsDict1.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -9,8 +9,6 @@ //=== Base classes -#include "LArRawConditions/LArConditionsVsCalibBase.h" - //=== LArAutoCorrP #include "LArRawConditions/LArAutoCorrMC.h" @@ -23,19 +21,10 @@ INSTAN_CS(LArAutoCorrP); //PYGATE(LArAutoCorrMC); -//=== LArCaliPulseParamsP #include "LArRawConditions/LArCaliPulseParamsComplete.h" #include "LArRawConditions/LArCaliPulseParamsP.h" -#include "LArRawConditions/LArCaliPulseParamsVsCalib.h" INSTAN_BOTH(LArCaliPulseParamsP); -template class LArConditionsVsCalibDB<LArCaliPulseParamsP>; -template class LArConditionsVsCalib<LArCaliPulseParamsP>; - -namespace LArRawConditionsDict { - LArConditionsVsCalibDB<LArCaliPulseParamsP> vscalib001 ; - LArConditionsVsCalib<LArCaliPulseParamsP> vscalib101 ; -} //=== LArDAC2uAP #include "LArRawConditions/LArDAC2uAMC.h" diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArTshaperComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArTshaperComplete.h old mode 100755 new mode 100644 index 70cabe5e764f2c6d3a895319e012c065d9e49fce..5429c38ba1221d070b302eb71e867c41cd25f656 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArTshaperComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArTshaperComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARTSHAPERCOMPLETE_H @@ -9,8 +9,6 @@ #include "LArRawConditions/LArTshaperP.h" #include "LArRawConditions/LArConditionsContainer.h" -class LArCablingService ; - /** This class implements the ILArTshaper interface * * @author M. Fanti diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/LArWFParamsComplete.h b/LArCalorimeter/LArRawConditions/LArRawConditions/LArWFParamsComplete.h old mode 100755 new mode 100644 index 5f50df100c5ad9722ba0bd707913ef6acb16ced3..7aa15ccab213adfcb69239fe794d4e6cefa83e3f --- a/LArCalorimeter/LArRawConditions/LArRawConditions/LArWFParamsComplete.h +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/LArWFParamsComplete.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWCONDITIONS_LARWFPARAMSCOMPLETE_H @@ -11,8 +11,6 @@ #include <vector> #include <iostream> -class LArCablingService ; - /* * Two ways of filling this data class: * - intra ATHENA diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/selection1.xml b/LArCalorimeter/LArRawConditions/LArRawConditions/selection1.xml index 4185d8c19b8d8492ab544c2508e47e6967ce50d0..7fa086bf728f2d08fe5d961281d631bfceb6c0b6 100644 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/selection1.xml +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/selection1.xml @@ -1,26 +1,6 @@ <lcgdict> - <!-- base class for all vscalib --> - <class name="LArConditionsVsCalibBase" > - <field name="m_init" transient="true" /> - <field name="m_detStore" transient="true" /> - <field name="m_cablingSvc" transient="true" /> - <field name="m_onlineHelper" transient="true" /> - </class> - - <!-- patterns for all vscalib --> - <!--<class pattern="LArConditionsVsCalib<*>" /> --> - <!-- LArRtermP --> -<!-- - <class name="LArRtermP" /> - <class name="LArRtermVsCalib" id="FC0FDC55-5A44-4E86-8408-57CD2A0D9614" /> - - <class name="std::vector<LArRtermP>" /> - <class pattern="std::pair*LArRtermP*"/> - <class pattern="std::vector<LArRtermP>"/> - <class pattern="*iterator*LArRtermP*"/> ---> <!-- base class for all containers --> <class name="LArConditionsContainerBase" /> @@ -55,13 +35,6 @@ <field name="m_subsetMap" transient="true" /> </class> - <class name="LArConditionsVsCalibDB<LArCaliPulseParamsP>" /> - - <class name="LArConditionsVsCalib<LArCaliPulseParamsP>" /> - - <class name="LArCaliPulseParamsVsCalib" id="E36381CB-C436-4FF4-8A91-9D24BA23B836" /> - - <class pattern="*pair*<unsigned*LArCaliPulseParamsP*"/> <class name="std::vector<LArCaliPulseParamsP>"/> <class name="std::vector<std::pair<unsigned int, LArCaliPulseParamsP> >"/> diff --git a/LArCalorimeter/LArRawConditions/LArRawConditions/selection2.xml b/LArCalorimeter/LArRawConditions/LArRawConditions/selection2.xml index 22bb5f51fabe6bd675489593f21221b88883f6b6..4aef6414961d38aee3be62202f857d08758fe8b6 100644 --- a/LArCalorimeter/LArRawConditions/LArRawConditions/selection2.xml +++ b/LArCalorimeter/LArRawConditions/LArRawConditions/selection2.xml @@ -229,13 +229,6 @@ <!-- <class name="ILArPedestal" /> done in ElecCalib --> - <!-- - <exclusion> - <class pattern="LArConditionsVsCalib<*>" > - <method pattern="*" /> - </class> - </exclusion> - --> <exclusion> <class name="integral_constant<bool,true>" /> diff --git a/LArCalorimeter/LArRawConditions/src/LArCableAttenuationComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArCableAttenuationComplete.cxx old mode 100755 new mode 100644 index ef75ef0740fbd11c928066a0a45e2e00ae727b40..7039bb1d657419efb66d186eccbc2326b764878e --- a/LArCalorimeter/LArRawConditions/src/LArCableAttenuationComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArCableAttenuationComplete.cxx @@ -1,10 +1,9 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArCableAttenuationComplete.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" LArCableAttenuationComplete::LArCableAttenuationComplete() {} diff --git a/LArCalorimeter/LArRawConditions/src/LArCaliPulseParamsVsCalib.cxx b/LArCalorimeter/LArRawConditions/src/LArCaliPulseParamsVsCalib.cxx deleted file mode 100755 index b22fdb0f4f42742cd18e5ef427ac6309a0c220b8..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/src/LArCaliPulseParamsVsCalib.cxx +++ /dev/null @@ -1,51 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - - -#include "LArRawConditions/LArCaliPulseParamsVsCalib.h" -#include <iostream> - -LArCaliPulseParamsVsCalib::LArCaliPulseParamsVsCalib() { - // std::cout << "LArCaliPulseParamsVsCalib: in constructor" << std::endl ; - initialize() ; -} - -LArCaliPulseParamsVsCalib::~LArCaliPulseParamsVsCalib() {} - -void LArCaliPulseParamsVsCalib::set(const HWIdentifier& ChID, - float tcal, float fstep ) { - // std::cout << "==>> LArCaliPulseParamsVsCalib::set(const HWIdentifier&,float,float) called!" - // << std::endl ; - initialize() ; // does nothing if already initialized - LArCaliPulseParamsP t ; - t.m_Tcal = tcal ; - t.m_Fstep = fstep ; - setPdata(ChID,t) ; -} -void LArCaliPulseParamsVsCalib::set(const HWIdentifier& ChID, - float tcal, float fstep, float offset, float dtcal ) { - // std::cout << "==>> LArCaliPulseParamsVsCalib::set(const HWIdentifier&,float,float) called!" - // << std::endl ; - initialize() ; // does nothing if already initialized - LArCaliPulseParamsP t ; - t.m_Tcal = tcal ; - t.m_Fstep = fstep ; - t.m_Offset = offset ; - t.m_dTimeCal = dtcal ; - setPdata(ChID,t) ; -} -void LArCaliPulseParamsVsCalib::set(const HWIdentifier& ChID, - float tcal, float fstep, float offset, float dtcal, short ncb ) { - // std::cout << "==>> LArCaliPulseParamsVsCalib::set(const HWIdentifier&,float,float) called!" - // << std::endl ; - initialize() ; // does nothing if already initialized - LArCaliPulseParamsP t ; - t.m_Tcal = tcal ; - t.m_Fstep = fstep ; - t.m_Offset = offset ; - t.m_dTimeCal = dtcal ; - t.m_nCB = ncb ; - setPdata(ChID,t) ; -} - diff --git a/LArCalorimeter/LArRawConditions/src/LArConditionsVsCalibBase.cxx b/LArCalorimeter/LArRawConditions/src/LArConditionsVsCalibBase.cxx deleted file mode 100755 index c6ef7cb75a89b7ec990b7a9b79831584433edd07..0000000000000000000000000000000000000000 --- a/LArCalorimeter/LArRawConditions/src/LArConditionsVsCalibBase.cxx +++ /dev/null @@ -1,92 +0,0 @@ -//Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#include "LArRawConditions/LArConditionsVsCalibBase.h" - - -StatusCode LArConditionsVsCalibBase::initialize() { - MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalibBase"); - - if ( m_init ) return StatusCode::SUCCESS ; - - ISvcLocator* svcLoc = Gaudi::svcLocator() ; - StatusCode sc = svcLoc->service("DetectorStore",m_detStore) ; - if ( sc.isFailure() ) { - log << MSG::ERROR << "Could not get detector store" << endmsg ; - return sc ; - } - sc = m_detStore->retrieve(m_onlineHelper,"LArOnlineID") ; - if ( sc.isFailure() ) { - log << MSG::ERROR << "Could not get online helper" << endmsg ; - return sc ; - } - - IToolSvc* toolSvc ; - sc = svcLoc->service("ToolSvc",toolSvc) ; - if ( sc.isFailure() ) { - log << MSG::ERROR << "Could not get ToolSvc" << endmsg ; - return sc ; - } - sc = toolSvc->retrieveTool("LArCablingService",m_cablingSvc) ; - if ( sc.isFailure() ) { - log << MSG::ERROR << "Could not get cabling service" << endmsg ; - return sc ; - } - - m_init = true ; - log << MSG::INFO << "successfully initialized ..." << endmsg ; - return StatusCode::SUCCESS ; -} - -HWIdentifier LArConditionsVsCalibBase::getCalibLine(HWIdentifier ChID) const { - MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalibBase"); - log << MSG::VERBOSE << "getCalibLine(HWIdentifier): just entered" << endmsg ; - if ( ! m_init ) { - log << MSG::ERROR << "getCalibLine(HWIdentifier): not initialized!" << endmsg ; - return HWIdentifier(0) ; - } - //------------------------------------------------------- - static bool first_time = true ; - if ( first_time ) { - // this forces loading the OnOffIdMap, which also contains readout->calib mapping - // if not done, all the rest fails! - log << MSG::INFO << "getCalibLine(HWIdentifier): force loading of the OnOffIdMap" << endmsg ; - try { - log << MSG::VERBOSE << "getCalibLine(HWIdentifier): dummy call to m_cablingSvc->cnvToIdentifier(ChID), ChID=" - << ChID.getString() << endmsg ; - Identifier id = m_cablingSvc->cnvToIdentifier(ChID); - // this VERBOSE printout avoid compilation warning "unused variable `Identifier id'" - log << MSG::VERBOSE << "getCalibLine(HWIdentifier): dummy call returned Identifier ID = 0x" << MSG::hex << id << MSG::dec << endmsg ; - } catch ( LArID_Exception & except ) { - log << MSG::VERBOSE << "getCalibLine(HWIdentifier): m_cablingSvc->cnvToIdentifier(ChID) failed" << endmsg ; - if ( m_onlineHelper->isCalibration(ChID) ) { - log << MSG::VERBOSE << ChID.getString() << " is calibration line" << endmsg ; - } else { - log << MSG::VERBOSE << ChID.getString() << " isn't calibration line" << endmsg ; - } - } - log << MSG::INFO << "getCalibLine(HWIdentifier): OnOffIdMap loaded (hopefully!)" << endmsg ; - first_time = false ; - } - //------------------------------------------------------- - if ( m_onlineHelper->isCalibration(ChID) ) { - log << MSG::VERBOSE << "getCalibLine(HWIdentifier): " << ChID.getString() << " is already a calib line" << endmsg ; - return ChID ; - } - const std::vector<HWIdentifier>& calibLineV = m_cablingSvc->calibSlotLine(ChID) ; - if ( calibLineV.size() > 0 ) { - return calibLineV[0] ; - } else { - log << MSG::WARNING << "Could not get calib line for channel " << ChID.getString() << endmsg ; - return HWIdentifier(0) ; - } -} - -// inline HWIdentifier LArConditionsVsCalibBase::getSlotID(HWIdentifier ChID) const { -// //MsgStream log(Athena::getMessageSvc(), "LArConditionsVsCalibBase"); -// //int b_ec, pn, ft, slot ; -// return m_onlineHelper->calib_module_Id( ChID ) ; -// } diff --git a/LArCalorimeter/LArRawConditions/src/LArEMEC_CphiComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArEMEC_CphiComplete.cxx old mode 100755 new mode 100644 index 6a01a7aba580c4da500e436777840ab448aaafc1..11641d7248ceb1268d4014359634ac6957b93954 --- a/LArCalorimeter/LArRawConditions/src/LArEMEC_CphiComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArEMEC_CphiComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArEMEC_CphiComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" @@ -43,30 +42,3 @@ const float& LArEMEC_CphiComplete::EMEC_Cphi(const HWIdentifier& CellID) const return (t.m_EMEC_Cphi); } -const float& LArEMEC_CphiComplete::EMEC_Cphi(const Identifier& CellID) const -{ - HWIdentifier OnId; - - // translate offline ID into online ID - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc; - StatusCode sc = svcLoc->service( "ToolSvc",toolSvc ); - if(sc.isSuccess()) { - LArCablingService* cablingService; - sc = toolSvc->retrieveTool("LArCablingService",cablingService); - if(sc.isFailure()){ - std::cout << "LArEMEC_Cphi: Could not retrieve LArCablingService Tool " << std::endl; - return dummy; - } - OnId = cablingService->createSignalChannelID(CellID); - - } else { - std::cout << "LArEMEC_Cphi: Could not retrieve ToolSvc " << std::endl; - return dummy; - } - - return EMEC_Cphi(OnId); -} - - - diff --git a/LArCalorimeter/LArRawConditions/src/LArEMEC_HValphaComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArEMEC_HValphaComplete.cxx old mode 100755 new mode 100644 index 390c6fb26f3e7828e75d8636dd8722868f01c1de..acaf8f5eb04317784722399ffc3d6b6fe8d46153 --- a/LArCalorimeter/LArRawConditions/src/LArEMEC_HValphaComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArEMEC_HValphaComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArEMEC_HValphaComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" @@ -41,31 +40,3 @@ const float& LArEMEC_HValphaComplete::EMEC_HValpha(const HWIdentifier& CellID) c return (t.m_EMEC_HValpha); } - -const float& LArEMEC_HValphaComplete::EMEC_HValpha(const Identifier& CellID) const -{ - HWIdentifier OnId; - - // translate offline ID into online ID - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc; - StatusCode sc = svcLoc->service( "ToolSvc",toolSvc ); - if(sc.isSuccess()) { - LArCablingService* cablingService; - sc = toolSvc->retrieveTool("LArCablingService",cablingService); - if(sc.isFailure()){ - std::cout << "LArEMEC_HValpha: Could not retrieve LArCablingService Tool " << std::endl; - return dummy; - } - OnId = cablingService->createSignalChannelID(CellID); - - } else { - std::cout << "LArEMEC_HValpha: Could not retrieve ToolSvc " << std::endl; - return dummy; - } - - return EMEC_HValpha(OnId); -} - - - diff --git a/LArCalorimeter/LArRawConditions/src/LArEMEC_HVbetaComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArEMEC_HVbetaComplete.cxx old mode 100755 new mode 100644 index f86479a8cc8ece350689d52383a376944a201630..bf96786a4bf0892c7eb9a199f833d8b4d64ea7f8 --- a/LArCalorimeter/LArRawConditions/src/LArEMEC_HVbetaComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArEMEC_HVbetaComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArEMEC_HVbetaComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" @@ -42,30 +41,6 @@ const float& LArEMEC_HVbetaComplete::EMEC_HVbeta(const HWIdentifier& CellID) con return (t.m_EMEC_HVbeta); } -const float& LArEMEC_HVbetaComplete::EMEC_HVbeta(const Identifier& CellID) const -{ - HWIdentifier OnId; - - // translate offline ID into online ID - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc; - StatusCode sc = svcLoc->service( "ToolSvc",toolSvc ); - if(sc.isSuccess()) { - LArCablingService* cablingService; - sc = toolSvc->retrieveTool("LArCablingService",cablingService); - if(sc.isFailure()){ - std::cout << "LArEMEC_HVbeta: Could not retrieve LArCablingService Tool " << std::endl; - return dummy; - } - OnId = cablingService->createSignalChannelID(CellID); - - } else { - std::cout << "LArEMEC_HVbeta: Could not retrieve ToolSvc " << std::endl; - return dummy; - } - - return EMEC_HVbeta(OnId); -} diff --git a/LArCalorimeter/LArRawConditions/src/LArH6OscillationComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArH6OscillationComplete.cxx old mode 100755 new mode 100644 index b98b9f5b5fa97aa3e15c766f701c30321a5ff640..61be5e137bf23b1c1f0791326c6053de6fcf30cf --- a/LArCalorimeter/LArRawConditions/src/LArH6OscillationComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArH6OscillationComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArH6OscillationComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" @@ -49,65 +48,3 @@ const double& LArH6OscillationComplete::channelAmplitude(const HWIdentifier& Cel return t.m_channelAmplitude; } - -const double& LArH6OscillationComplete::channelPhase(const Identifier& CellID) const -{ - static double empty(0.); - HWIdentifier OnId; - - // translate offline ID into online ID - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc; - StatusCode sc = svcLoc->service( "ToolSvc",toolSvc ); - if(sc.isSuccess()) { - LArCablingService* cablingService; - sc = toolSvc->retrieveTool("LArCablingService",cablingService); - if(sc.isFailure()){ - MsgStream logstr(Athena::getMessageSvc(), "LArH6OscillationComplete"); - logstr << MSG::WARNING << "Could not retrieve LArCablingService Tool " << endmsg; - return empty; - } - OnId = cablingService->createSignalChannelID(CellID); - - } else { - MsgStream logstr(Athena::getMessageSvc(), "LArH6OscillationComplete"); - logstr << MSG::WARNING << "Could not retrieve ToolSvc " << endmsg; - return empty; - } - return channelPhase(OnId); -} - -const double& LArH6OscillationComplete::channelAmplitude(const Identifier& CellID) const -{ - HWIdentifier OnId; - static double empty(0.); - - // translate offline ID into online ID - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc; - StatusCode sc = svcLoc->service( "ToolSvc",toolSvc ); - if(sc.isSuccess()) { - LArCablingService* cablingService; - sc = toolSvc->retrieveTool("LArCablingService",cablingService); - if(sc.isFailure()){ - MsgStream logstr(Athena::getMessageSvc(), "LArH6OscillationComplete"); - logstr << MSG::WARNING << "LArH6OscillationComplete: Could not retrieve LArCablingService Tool " << endmsg; - return empty; - } - OnId = cablingService->createSignalChannelID(CellID); - - } else { - MsgStream logstr(Athena::getMessageSvc(), "LArH6OscillationComplete"); - logstr << MSG::WARNING << "Could not retrieve ToolSvc " << endmsg; - return empty; - } - return channelAmplitude(OnId); -} - - - - - - - - diff --git a/LArCalorimeter/LArRawConditions/src/LArPhysCaliTdiffComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArPhysCaliTdiffComplete.cxx old mode 100755 new mode 100644 index 76ce873fd24ebbd4b5ece2b6ae57705e97aa12da..486fd2d0634cb8586d7e9d7997a507600e3295d8 --- a/LArCalorimeter/LArRawConditions/src/LArPhysCaliTdiffComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArPhysCaliTdiffComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArPhysCaliTdiffComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" diff --git a/LArCalorimeter/LArRawConditions/src/LArRampComplete.cxx b/LArCalorimeter/LArRawConditions/src/LArRampComplete.cxx old mode 100755 new mode 100644 index aa5434505cccdae18d96a22af314c8e8653b8b51..3aa3194f8f796e770bc4a02ff1cca4ca5c1657e6 --- a/LArCalorimeter/LArRawConditions/src/LArRampComplete.cxx +++ b/LArCalorimeter/LArRawConditions/src/LArRampComplete.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawConditions/LArRampComplete.h" #include "GaudiKernel/IMessageSvc.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" diff --git a/LArCalorimeter/LArRawUtils/LArRawUtils/LArRoI_Map.h b/LArCalorimeter/LArRawUtils/LArRawUtils/LArRoI_Map.h old mode 100755 new mode 100644 index 7598fd2b01270d2fbc254f67242e660f0cbd8c69..4d1c4aff52990d63047b8a5889b317f44b77919b --- a/LArCalorimeter/LArRawUtils/LArRawUtils/LArRoI_Map.h +++ b/LArCalorimeter/LArRawUtils/LArRawUtils/LArRoI_Map.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRAWEVENT_LARROI_MAP_H @@ -20,7 +20,7 @@ #include "AthenaBaseComps/AthAlgTool.h" #include <map> -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloTriggerTool/CaloTriggerTowerService.h" class LArOnlineID ; @@ -111,7 +111,7 @@ class LArRoI_Map : public AthAlgTool, ROIMAP m_roimap; - ToolHandle<LArCablingService> m_cablingSvc{ this, "CablingSvc", "LArCablingService", "LAr cabling tool"}; + ToolHandle<LArCablingLegacyService> m_cablingSvc{ this, "CablingSvc", "LArCablingLegacyService", "LAr cabling tool"}; ToolHandle<CaloTriggerTowerService> m_ttSvc{ this, "TriggerTowerSvc", "CaloTriggerTowerService", "Towers tool"}; bool m_print; diff --git a/LArCalorimeter/LArRawUtils/src/LArRoI_Map.cxx b/LArCalorimeter/LArRawUtils/src/LArRoI_Map.cxx old mode 100755 new mode 100644 index 9e596263fdefd9f1952104c456a0aad611cdc022..1968172dfd875555f4c8a65a7e8defcd1cb4d24c --- a/LArCalorimeter/LArRawUtils/src/LArRoI_Map.cxx +++ b/LArCalorimeter/LArRawUtils/src/LArRoI_Map.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRawUtils/LArRoI_Map.h" @@ -63,7 +63,7 @@ StatusCode LArRoI_Map::initialize() ATH_CHECK( m_cablingSvc.retrieve() ); ATH_CHECK( m_ttSvc.retrieve() ); - ATH_CHECK( detStore()->regFcn(&LArCablingService::iovCallBack,&(*m_cablingSvc), + ATH_CHECK( detStore()->regFcn(&LArCablingLegacyService::iovCallBack,&(*m_cablingSvc), &LArRoI_Map::iovCallBack, this,true) ); ATH_CHECK( detStore()->regFcn(&CaloTriggerTowerService::iovCallBack,&(*m_ttSvc), diff --git a/LArCalorimeter/LArRecConditions/LArRecConditions/LArHVCorr.h b/LArCalorimeter/LArRecConditions/LArRecConditions/LArHVCorr.h old mode 100755 new mode 100644 index e77ab6491135f0ccca43ef2977f362f69220c003..2b95df64bdc67fe16b9c178c556d6da9192b32e7 --- a/LArCalorimeter/LArRecConditions/LArRecConditions/LArHVCorr.h +++ b/LArCalorimeter/LArRecConditions/LArRecConditions/LArHVCorr.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -26,7 +26,7 @@ class LArHVCorr : public ILArHVScaleCorr { virtual const float& HVScaleCorr(const HWIdentifier& chid) const override final; // retrieving HVScaleCorr using offline ID - virtual const float& HVScaleCorr(const Identifier& id) const override final; + virtual const float& HVScaleCorr(const Identifier& chid) const; private: diff --git a/LArCalorimeter/LArRecUtils/CMakeLists.txt b/LArCalorimeter/LArRecUtils/CMakeLists.txt index 2078403cab1a51922d25fc79664d4e703489c0e8..a669581b359f0b8a11834f6cdb8058c15f56e9a8 100644 --- a/LArCalorimeter/LArRecUtils/CMakeLists.txt +++ b/LArCalorimeter/LArRecUtils/CMakeLists.txt @@ -70,5 +70,5 @@ atlas_install_joboptions( share/*.py ) atlas_add_test( LArFCalTowerBuilderTool SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/test/LArFCalTowerBuilderTool_test.sh PROPERTIES TIMEOUT 300 - EXTRA_PATTERNS "[0-9] [A-Z]+ 20[123][0-9]|Reading file|^CORAL/Services/ConnectionService (Info|Warning)|^RelationalDatabase Info|^Data source lookup|^DetDescrCnvSvc +INFO|^CORAL/RelationalPlugins/frontier Info|^PluginManager Info|^RalSessionMgr Warning|^DBReplicaSvc +INFO|IOVDbSvc +INFO|^Py:Athena +INFO|^EventInfoMgtInit: Got release|^TEnvRec::ChangeValue|^PoolSvc +INFO|being retired|including file|Deaccess DbDatabase|^IoComponentMgr +INFO|File version|Global positioning|^Domain|duplicate entry|already loaded|RootDbase: all good|frontier.c|^Py:ConfigurableDb +(WARNING|INFO)|ApplicationMgr +INFO|INFO [sS]top|^CaloIdMgrDetDes.*INFO|^TTOnlineIDDetDe.*INFO|^CaloIDHelper_ID.*INFO|^AtlasDetectorID +INFO|^AthenaEventLoopMgrWARNING|^CaloDM_IDDetDes.*INFO|^CaloLVL1_IDDetD.*INFO|^LArFCAL_ID +INFO|^LArMiniFCAL_IDD.*INFO|^LArHEC_ID +INFO|^LArMiniFCAL_ID +INFO|TileTBIdDetDesc.*INFO|^TileIDDetDescrCnv +INFO|CaloCell_IDDetD.*INFO|TileID +INFO|^LArFCAL_IDDetDe.*INFO|^TileTBIDDetDesc.*INFO|^LArEM_ID +INFO|^LArHEC_IDDetDes.*INFO|^LArEM_IDDetDesc.*INFO|^EndcapDMConstru.*INFO|^GeoModelSvc +INFO|U-shape parameter|Cs Tube parameter|XMLFileCatalog Info|No IOVSvcTool associated|^RalSessionMgr Info|RDBMS technology|^AthenaRootStre.* INFO|^GUID: Class pool::DbString has GUID|INFO TileDddbManager|^HGTD_ID *INFO|Unable to locate catalog|^CORAL/|TFile::Init" + EXTRA_PATTERNS "[0-9] [A-Z]+ 20[123][0-9]|Reading file|^CORAL/Services/ConnectionService (Info|Warning)|^RelationalDatabase Info|^Data source lookup|^DetDescrCnvSvc +INFO|^CORAL/RelationalPlugins/frontier Info|^PluginManager Info|^RalSessionMgr Warning|^DBReplicaSvc +INFO|IOVDbSvc +INFO|^Py:Athena +INFO|^EventInfoMgtInit: Got release|^TEnvRec::ChangeValue|^PoolSvc +INFO|being retired|including file|Deaccess DbDatabase|^IoComponentMgr +INFO|File version|Global positioning|^Domain|duplicate entry|already loaded|RootDbase: all good|frontier.c|^Py:ConfigurableDb +(WARNING|INFO)|ApplicationMgr +INFO|INFO [sS]top|^CaloIdMgrDetDes.*INFO|^TTOnlineIDDetDe.*INFO|^CaloIDHelper_ID.*INFO|^AtlasDetectorID +INFO|^AthenaEventLoopMgrWARNING|^CaloDM_IDDetDes.*INFO|^CaloLVL1_IDDetD.*INFO|^LArFCAL_ID +INFO|^LArMiniFCAL_IDD.*INFO|^LArHEC_ID +INFO|^LArMiniFCAL_ID +INFO|TileTBIdDetDesc.*INFO|^TileIDDetDescrCnv +INFO|CaloCell_IDDetD.*INFO|TileID +INFO|^LArFCAL_IDDetDe.*INFO|^TileTBIDDetDesc.*INFO|^LArEM_ID +INFO|^LArHEC_IDDetDes.*INFO|^LArEM_IDDetDesc.*INFO|^EndcapDMConstru.*INFO|^GeoModelSvc +INFO|U-shape parameter|Cs Tube parameter|XMLFileCatalog Info|No IOVSvcTool associated|^RalSessionMgr Info|RDBMS technology|^AthenaRootStre.* INFO|^GUID: Class pool::DbString has GUID|INFO TileDddbManager|^HGTD_ID *INFO|Unable to locate catalog|^CORAL/|TFile::Init|MetaDataSvc" ) diff --git a/LArCalorimeter/LArRecUtils/LArRecUtils/MakeLArCellFromRaw.h b/LArCalorimeter/LArRecUtils/LArRecUtils/MakeLArCellFromRaw.h old mode 100755 new mode 100644 index d2a2457cd3803941137ca4849bc6263160f52e9f..295988948dff805e37e3a181699596006e57d75b --- a/LArCalorimeter/LArRecUtils/LArRecUtils/MakeLArCellFromRaw.h +++ b/LArCalorimeter/LArRecUtils/LArRecUtils/MakeLArCellFromRaw.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCELLREC_MAKELARCELLFROMRAW_H @@ -22,7 +22,7 @@ #include <map> #include <vector> class CaloDetDescrElement ; -class LArCablingService ; +class LArCablingLegacyService ; class LArRoI_Map; @@ -93,7 +93,7 @@ private: mutable DataPool<LArCell> * m_dataPool; IMessageSvc * m_msgSvc ; - LArCablingService* m_cablingSvc ; + LArCablingLegacyService* m_cablingSvc ; const LArOnlineID* m_onlineID; diff --git a/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref b/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref index a311d5364e1726d9746bc304d94c7226e0f03abc..f34b7e7551f47055e81379d0e21a4b943a842ac1 100644 --- a/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref +++ b/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref @@ -6640,6 +6640,7 @@ towers 6398 100 63 0 6399 100 64 0 AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 1 events processed so far <<<=== +MetaDataSvc INFO MetaDataSvc::stop() /cvmfs/atlas-co... INFO Database being retired... Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC /cvmfs/atlas-co... INFO Database being retired... diff --git a/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.cxx b/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.cxx index a84e433ddc6583290bcc085527504481db3bb805..26c58abe2ebc6092cfaa539edd1362980da06c76 100644 --- a/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArADC2MeVTool.h" @@ -7,8 +7,8 @@ #include "GaudiKernel/IIncidentSvc.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArOnline_SuperCellID.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" +#include "LArCabling/LArCablingLegacyService.h" +//#include "LArCabling/LArSuperCellCablingTool.h" #include "LArElecCalib/LArConditionsException.h" @@ -72,9 +72,9 @@ StatusCode LArADC2MeVTool::initialize() { return StatusCode::FAILURE; } else m_lar_on_id = (LArOnlineID_Base*) laron; - ToolHandle<LArCablingService> larcab("LArCablingService"); + ToolHandle<LArCablingLegacyService> larcab("LArCablingLegacyService"); if(larcab.retrieve().isFailure()){ - ATH_MSG_ERROR("Unable to get CablingService"); + ATH_MSG_ERROR("Unable to get CablingLegacyService"); return StatusCode::FAILURE; } else m_cablingService = (LArCablingBase*) &(*larcab); @@ -91,11 +91,11 @@ StatusCode LArADC2MeVTool::initialize() { return StatusCode::FAILURE; } else m_lar_on_id = (LArOnlineID_Base*) laron; - ToolHandle<LArSuperCellCablingTool> larcab("LArSuperCellCablingTool"); - if(larcab.retrieve().isFailure()){ - ATH_MSG_ERROR("Unable to get CablingService"); + //ToolHandle<LArSuperCellCablingTool> larcab("LArSuperCellCablingTool"); + //if(larcab.retrieve().isFailure()){ + ATH_MSG_ERROR("Not working for SC, use the conditions Alg"); return StatusCode::FAILURE; - } else m_cablingService = (LArCablingBase*) &(*larcab); + //} else m_cablingService = (LArCablingBase*) &(*larcab); } diff --git a/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.h b/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.h index 129e7741e54c3e391f2709674d69554e310c46e9..43f2431852bb9bc78ff1dbaf12fbc0c9db278b33 100644 --- a/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.h +++ b/LArCalorimeter/LArRecUtils/src/LArADC2MeVTool.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- C++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -39,7 +39,6 @@ #include "AthenaBaseComps/AthAlgTool.h" -class LArCablingService ; class LArADC2MeVTool: public AthAlgTool, virtual public ILArADC2MeVTool, diff --git a/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.cxx b/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.cxx index 70032738db290899c70e41c7c24ccaa940d8cf01..a9c707f077ebfc84c87f1b6173de97ae641981c9 100644 --- a/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArAutoCorrNoiseTool.h" @@ -17,8 +17,6 @@ LArAutoCorrNoiseTool::LArAutoCorrNoiseTool(const std::string& type, m_Nsampl(5),m_MCSym(true), m_lar_on_id(nullptr), m_lar_scon_id(nullptr), - m_cablingService("LArCablingService"), - m_cablingSCService("LArSuperCellCablingTool"), m_larmcsym("LArMCSymTool"), m_keyAutoCorr("LArAutoCorr"), m_cacheValid(false),m_loadAtBegin(true), @@ -49,14 +47,10 @@ StatusCode LArAutoCorrNoiseTool::initialize() } if ( m_isSC ){ - ATH_CHECK( detStore()->retrieve(m_lar_scon_id,"LArOnline_SuperCellID") ); - ATH_CHECK( m_cablingSCService.retrieve() ); - m_cablingService.disable(); + ATH_CHECK( m_cablingKeySC.initialize() ); } // m_isSC else { - ATH_CHECK( detStore()->retrieve(m_lar_on_id,"LArOnlineID") ); - ATH_CHECK( m_cablingService.retrieve() ); - m_cablingSCService.disable(); + ATH_CHECK( m_cablingKey.initialize() ); if (m_MCSym) { ATH_CHECK( m_larmcsym.retrieve() ); } else { @@ -108,19 +102,23 @@ StatusCode LArAutoCorrNoiseTool::getTerms() // get HWIdentifier iterator std::vector<HWIdentifier>::const_iterator it ; std::vector<HWIdentifier>::const_iterator it_e; - LArCablingBase* cable(0); + const LArOnOffIdMapping* cable(0); unsigned int ngains(3); if ( m_isSC ){ - it =m_lar_scon_id->channel_begin(); - it_e =m_lar_scon_id->channel_end(); - LArSuperCellCablingTool* tcable = &(*m_cablingSCService); - cable = (LArCablingBase*)tcable; - ngains=1; + it =m_lar_scon_id->channel_begin(); + it_e =m_lar_scon_id->channel_end(); + ngains=1; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKeySC}; + cable = *cablingHdl; } else { - it =m_lar_on_id->channel_begin(); - it_e =m_lar_on_id->channel_end(); - LArCablingService* tcable = &(*m_cablingService); - cable = (LArCablingService*)tcable; + it =m_lar_on_id->channel_begin(); + it_e =m_lar_on_id->channel_end(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + cable = *cablingHdl; + } + if(!cable) { + ATH_MSG_ERROR("Do not have proper cabling !!!"); + return StatusCode::FAILURE; } // resize vector to #(gain) = 3 @@ -258,11 +256,19 @@ LArAutoCorrNoiseTool::autoCorrSqrt(const Identifier& CellID, throw LArConditionsException("Could not compute in LArAutoCorrNoiseTool::autoCorrSqrt"); } } + const LArOnOffIdMapping* cable(0); + if ( m_isSC ){ + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKeySC}; + cable = *cablingHdl; + } else { + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + cable = *cablingHdl; + } HWIdentifier id; if (!m_isSC && m_MCSym) id = m_larmcsym->symOnline(CellID); else - id = m_cablingService->createSignalChannelID(CellID); + id = cable->createSignalChannelID(CellID); unsigned int id32 = id.get_identifier32().get_compact(); MAP::const_iterator it = (m_terms[gain]).find(id32) ; diff --git a/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.h b/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.h index c47ccf966036f5cebc8a782eed4a3cd7a314c81d..479f407611a1e95a44eb45cce4f80c20ca761805 100644 --- a/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.h +++ b/LArCalorimeter/LArRecUtils/src/LArAutoCorrNoiseTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -26,8 +26,8 @@ #include "LArElecCalib/ILArAutoCorr.h" #include "StoreGate/DataHandle.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "LArElecCalib/ILArMCSymTool.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArOnline_SuperCellID.h" @@ -77,9 +77,10 @@ class LArAutoCorrNoiseTool: public AthAlgTool, const LArOnlineID* m_lar_on_id; const LArOnline_SuperCellID* m_lar_scon_id; - ToolHandle<LArCablingService> m_cablingService; - ToolHandle<LArSuperCellCablingTool> m_cablingSCService; ToolHandle<ILArMCSymTool> m_larmcsym; + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKeySC{this,"ScCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; const DataHandle<ILArAutoCorr> m_dd_autocorr; //only electronic part diff --git a/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.cxx b/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.cxx index 456bfa6c1de3257c573522be79781e7ce40133c3..2c81adb18e3621283b498780d16bb603d4eb6305 100644 --- a/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArAutoCorrTotalTool.h" @@ -7,8 +7,7 @@ #include "LArElecCalib/LArConditionsException.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArOnline_SuperCellID.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" +#include "LArCabling/LArCablingLegacyService.h" #include <cmath> ///////////////////////////////////////////////////////////////////////////// @@ -67,19 +66,14 @@ StatusCode LArAutoCorrTotalTool::initialize() ATH_CHECK( detStore()->retrieve(laron,"LArOnlineID") ); m_lar_on_id = (LArOnlineID_Base*) laron; - ToolHandle<LArCablingService> larcab("LArCablingService"); + ToolHandle<LArCablingLegacyService> larcab("LArCablingLegacyService"); ATH_CHECK( larcab.retrieve() ); m_cablingService = (LArCablingBase*) &(*larcab); } else { - const LArOnline_SuperCellID* laron = nullptr; - ATH_CHECK( detStore()->retrieve(laron,"LArOnline_SuperCellID") ); - m_lar_on_id = (LArOnlineID_Base*) laron; - - ToolHandle<LArSuperCellCablingTool> larcab("LArSuperCellCablingTool"); - ATH_CHECK( larcab.retrieve() ); - m_cablingService = (LArCablingBase*) &(*larcab); + ATH_MSG_ERROR("LArAutoCorrTotalTool deprecated, not working for SC"); + return StatusCode::FAILURE; } //retrieves helpers for LArCalorimeter diff --git a/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.h b/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.h index a36512a46f840e6c4111550daca64561a29d0ef8..c633bc200cb7ab2dd1f849d563f06a880ca7516b 100644 --- a/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.h +++ b/LArCalorimeter/LArRecUtils/src/LArAutoCorrTotalTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** diff --git a/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.cxx b/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.cxx index 7a7c4c65ba171ee0896b6f121efe78b4a1edc732..a57a496306f4ec640e7118f7d96e6d4f57e5a220 100644 --- a/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -21,7 +21,7 @@ PURPOSE: Scales down the energy of cells due to simulated #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/CaloCell_ID.h" #include "CaloDetDescr/CaloDetDescrManager.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" @@ -57,7 +57,7 @@ StatusCode LArCellFakeProbElectronics::initialize() IToolSvc* toolSvc = nullptr; ATH_CHECK( service( "ToolSvc",toolSvc ) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_cablingService) ); + ATH_CHECK( toolSvc->retrieveTool("LArCablingLegacyService",m_cablingService) ); // convert string identifiers m_inputStringIDs into identifiers m_inputIDs ATH_CHECK( read_problems() ); diff --git a/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.h b/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.h index 7a975108c6d7c367c9e907df6277a3793cb9c603..abe51433db6671b984051289a728633c8df27d03 100644 --- a/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.h +++ b/LArCalorimeter/LArRecUtils/src/LArCellFakeProbElectronics.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARRECUTILS_LARCELLFAKEPROBELECTRONICS_H @@ -23,7 +23,7 @@ #include "Identifier/HWIdentifier.h" class StoreGateSvc; -class LArCablingService; +class LArCablingLegacyService; class LArOnlineID; class LArCellFakeProbElectronics : public AthAlgTool, virtual public ICellWeightTool @@ -49,8 +49,8 @@ class LArCellFakeProbElectronics : public AthAlgTool, virtual public ICellWeigh /*! process jobOptions and add affected cells to list */ StatusCode add_cell(int iBarrel,int iSide,int iFT,int iSlot,int iChannel, double weight); - /*! pointer to LArCablingService */ - LArCablingService* m_cablingService; + /*! pointer to LArCablingLegacyService */ + LArCablingLegacyService* m_cablingService; /*! pointer to LAr Online ID helper */ const LArOnlineID* m_onlineHelper; diff --git a/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.cxx b/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.cxx index e24d95cc884a515fa5c0534c8e08b3d1c42edc3d..c09f3e35d5393b0385bd885a7a66032c2c7adc5e 100644 --- a/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArHVCorrTool.h" @@ -34,7 +34,7 @@ LArHVCorrTool::LArHVCorrTool(const std::string& type, m_larhec_id(NULL), m_larfcal_id(NULL), m_electrodeID(NULL), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_hvtool("LArHVToolMC") { declareInterface<ILArHVCorrTool>(this); diff --git a/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.h b/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.h index 22fc264aad8c240e5e859384b3a3714c084cc475..bce0b2ae3ca17dd22ce1b9fed9d2e53977b50a06 100644 --- a/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.h +++ b/LArCalorimeter/LArRecUtils/src/LArHVCorrTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -15,7 +15,7 @@ #include "GaudiKernel/ToolHandle.h" #include "StoreGate/DataHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/LArID.h" @@ -25,7 +25,6 @@ #include "LArRawConditions/LArTdriftComplete.h" class StoreGateSvc; -class LArCablingService ; class LArElectrodeID; class LArHVCorrTool: public AthAlgTool, @@ -74,7 +73,7 @@ class LArHVCorrTool: public AthAlgTool, const DataHandle<CaloIdManager> m_caloIdMgr; const DataHandle<CaloDetDescrManager> m_calodetdescrmgr; - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; ToolHandle<ILArHVTool> m_hvtool; float Scale_barrel(const float hv) const; diff --git a/LArCalorimeter/LArRecUtils/src/LArOFCTool.cxx b/LArCalorimeter/LArRecUtils/src/LArOFCTool.cxx index 6f6787b217ff1cae8600e040a8927d2216f1530d..dd212ff648a45ab33a257c2ba94cc72c594fed19 100644 --- a/LArCalorimeter/LArRecUtils/src/LArOFCTool.cxx +++ b/LArCalorimeter/LArRecUtils/src/LArOFCTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArOFCTool.h" @@ -15,8 +15,7 @@ #include "CaloDetDescr/CaloDetDescrElement.h" #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" -#include "LArCabling/LArSuperCellCablingTool.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArOnline_SuperCellID.h" @@ -97,11 +96,10 @@ StatusCode LArOFCTool::initialize() IToolSvc* toolSvc = nullptr; ATH_CHECK( service( "ToolSvc",toolSvc ) ); if ( m_isSC ) { - ToolHandle<LArSuperCellCablingTool> tool("LArSuperCellCablingTool"); - ATH_CHECK( tool.retrieve() ); - m_cablingService = (LArCablingBase*)& (*tool); + ATH_MSG_ERROR("LArOFCTool deprecated, not working for SC"); + return StatusCode::FAILURE; } else { - ToolHandle<LArCablingService> tool("LArCablingService"); + ToolHandle<LArCablingLegacyService> tool("LArCablingLegacyService"); ATH_CHECK( tool.retrieve() ); m_cablingService = (LArCablingBase*)& (*tool); } diff --git a/LArCalorimeter/LArRecUtils/src/LArOFCTool.h b/LArCalorimeter/LArRecUtils/src/LArOFCTool.h index bf79b47bbcc11cf2a635c9cdd9c55cdd898ed4f6..92f5e8f80733ade780962ecceb0d4f61adba539c 100644 --- a/LArCalorimeter/LArRecUtils/src/LArOFCTool.h +++ b/LArCalorimeter/LArRecUtils/src/LArOFCTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** diff --git a/LArCalorimeter/LArRecUtils/src/MakeLArCellFromRaw.cxx b/LArCalorimeter/LArRecUtils/src/MakeLArCellFromRaw.cxx index 527143952226f1b6f41334d11c798ec8dc956e0d..ee6788a58d11ad72d57d1b15591581e508707bce 100644 --- a/LArCalorimeter/LArRecUtils/src/MakeLArCellFromRaw.cxx +++ b/LArCalorimeter/LArRecUtils/src/MakeLArCellFromRaw.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // implementation of MakeLArCellFromRaw @@ -15,7 +15,7 @@ #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArRawUtils/LArRoI_Map.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" @@ -75,10 +75,10 @@ void MakeLArCellFromRaw::initialize( const LArRoI_Map* roiMap , log <<MSG::ERROR << "cannot find ToolSvc in MakeLArCellFromRaw " << endmsg; return; } - sc = p_toolSvc->retrieveTool("LArCablingService",m_cablingSvc); + sc = p_toolSvc->retrieveTool("LArCablingLegacyService",m_cablingSvc); if (sc.isFailure()) { - log <<MSG::INFO<< "cannot find LArCablingService in MakeLArCellFromRaw " << endmsg; + log <<MSG::INFO<< "cannot find LArCablingLegacyService in MakeLArCellFromRaw " << endmsg; return; } diff --git a/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorCheckOL.h b/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorCheckOL.h old mode 100755 new mode 100644 index 4dbd34a0589cf4620f7a336721bdf14536b6ef66..ea08047457e4f472bf004d640aa48037647a11c0 --- a/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorCheckOL.h +++ b/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorCheckOL.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArRegionSelector_LArRegionSelectorCheckOL_h @@ -14,7 +14,6 @@ class CaloDetDescrManager; class CaloTTDescrManager; class CaloLVL1_ID; -class LArCablingService; class CaloTriggerTowerService; ///////////////////////////////////////////////////////////////////////////// @@ -46,8 +45,8 @@ private: const CaloTTDescrManager* m_ttman; const CaloLVL1_ID* m_TT_ID; IToolSvc* m_toolSvc; - LArCablingService* m_cablingSvc; CaloTriggerTowerService* m_ttSvc; + }; #endif // LArRegionSelector_LArRegionSelectorCheckOL_h diff --git a/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorTable.h b/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorTable.h old mode 100755 new mode 100644 index 6899fa8b95d78770a0f40b5775318a0288b3214f..aef745638c433294a343e4c5267375168624f02a --- a/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorTable.h +++ b/LArCalorimeter/LArRegionSelector/LArRegionSelector/LArRegionSelectorTable.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArRegionSelector_LArRegionSelectorTable_h @@ -20,7 +20,6 @@ class RegionSelectorLUT; class CaloTTDescrManager; class CaloLVL1_ID; class LArRoI_Map; -class LArCablingService; ///////////////////////////////////////////////////////////////////////////// diff --git a/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorCheckOL.cxx b/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorCheckOL.cxx old mode 100755 new mode 100644 index f886e18ba3ded7ccbc90376119835a3c4c622fb0..9b0ffeff3d6bd646128e6045040bdf6ff036f000 --- a/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorCheckOL.cxx +++ b/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorCheckOL.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRegionSelector/LArRegionSelectorCheckOL.h" @@ -15,7 +15,6 @@ #include "CaloTTDetDescr/CaloTTDescrManager.h" #include "CaloTTDetDescr/CaloTTDescrRegion.h" #include "CaloIdentifier/CaloLVL1_ID.h" -#include "LArCabling/LArCablingService.h" #include "CaloTriggerTool/CaloTriggerTowerService.h" #include "RegionSelector/IRegionLUT_Creator.h" @@ -32,7 +31,6 @@ LArRegionSelectorCheckOL::LArRegionSelectorCheckOL m_ttman(0), m_TT_ID(0), m_toolSvc(0), - m_cablingSvc(0), m_ttSvc(0) { declareProperty("TestTable", m_testTable); @@ -56,9 +54,6 @@ StatusCode LArRegionSelectorCheckOL::initialize(){ ATH_CHECK( service( "ToolSvc",m_toolSvc ) ); - ATH_CHECK( m_toolSvc->retrieveTool("LArCablingService",m_cablingSvc) ); - ATH_MSG_DEBUG ( "Successfully retrieved LArCablingSvc" ); - ATH_CHECK( m_toolSvc->retrieveTool("CaloTriggerTowerService",m_ttSvc) ); ATH_MSG_DEBUG ( "Successfully retrieved CaloTriggerTowerSvc" ); diff --git a/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorTable.cxx b/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorTable.cxx old mode 100755 new mode 100644 index f97e3870312a4eedbae6b01979aa9ae316eb7f4c..1bcc38cc6d1dda81a2fb1906b304c64debf75a9e --- a/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorTable.cxx +++ b/LArCalorimeter/LArRegionSelector/src/LArRegionSelectorTable.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArRegionSelector/LArRegionSelectorTable.h" @@ -84,7 +84,7 @@ StatusCode LArRegionSelectorTable::initialize(){ ATH_CHECK( detStore()->retrieve(m_TT_ID) ); ATH_MSG_DEBUG ( "CaloLVL1_ID helper found" ); - // Retrieve needed tools: LArRoI_Map, LArCablingSvc + // Retrieve needed tools: LArRoI_Map IToolSvc* toolSvc = nullptr; ATH_CHECK( service( "ToolSvc",toolSvc) ); diff --git a/LArCalorimeter/LArTest/LArConditionsTest/CMakeLists.txt b/LArCalorimeter/LArTest/LArConditionsTest/CMakeLists.txt index a29df7acb537d836f9a4dccc51349bece391ff9a..8f48269529589efbace7b1372d98600cfb38cf35 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/CMakeLists.txt +++ b/LArCalorimeter/LArTest/LArConditionsTest/CMakeLists.txt @@ -63,7 +63,7 @@ function (larconditions_run_test testName) SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/larconditions_${testName}.sh ENVIRONMENT ATLAS_REFERENCE_TAG=LArConditionsTest/LArConditionsTest-01-00-12 PROPERTIES TIMEOUT 1200 - EXTRA_PATTERNS "Data source lookup|Resolved path|Failed to connect to service|Release number|Sorting algorithm|Failed to connect|Failure while attempting to connect|Reading file|^CORAL/|being retired|^Domain|INFO GeoModelSvc|locate catalog|Cache alignment|COOL_DISABLE|Failed to get ContainerHandle|^RalSessionMgr Info|^RelationalDatabase Info|Bootstrap.py" + EXTRA_PATTERNS "Data source lookup|Resolved path|Failed to connect to service|Release number|Sorting algorithm|Failed to connect|Failure while attempting to connect|Reading file|^CORAL/|being retired|^Domain|INFO GeoModelSvc|locate catalog|Cache alignment|COOL_DISABLE|Failed to get ContainerHandle|^RalSessionMgr Info|^RelationalDatabase Info|Bootstrap.py|MetaDataSvc|xAODMaker" ) if( ARG_DEPENDS ) set_tests_properties( LArConditionsTest_${testName}_ctest diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/FixLArElecCalib.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/FixLArElecCalib.h old mode 100755 new mode 100644 index 05278b5bf60fe3c8504bf856e06834817aa9f784..b156e546149c87266de05c91b3fce3a0b797e9ec --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/FixLArElecCalib.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/FixLArElecCalib.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef FIXLARELECCALIB_H @@ -8,6 +8,9 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "Identifier/HWIdentifier.h" #include "StoreGate/StoreGateSvc.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include <string> class LArEM_ID ; @@ -15,7 +18,6 @@ class LArHEC_ID; class LArFCAL_ID; class LArOnlineID; class LArOnline_SuperCellID; -class LArCablingService; class CaloCell_SuperCell_ID; #include "LArRawConditions/LArDAC2uAMC.h" @@ -109,8 +111,8 @@ class FixLArElecCalib : public AthAlgorithm const LArFCAL_SuperCell_ID* m_sfcal_idhelper; const LArOnline_SuperCellID* m_sonline_idhelper; const CaloCell_SuperCell_ID* m_scell_idhelper; - LArCablingService* m_cablingSvc ; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; typedef std::pair<HWIdentifier,std::vector<float> > ROW ; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCablingTest.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCablingTest.h index 82036fc21c6635b65784f280bec3b9755ca9f4d1..9a29a70dc7cc7df2d702afb6292023b318344919 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCablingTest.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCablingTest.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCABLINGTEST_H @@ -9,8 +9,12 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" #include "Identifier/HWIdentifier.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" +#include "LArRecConditions/LArFebRodMapping.h" + -class LArCablingService; class LArOnlineID; class CaloCell_ID; @@ -25,13 +29,17 @@ class LArCablingTest : public AthAlgorithm StatusCode execute() ; StatusCode finalize(){return StatusCode::SUCCESS;} private: - ToolHandle<LArCablingService> m_larCablingSvc; + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; + SG::ReadCondHandleKey<LArFebRodMapping> m_RodKey{this, "FebRodKey", "LArFebRodMap", "SG ROD mapping key"}; + bool m_print; unsigned m_mode; const LArOnlineID* m_onlineId; const CaloCell_ID* m_caloCellId; - void print (const HWIdentifier& hwid, std::ostream& out); + void print (const HWIdentifier& hwid, std::ostream& out, const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont); }; #endif diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCondDataTest.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCondDataTest.h old mode 100755 new mode 100644 index 2fda71d79754345efde814c73e95f9b253b5307c..7defff5a9b31fbf78ec52f4102738eae3db9e3d2 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCondDataTest.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArCondDataTest.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -24,9 +24,12 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/IIncidentListener.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" +#include "LArRecConditions/LArFebRodMapping.h" class StoreGateSvc; -class LArCablingService; class LArOnlineID; class LArEM_ID; @@ -44,8 +47,9 @@ public: StatusCode finalize(); private: - // cabling Service - LArCablingService* m_cablingSvc ; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; + SG::ReadCondHandleKey<LArFebRodMapping> m_RodKey{this, "FebRodKey", "LArFebRodMap", "SG ROD mapping key"}; const LArOnlineID* m_onlineID; const LArOnlineID* m_emid; int m_tbin; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArConditionsTestAlg.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArConditionsTestAlg.h old mode 100755 new mode 100644 index 34edec289cde7e50effaeb0c4ded528c0146fa28..6fdec0918f490480c22b65303c2484d4d8995b63 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArConditionsTestAlg.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArConditionsTestAlg.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -31,6 +31,10 @@ #include "LArElecCalib/ILArRamp.h" #include "StoreGate/DataHandle.h" //#include "AthenaKernel/IOVSvcDefs.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" +#include "LArRecConditions/LArFebRodMapping.h" #include "LArElecCalib/ILArShape.h" #include "LArElecCalib/ILArNoise.h" @@ -45,10 +49,10 @@ #include "LArConditionsTest/LArRampPTmp.h" -class LArCablingService; class LArOnlineID; class GenericDbTable; class LArRampMC; +class LArCablingLegacyService; class LArConditionsTestAlg : public AthAlgorithm, public IIncidentListener { @@ -101,8 +105,7 @@ private: std::vector<LArRampPTmp> m_rampCache; std::vector<LArRampPTmp> m_rampCorrections; - // cabling Service - LArCablingService* m_cablingSvc ; + const LArCablingLegacyService * m_cablingSvc; const LArOnlineID* m_onlineID; BooleanProperty m_testFill; BooleanProperty m_testCondObjs; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArFebRodMapConvert.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArFebRodMapConvert.h index 71d9855c476264853837a0eb29a43fae08dcf8d0..0fc4ad24628ff439d3fdca5dd8824eac663f8c88 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArFebRodMapConvert.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArFebRodMapConvert.h @@ -1,7 +1,7 @@ ///////////////////////// -*- C++ -*- ///////////////////////////// /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONSTEST_LARFEBRODMAPCONVERT_H @@ -16,7 +16,8 @@ #include "CaloIdentifier/CaloCell_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArRecConditions/LArFebRodMapping.h" #include <iostream> @@ -44,7 +45,7 @@ class LArFebRodMapConvert const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingSvc; + SG::ReadCondHandleKey<LArFebRodMapping> m_RodKey{this, "FebRodKey", "LArFebRodMap", "SG ROD mapping key"}; }; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArIdMapConvert.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArIdMapConvert.h index 682e088c6d89fb0347b3603008f8de14f5c9d9c2..4e79682571a102f75d992904fba720eb4972c5d3 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArIdMapConvert.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArIdMapConvert.h @@ -1,7 +1,7 @@ ///////////////////////// -*- C++ -*- ///////////////////////////// /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONSTEST_LARIDMAPCONVERT_H @@ -12,11 +12,12 @@ // FrameWork includes #include "AthenaBaseComps/AthAlgorithm.h" -#include "GaudiKernel/ToolHandle.h" #include "CaloIdentifier/CaloCell_ID.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArCalibLineMapping.h" #include <iostream> @@ -39,14 +40,16 @@ class LArIdMapConvert private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArCalibLineMapping> m_CLKey{this, "CalibLineKey", "LArCalibLineMap", "SG calib line key"}; + /// Default constructor: LArIdMapConvert(); - void print (const HWIdentifier& hwid, std::ostream& out=std::cout); + void print (const HWIdentifier& hwid, std::ostream& out, const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont); const LArOnlineID* m_onlineID; const CaloCell_ID* m_caloCellID; - ToolHandle<LArCablingService> m_cablingSvc; }; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArShapeToSCShape.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArShapeToSCShape.h index 7870ce076e9407f064e7ac1e1648538dbd280073..1605e0fec6872a9fb9804e2a4528bc6e2a2d0faa 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArShapeToSCShape.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/LArShapeToSCShape.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LARCONDITIONSTEST_LARSHAPETOSCSHAPE_H @@ -10,8 +10,8 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "CaloDetDescr/ICaloSuperCellIDTool.h" -#include "LArCabling/LArSuperCellCablingTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "GaudiKernel/ToolHandle.h" @@ -45,10 +45,10 @@ class LArShapeToSCShape /// Default constructor: LArShapeToSCShape(); + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingSCKey{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; ToolHandle<ICaloSuperCellIDTool> m_scidTool; - ToolHandle<LArSuperCellCablingTool> m_scCablingTool; - ToolHandle<LArCablingService> m_cablingService; }; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/TestLArConditionsTools.h b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/TestLArConditionsTools.h index d7eee23864617204e22d1405d6385ba9fec112bd..085f84202ca1def4d42ce7d7c423e456e1f311c4 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/TestLArConditionsTools.h +++ b/LArCalorimeter/LArTest/LArConditionsTest/LArConditionsTest/TestLArConditionsTools.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TESTLARCONDITIONSTOOLS_H @@ -17,6 +17,8 @@ class CaloCell_ID; #include "LArElecCalib/ILArAutoCorrNoiseTool.h" #include "LArElecCalib/ILArAutoCorrTotalTool.h" #include "LArRawUtils/LArRoI_Map.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" class TestLArConditionsTools : public AthAlgorithm { @@ -31,6 +33,8 @@ class TestLArConditionsTools : public AthAlgorithm private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + StatusCode testCaloNoiseDDE(); StatusCode testCaloCellNoise(); StatusCode testLArRoI_Map(); diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref new file mode 100644 index 0000000000000000000000000000000000000000..e27fefc85b1e0aa2747685d663ea13da843130c6 --- /dev/null +++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref @@ -0,0 +1,6925 @@ +Thu Jan 31 20:36:25 CET 2019 +Preloading tcmalloc_minimal.so +Py:Athena INFO including file "AthenaCommon/Preparation.py" +Py:Athena INFO using release [WorkDir-22.0.1] [x86_64-slc6-gcc62-opt] [remove_LArCablingSvc/c056906] -- built on [2019-01-30T2114] +Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" +Py:Athena INFO executing ROOT6Setup +Py:Athena INFO including file "AthenaCommon/Execution.py" +Py:Athena INFO including file "LArConditionsTest/LArConditionsTest_jobOptions.py" +Py:Athena INFO including file "AthenaCommon/Atlas_Gen.UnixStandardJob.py" +Py:Athena INFO including file "AtlasGeoModel/SetGeometryVersion.py" +AtlasGeoModel/SetGeometryVersion.py is OBSOLETE +SetGeometryVersion.py obtained major release version 22 +Py:Athena INFO including file "AtlasGeoModel/GeoModelInit.py" +AtlasGeoModel/GeoModelInit.py is OBSOLETE +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:ConfigurableDb INFO Read module info for 5489 configurables from 46 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +EventInfoMgtInit: Got release version Athena-22.0.1 +Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 +Py:Athena INFO including file "LArRawConditions/LArIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "LArConditionsCommon/LArIdMap_MC_jobOptions.py" +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/OnOffIdMap with tag LARIdentifierOnOffIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/CalibIdMap with tag LARIdentifierCalibIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/FebRodMap with tag LARIdentifierFebRodMap-005 +Py:Athena INFO including file "LArIdCnv/LArIdCnv_joboptions.py" +Py:Athena INFO including file "LArTools/LArTools_jobOptions.py" +Py:Athena INFO including file "CaloIdCnv/CaloIdCnv_joboptions.py" +Py:Athena INFO including file "CaloConditions/CaloConditions_jobOptions.py" +Py:Athena INFO including file "CaloConditions/LArTTCellMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloConditions/CaloTTIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py" +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:Athena INFO including file "LArCondAthenaPool/LArCondAthenaPool_joboptions.py" +Py:Athena INFO including file "AthenaSealSvc/AthenaSealSvc_joboptions.py" +Py:AthenaSealSvc INFO DictNames: [] +Py:Athena INFO including file "AthenaCommon/runbatch.py" +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v30r5) + running on pckeatlas05.cern.ch on Thu Jan 31 20:36:33 2019 +==================================================================================================================================== +ApplicationMgr INFO Successfully loaded modules : AthenaServices +ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +StatusCodeSvc INFO initialize +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 3320 CLIDRegistry entries for module ALL +CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) +CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled +PoolSvc INFO Frontier compression level set to 5 +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pckeatlas05.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +PoolSvc INFO Successfully setup replica sorting algorithm +PoolSvc INFO Setting up APR FileCatalog and Streams +PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml +PoolSvc INFO POOL WriteCatalog is file:Catalog1.xml +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) +IOVDbSvc INFO Opened read transaction for POOL PersistencySvc +IOVDbSvc INFO Only 5 POOL conditions files will be open at once +IOVDbSvc INFO Cache alignment will be done in 3 slices +IOVDbSvc INFO Global tag: OFLCOND-CSC-00-01-00 set from joboptions +IOVDbSvc INFO Folder /LAR/Identifier/OnOffIdMap, adding new key tag with value LARIdentifierOnOffIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/CalibIdMap, adding new key tag with value LARIdentifierCalibIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/FebRodMap, adding new key tag with value LARIdentifierFebRodMap-005 +IOVDbFolder INFO Read from meta data only for folder /TagInfo +IOVDbSvc INFO Initialised with 3 connections and 10 folders +IOVDbSvc INFO Service IOVDbSvc initialised successfully +IOVDbSvc INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found. +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" +IOVSvcTool INFO IOVRanges will be checked at every Event +IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Added taginfo remove for /LAR/Align +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/CalibIdMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/FebRodMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/OnOffIdMap +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /LAR/LArCellPositionShift +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/LArTTCellMapAtlas +ClassIDSvc INFO getRegistryEntries: read 2091 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 18 CLIDRegistry entries for module ALL +DetDescrCnvSvc INFO initializing +DetDescrCnvSvc INFO Found DetectorStore service +DetDescrCnvSvc INFO filling proxies for detector managers +DetDescrCnvSvc INFO filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for IdDict with CLID 2411 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for AtlasID with CLID 164875623 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for PixelID with CLID 2516 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SCT_ID with CLID 2517 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TRT_ID with CLID 2518 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SiliconID with CLID 129452393 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileID with CLID 2901 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileHWID with CLID 2902 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileTBID with CLID 2903 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for ZdcID with CLID 190591643 and storage type 68 to detector store +GeoModelSvc::RD...WARNING Getting PixTBMatComponents with default tag +GeoModelSvc::RD...WARNING Getting PixTBMaterials with default tag +GeoModelSvc::RD...WARNING Getting InDetMatComponents with default tag +GeoModelSvc::RD...WARNING Getting InDetMaterials with default tag +LAr::DetectorFa... INFO new description with barrel croystat bolts +LAr::DetectorFa... INFO new coil bumper description +BarrelConstruction INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01 +BarrelConstruction INFO Makes detailed absorber sandwich ? 1 1 +BarrelConstruction INFO Use sagging in geometry ? 0 +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventPersistenc... INFO Added successfully Conversion service:DetDescrCnvSvc +ClassIDSvc INFO getRegistryEntries: read 5728 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileTBID helper object in the detector store +IdDictDetDescrCnv INFO in initialize +IdDictDetDescrCnv INFO in createObj: creating a IdDictManager object in the detector store +IdDictDetDescrCnv INFO IdDictName: IdDictParser/ATLAS_IDS.xml +IdDictDetDescrCnv INFO Reading InnerDetector IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Reading LArCalorimeter IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Reading TileCalorimeter IdDict file IdDictParser/IdDictTileCalorimeter.xml +IdDictDetDescrCnv INFO Reading Calorimeter IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Found id dicts: +IdDictDetDescrCnv INFO Using dictionary tag: null +IdDictDetDescrCnv INFO Dictionary ATLAS version default DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary Calorimeter version default DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Dictionary ForwardDetectors version default DetDescr tag ForDetIdentifier-01 file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Dictionary InnerDetector version IBL-DBM DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Dictionary LArCalorimeter version fullAtlas DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Dictionary LArElectrode version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary LArHighVoltage version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary MuonSpectrometer version R.03 DetDescr tag MuonIdentifier-08 file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Dictionary TileCalorimeter version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00 file IdDictParser/IdDictTileCalorimeter.xml +TileTBID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +EndcapDMConstru... INFO Start building EC electronics geometry +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +EndcapDMConstru... INFO Start building EC electronics geometry +TileDddbManager INFO m_tag = ATLAS-R2-2016-01-00-01 +TileDddbManager INFO n_tiglob = 5 +TileDddbManager INFO n_timod = 320 +TileDddbManager INFO n_cuts = 9 +TileDddbManager INFO n_saddle = 1 +TileDddbManager INFO n_tilb = 21 +TileDddbManager INFO n_tileSwitches = 1 +ClassIDSvc INFO getRegistryEntries: read 213 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileNeighbour_reduced.txt +TileHWIDDetDesc... INFO in createObj: creating a TileHWID helper object in the detector store +TileHWID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +ClassIDSvc INFO getRegistryEntries: read 55 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal2DNeighbors-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsNext-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsPrev-April2011.txt +CaloIDHelper_ID... INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArMiniFCAL_ID INFO initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID. +AtlasDetectorID INFO initialize_from_dictionary - OK +TileDetDescrMan... INFO Entering create_elements() +ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 6969 CLIDRegistry entries for module ALL +CondInputLoader INFO Initializing CondInputLoader... +CondInputLoader INFO Adding base classes: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) -> +CondInputLoader INFO Will create WriteCondHandle dependencies for the following DataObjects: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) +LArConditionsTe... DEBUG Property update for OutputLevel : new value = 2 +LArConditionsTe... DEBUG TestCondObjs flag = 'TestCondObjs':True +LArConditionsTe... DEBUG ReadCondObjs flag = 'ReadCondObjs':False +LArConditionsTe... DEBUG WriteCondObjs flag = 'WriteCondObjs':True +LArConditionsTe... DEBUG WriteCorrections flag = 'WriteCorrections':True +LArConditionsTe... DEBUG ApplyCorrections flag = 'ApplyCorrections':True +LArConditionsTe... DEBUG TestFill flag = 'TestFill':False +LArConditionsTe... DEBUG TestReadDBDirect flag = 'TestReadDBDirect':False +LArConditionsTe... DEBUG Testbeam flag = 'Testbeam':False +LArOnlineIDDetD... INFO in createObj: creating a LArOnlineID helper object in the detector store +LArOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +LArConditionsTe... DEBUG initialize done +LArConditionsTe... DEBUG input handles: 0 +LArConditionsTe... DEBUG output handles: 0 +LArConditionsTe... DEBUG Data Deps for LArConditionsTestAlg +HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Enter McEventSelector Initialization +AthenaEventLoopMgr INFO Setup EventSelector service EventSelector +ApplicationMgr INFO Application Manager Initialized successfully +ClassIDSvc INFO getRegistryEntries: read 1248 CLIDRegistry entries for module ALL +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/CalibIdMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/FebRodMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/OnOffIdMap' +ApplicationMgr INFO Application Manager Started successfully +AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== +EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc +EventPersistenc... INFO Added successfully Conversion service:TagInfoMgr +ClassIDSvc INFO getRegistryEntries: read 109 CLIDRegistry entries for module ALL +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARAlign_CSC_01 for folder /LAR/Align +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARIdentifierLArTTCellMapAtlas-HadFcalFix for folder /LAR/Identifier/LArTTCellMapAtlas +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root File version:51304 +CaloMgrDetDescrCnv INFO in createObj: creating a Calo Detector Manager object in the detector store +CaloIdMgrDetDes... INFO in createObj: creating a CaloDescrManager object in the detector store +ClassIDSvc INFO getRegistryEntries: read 191 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloDM_ID helper object in the detector store +CaloDM_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloLVL1_ID helper object in the detector store +CaloLVL1_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a TTOnlineID helper object in the detector store +TTOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt +CaloIDHelper_ID... INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileSuperCellNeighbour.txt +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIdMgrDetDes... INFO Finished +CaloIdMgrDetDes... INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200 +AthenaEventLoopMgr INFO ===>>> start processing event #0, run #0 0 events processed so far <<<=== +LArOnOffMappingAlg INFO Done reading online/offline identifier mapping +LArOnOffMappingAlg INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +LArOnOffMappingAlg INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArCalibLineMap... INFO Done reading readout/calibration line mapping. +LArCalibLineMap... INFO recorded new LArCalibLineMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArFebRodMappin... INFO Done reading Feb/Rod mapping. Found 1524 Febs and 762 Rods +LArFebRodMappin... INFO recorded new LArFebRodMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArConditionsTe... DEBUG retrieve DataHandle<ILArRamp> in execute +LArConditionsTe... INFO in testCondObjects() +LArConditionsTe... INFO in createCompareObjects() +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG End of create comparison objects +LArConditionsTe... INFO in testChannelSet +LArConditionsTe... DEBUG Sizes OK: 20 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Iteration check OK +LArConditionsTe... DEBUG Find check OK +LArConditionsTe... INFO Created ramps for LArRampsSingleGroup +ClassIDSvc INFO getRegistryEntries: read 469 CLIDRegistry entries for module ALL +ToolSvc.LArCabl... INFO ====> iovCallBack +ToolSvc.LArCabl... INFO Done reading online/offline identifier mapping +ToolSvc.LArCabl... INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/OnOffIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/CalibIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/FebRodMap +ToolSvc.LArCabl... INFO Sucessfully initialized LArCablingLegacyService with 3 callbacks. +ToolSvc.LArMCSy... INFO IOV callback +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 16 0 16 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 16 ramps size 16 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SingleGroup test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects20 +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 25 0 25 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 25 ramps size 25 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SubDetectorGrouping test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects25088 +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 209 0 209 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 209 ramps size 209 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded FeedThroughGrouping test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects20 +LArConditionsTe... DEBUG Statistics for LArRampsFeedThroughGrouping +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG IOVs found: +LArConditionsTe... DEBUG Channel: 3 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 4 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 6 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 8 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 9 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 11 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 13 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 14 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 16 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 18 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 19 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 21 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 23 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 24 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 26 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 28 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 29 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 31 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 33 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 34 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 36 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 38 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 39 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 41 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 43 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 44 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 46 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 48 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 49 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 51 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 53 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 54 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 56 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 58 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 59 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 61 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 63 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 64 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 66 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 68 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 70 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 72 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 73 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 75 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 77 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 79 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 81 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 83 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 85 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 87 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 88 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 90 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 92 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 94 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 96 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 98 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 100 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 101 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 103 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 105 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 107 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 109 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 111 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 113 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 115 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 116 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 117 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 119 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 120 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 122 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 124 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 125 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 127 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 129 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 130 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 132 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 134 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 135 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 137 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 139 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 140 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 142 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 144 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 146 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 147 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 149 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 151 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 152 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 154 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 156 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 157 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 159 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 161 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 162 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 164 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 166 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 167 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 169 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 171 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 172 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 174 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 176 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 177 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 179 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 181 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 182 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 185 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 186 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 188 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 190 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 192 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 194 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 195 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 198 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 199 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 201 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 203 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 205 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 207 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 208 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 211 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 212 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 214 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 216 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 218 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 220 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 221 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 224 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 225 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 227 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 229 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 232 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 233 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 235 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 237 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 238 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 240 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 242 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 243 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 245 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 247 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 248 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 250 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 252 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 253 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 255 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 257 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 258 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 260 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 262 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 263 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 265 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 267 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 268 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 270 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 272 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 273 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 275 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 277 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 278 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 280 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 282 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 284 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 285 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 287 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 289 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 290 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 292 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 294 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 295 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 297 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 299 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 301 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 303 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 304 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 306 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 308 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 310 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 312 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 314 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 316 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 318 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 320 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 321 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 323 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 325 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 327 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 329 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 331 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 333 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 334 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 336 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 338 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 340 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 342 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 344 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 1005 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1006 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1007 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1008 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1017 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1018 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1019 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1020 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1025 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1029 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1030 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1031 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1032 number of conditions: 0 +LArConditionsTe... DEBUG Group: 0 number of conditions: 0 +LArConditionsTe... DEBUG Group: 1 number of conditions: 256 +LArConditionsTe... DEBUG Group: 2 number of conditions: 256 +LArConditionsTe... DEBUG Group: 3 number of conditions: 256 +LArConditionsTe... DEBUG Group: 4 number of conditions: 256 +LArConditionsTe... DEBUG Group: 5 number of conditions: 128 +LArConditionsTe... DEBUG Group: 6 number of conditions: 256 +LArConditionsTe... DEBUG Group: 7 number of conditions: 256 +LArConditionsTe... DEBUG Group: 8 number of conditions: 256 +LArConditionsTe... DEBUG Group: 9 number of conditions: 256 +LArConditionsTe... DEBUG Group: 10 number of conditions: 128 +LArConditionsTe... DEBUG Group: 11 number of conditions: 256 +LArConditionsTe... DEBUG Group: 12 number of conditions: 256 +LArConditionsTe... DEBUG Group: 13 number of conditions: 256 +LArConditionsTe... DEBUG Group: 14 number of conditions: 256 +LArConditionsTe... DEBUG Group: 15 number of conditions: 128 +LArConditionsTe... DEBUG Group: 16 number of conditions: 256 +LArConditionsTe... DEBUG Group: 17 number of conditions: 256 +LArConditionsTe... DEBUG Group: 18 number of conditions: 256 +LArConditionsTe... DEBUG Group: 19 number of conditions: 256 +LArConditionsTe... DEBUG Group: 20 number of conditions: 128 +LArConditionsTe... DEBUG Group: 21 number of conditions: 256 +LArConditionsTe... DEBUG Group: 22 number of conditions: 256 +LArConditionsTe... DEBUG Group: 23 number of conditions: 128 +LArConditionsTe... DEBUG Group: 24 number of conditions: 256 +LArConditionsTe... DEBUG Group: 25 number of conditions: 256 +LArConditionsTe... DEBUG Group: 26 number of conditions: 128 +LArConditionsTe... DEBUG Group: 27 number of conditions: 256 +LArConditionsTe... DEBUG Group: 28 number of conditions: 128 +LArConditionsTe... DEBUG Group: 29 number of conditions: 256 +LArConditionsTe... DEBUG Group: 30 number of conditions: 256 +LArConditionsTe... DEBUG Group: 31 number of conditions: 128 +LArConditionsTe... DEBUG Group: 32 number of conditions: 256 +LArConditionsTe... DEBUG Group: 33 number of conditions: 256 +LArConditionsTe... DEBUG Group: 34 number of conditions: 128 +LArConditionsTe... DEBUG Group: 35 number of conditions: 256 +LArConditionsTe... DEBUG Group: 36 number of conditions: 128 +LArConditionsTe... DEBUG Group: 37 number of conditions: 256 +LArConditionsTe... DEBUG Group: 38 number of conditions: 256 +LArConditionsTe... DEBUG Group: 39 number of conditions: 256 +LArConditionsTe... DEBUG Group: 40 number of conditions: 256 +LArConditionsTe... DEBUG Group: 41 number of conditions: 256 +LArConditionsTe... DEBUG Group: 42 number of conditions: 128 +LArConditionsTe... DEBUG Group: 43 number of conditions: 256 +LArConditionsTe... DEBUG Group: 44 number of conditions: 256 +LArConditionsTe... DEBUG Group: 45 number of conditions: 256 +LArConditionsTe... DEBUG Group: 46 number of conditions: 256 +LArConditionsTe... DEBUG Group: 47 number of conditions: 128 +LArConditionsTe... DEBUG Group: 48 number of conditions: 256 +LArConditionsTe... DEBUG Group: 49 number of conditions: 256 +LArConditionsTe... DEBUG Group: 50 number of conditions: 256 +LArConditionsTe... DEBUG Group: 51 number of conditions: 128 +LArConditionsTe... DEBUG Group: 52 number of conditions: 256 +LArConditionsTe... DEBUG Group: 53 number of conditions: 256 +LArConditionsTe... DEBUG Group: 54 number of conditions: 256 +LArConditionsTe... DEBUG Group: 55 number of conditions: 256 +LArConditionsTe... DEBUG Group: 56 number of conditions: 128 +LArConditionsTe... DEBUG Group: 57 number of conditions: 256 +LArConditionsTe... DEBUG Group: 58 number of conditions: 256 +LArConditionsTe... DEBUG Group: 59 number of conditions: 256 +LArConditionsTe... DEBUG Group: 60 number of conditions: 256 +LArConditionsTe... DEBUG Group: 61 number of conditions: 128 +LArConditionsTe... DEBUG Group: 62 number of conditions: 256 +LArConditionsTe... DEBUG Group: 63 number of conditions: 128 +LArConditionsTe... DEBUG Group: 64 number of conditions: 256 +LArConditionsTe... DEBUG Group: 65 number of conditions: 128 +LArConditionsTe... DEBUG Group: 66 number of conditions: 256 +LArConditionsTe... DEBUG Group: 67 number of conditions: 256 +LArConditionsTe... DEBUG Group: 68 number of conditions: 128 +LArConditionsTe... DEBUG Group: 69 number of conditions: 256 +LArConditionsTe... DEBUG Group: 70 number of conditions: 256 +LArConditionsTe... DEBUG Group: 71 number of conditions: 128 +LArConditionsTe... DEBUG Group: 72 number of conditions: 256 +LArConditionsTe... DEBUG Group: 73 number of conditions: 256 +LArConditionsTe... DEBUG Group: 74 number of conditions: 128 +LArConditionsTe... DEBUG Group: 75 number of conditions: 256 +LArConditionsTe... DEBUG Group: 76 number of conditions: 128 +LArConditionsTe... DEBUG Group: 77 number of conditions: 256 +LArConditionsTe... DEBUG Group: 78 number of conditions: 128 +LArConditionsTe... DEBUG Group: 79 number of conditions: 256 +LArConditionsTe... DEBUG Group: 80 number of conditions: 256 +LArConditionsTe... DEBUG Group: 81 number of conditions: 256 +LArConditionsTe... DEBUG Group: 82 number of conditions: 256 +LArConditionsTe... DEBUG Group: 83 number of conditions: 128 +LArConditionsTe... DEBUG Group: 84 number of conditions: 256 +LArConditionsTe... DEBUG Group: 85 number of conditions: 256 +LArConditionsTe... DEBUG Group: 86 number of conditions: 256 +LArConditionsTe... DEBUG Group: 87 number of conditions: 256 +LArConditionsTe... DEBUG Group: 88 number of conditions: 128 +LArConditionsTe... DEBUG Group: 89 number of conditions: 256 +LArConditionsTe... DEBUG Group: 90 number of conditions: 256 +LArConditionsTe... DEBUG Group: 91 number of conditions: 256 +LArConditionsTe... DEBUG Group: 92 number of conditions: 256 +LArConditionsTe... DEBUG Group: 93 number of conditions: 128 +LArConditionsTe... DEBUG Group: 94 number of conditions: 256 +LArConditionsTe... DEBUG Group: 95 number of conditions: 256 +LArConditionsTe... DEBUG Group: 96 number of conditions: 256 +LArConditionsTe... DEBUG Group: 97 number of conditions: 128 +LArConditionsTe... DEBUG Group: 98 number of conditions: 256 +LArConditionsTe... DEBUG Group: 99 number of conditions: 256 +LArConditionsTe... DEBUG Group: 100 number of conditions: 128 +LArConditionsTe... DEBUG Group: 101 number of conditions: 256 +LArConditionsTe... DEBUG Group: 102 number of conditions: 256 +LArConditionsTe... DEBUG Group: 103 number of conditions: 128 +LArConditionsTe... DEBUG Group: 104 number of conditions: 256 +LArConditionsTe... DEBUG Group: 105 number of conditions: 128 +LArConditionsTe... DEBUG Group: 106 number of conditions: 256 +LArConditionsTe... DEBUG Group: 107 number of conditions: 256 +LArConditionsTe... DEBUG Group: 108 number of conditions: 128 +LArConditionsTe... DEBUG Group: 109 number of conditions: 256 +LArConditionsTe... DEBUG Group: 110 number of conditions: 128 +LArConditionsTe... DEBUG Group: 111 number of conditions: 256 +LArConditionsTe... DEBUG Group: 112 number of conditions: 256 +LArConditionsTe... DEBUG Group: 113 number of conditions: 128 +LArConditionsTe... DEBUG Group: 114 number of conditions: 256 +LArConditionsTe... DEBUG +LArConditionsTe... DEBUG Gain: 0 number of conditions: 8448 +LArConditionsTe... DEBUG Gain: 1 number of conditions: 8320 +LArConditionsTe... DEBUG Gain: 2 number of conditions: 8320 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects 20 +LArConditionsTe... DEBUG End of testCondObjects +AthenaEventLoopMgr INFO ===>>> done processing event #0, run #0 1 events processed so far <<<=== +MetaDataSvc INFO MetaDataSvc::stop() +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] +ApplicationMgr INFO Application Manager Stopped successfully +IncidentProcAlg1 INFO Finalize +CondInputLoader INFO Finalizing CondInputLoader... +IncidentProcAlg2 INFO Finalize +EventSelector INFO finalize +IdDictDetDescrCnv INFO in finalize +IOVDbFolder INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/336 (( 0.41 ))s +IOVDbFolder INFO Folder /LAR/Identifier/CalibIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/3040296 (( 0.02 ))s +IOVDbFolder INFO Folder /LAR/Identifier/FebRodMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/12200 (( 0.06 ))s +IOVDbFolder INFO Folder /LAR/Identifier/OnOffIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/1560584 (( 0.21 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/390 (( 0.03 ))s +IOVDbFolder INFO Folder /LAR/Identifier/LArTTCellMapAtlas (PoolRef) db-read 1/0 objs/chan/bytes 1/1/346 (( 0.03 ))s +IOVDbFolder WARNING Folder /LAR/Identifier/LArTTCellMapAtlas is requested but no data retrieved +IOVDbSvc INFO bytes in (( 0.75 ))s +IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 6 ReadTime: (( 0.75 ))s +IOVDbSvc INFO Connection COOLOFL_CALO/OFLP200 : nConnect: 1 nFolders: 3 ReadTime: (( 0.00 ))s +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +*****Chrono***** INFO **************************************************************************************************** +*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) +*****Chrono***** INFO **************************************************************************************************** +cObjR_ALL INFO Time User : Tot= 340 [ms] Ave/Min/Max= 170(+- 160)/ 10/ 330 [ms] #= 2 +cObj_ALL INFO Time User : Tot= 410 [ms] Ave/Min/Max= 68.3(+- 140)/ 0/ 380 [ms] #= 6 +ChronoStatSvc INFO Time User : Tot= 3.82 [s] #= 1 +*****Chrono***** INFO **************************************************************************************************** +ChronoStatSvc.f... INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +Py:Athena INFO leaving with code 0: "successful run" diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref new file mode 100644 index 0000000000000000000000000000000000000000..7585b250203a65a785075d97ba701b68e64b58c5 --- /dev/null +++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref @@ -0,0 +1,6275 @@ +Fri Feb 1 09:17:11 CET 2019 +Preloading tcmalloc_minimal.so +Py:Athena INFO including file "AthenaCommon/Preparation.py" +Py:Athena INFO using release [WorkDir-22.0.1] [x86_64-slc6-gcc62-opt] [remove_LArCablingSvc/fa86075] -- built on [2019-02-01T0907] +Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" +Py:Athena INFO executing ROOT6Setup +Py:Athena INFO including file "AthenaCommon/Execution.py" +Py:Athena INFO including file "LArConditionsTest/LArConditionsTestReadNoReg_jobOptions.py" +Py:Athena INFO including file "AthenaCommon/Atlas_Gen.UnixStandardJob.py" +Py:Athena INFO including file "AtlasGeoModel/SetGeometryVersion.py" +AtlasGeoModel/SetGeometryVersion.py is OBSOLETE +SetGeometryVersion.py obtained major release version 22 +Py:Athena INFO including file "AtlasGeoModel/GeoModelInit.py" +AtlasGeoModel/GeoModelInit.py is OBSOLETE +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:ConfigurableDb INFO Read module info for 5489 configurables from 48 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +EventInfoMgtInit: Got release version Athena-22.0.1 +Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 +Py:Athena INFO including file "LArRawConditions/LArIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "LArConditionsCommon/LArIdMap_MC_jobOptions.py" +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/OnOffIdMap with tag LARIdentifierOnOffIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/CalibIdMap with tag LARIdentifierCalibIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/FebRodMap with tag LARIdentifierFebRodMap-005 +Py:Athena INFO including file "LArIdCnv/LArIdCnv_joboptions.py" +Py:Athena INFO including file "LArTools/LArTools_jobOptions.py" +Py:Athena INFO including file "CaloIdCnv/CaloIdCnv_joboptions.py" +Py:Athena INFO including file "CaloConditions/CaloConditions_jobOptions.py" +Py:Athena INFO including file "CaloConditions/LArTTCellMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloConditions/CaloTTIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py" +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:Athena INFO including file "LArCondAthenaPool/LArCondAthenaPool_joboptions.py" +Py:Athena INFO including file "AthenaSealSvc/AthenaSealSvc_joboptions.py" +Py:AthenaSealSvc INFO DictNames: [] +Py:Athena INFO including file "AthenaPoolServices/AthenaRootStreamerSvc_jobOptions.py" +Py:Athena INFO including file "AthenaPoolCnvSvc/AthenaPool_jobOptions.py" +Py:Athena INFO including file "AthenaCommon/runbatch.py" +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v30r5) + running on pckeatlas05.cern.ch on Fri Feb 1 09:17:18 2019 +==================================================================================================================================== +ApplicationMgr INFO Successfully loaded modules : AthenaServices +ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +StatusCodeSvc INFO initialize +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 3320 CLIDRegistry entries for module ALL +CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) +CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled +PoolSvc INFO Frontier compression level set to 5 +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pckeatlas05.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +PoolSvc INFO Successfully setup replica sorting algorithm +PoolSvc INFO Setting up APR FileCatalog and Streams +PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml +PoolSvc INFO POOL WriteCatalog is file:Catalog2.xml +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) +IOVDbSvc INFO Opened read transaction for POOL PersistencySvc +IOVDbSvc INFO Only 5 POOL conditions files will be open at once +IOVDbSvc INFO Cache alignment will be done in 3 slices +IOVDbSvc INFO Global tag: OFLCOND-CSC-00-01-00 set from joboptions +IOVDbSvc INFO Folder /LAR/Identifier/OnOffIdMap, adding new key tag with value LARIdentifierOnOffIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/CalibIdMap, adding new key tag with value LARIdentifierCalibIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/FebRodMap, adding new key tag with value LARIdentifierFebRodMap-005 +IOVDbFolder INFO Read from meta data only for folder /TagInfo +IOVDbSvc INFO Initialised with 3 connections and 10 folders +IOVDbSvc INFO Service IOVDbSvc initialised successfully +CondProxyProvider INFO Initializing CondProxyProvider - package version EventSelectorAthenaPool-00-00-00 +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 8447CF77-4E1B-8D42-8F42-E19770DB3AAD +Domain[ROOT_All] INFO LarCondTestNoReg.root +RootDatabase.open INFO LarCondTestNoReg.root File version:61404 +IOVDbSvc INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found. +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" +IOVSvcTool INFO IOVRanges will be checked at every Event +IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Added taginfo remove for /LAR/Align +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/CalibIdMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/FebRodMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/OnOffIdMap +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /LAR/LArCellPositionShift +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/LArTTCellMapAtlas +EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +DetDescrCnvSvc INFO initializing +DetDescrCnvSvc INFO Found DetectorStore service +DetDescrCnvSvc INFO filling proxies for detector managers +DetDescrCnvSvc INFO filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for IdDict with CLID 2411 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for AtlasID with CLID 164875623 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for PixelID with CLID 2516 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SCT_ID with CLID 2517 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TRT_ID with CLID 2518 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SiliconID with CLID 129452393 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileID with CLID 2901 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileHWID with CLID 2902 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileTBID with CLID 2903 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for ZdcID with CLID 190591643 and storage type 68 to detector store +EventPersistenc... INFO Added successfully Conversion service:DetDescrCnvSvc +EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc +ClassIDSvc INFO getRegistryEntries: read 4791 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 18 CLIDRegistry entries for module ALL +GeoModelSvc::RD...WARNING Getting PixTBMatComponents with default tag +GeoModelSvc::RD...WARNING Getting PixTBMaterials with default tag +GeoModelSvc::RD...WARNING Getting InDetMatComponents with default tag +GeoModelSvc::RD...WARNING Getting InDetMaterials with default tag +LAr::DetectorFa... INFO new description with barrel croystat bolts +LAr::DetectorFa... INFO new coil bumper description +BarrelConstruction INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01 +BarrelConstruction INFO Makes detailed absorber sandwich ? 1 1 +BarrelConstruction INFO Use sagging in geometry ? 0 +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +ClassIDSvc INFO getRegistryEntries: read 5098 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileTBID helper object in the detector store +IdDictDetDescrCnv INFO in initialize +IdDictDetDescrCnv INFO in createObj: creating a IdDictManager object in the detector store +IdDictDetDescrCnv INFO IdDictName: IdDictParser/ATLAS_IDS.xml +IdDictDetDescrCnv INFO Reading InnerDetector IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Reading LArCalorimeter IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Reading TileCalorimeter IdDict file IdDictParser/IdDictTileCalorimeter.xml +IdDictDetDescrCnv INFO Reading Calorimeter IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Found id dicts: +IdDictDetDescrCnv INFO Using dictionary tag: null +IdDictDetDescrCnv INFO Dictionary ATLAS version default DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary Calorimeter version default DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Dictionary ForwardDetectors version default DetDescr tag ForDetIdentifier-01 file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Dictionary InnerDetector version IBL-DBM DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Dictionary LArCalorimeter version fullAtlas DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Dictionary LArElectrode version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary LArHighVoltage version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary MuonSpectrometer version R.03 DetDescr tag MuonIdentifier-08 file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Dictionary TileCalorimeter version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00 file IdDictParser/IdDictTileCalorimeter.xml +TileTBID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +EndcapDMConstru... INFO Start building EC electronics geometry +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +EndcapDMConstru... INFO Start building EC electronics geometry +TileDddbManager INFO m_tag = ATLAS-R2-2016-01-00-01 +TileDddbManager INFO n_tiglob = 5 +TileDddbManager INFO n_timod = 320 +TileDddbManager INFO n_cuts = 9 +TileDddbManager INFO n_saddle = 1 +TileDddbManager INFO n_tilb = 21 +TileDddbManager INFO n_tileSwitches = 1 +ClassIDSvc INFO getRegistryEntries: read 213 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileNeighbour_reduced.txt +TileHWIDDetDesc... INFO in createObj: creating a TileHWID helper object in the detector store +TileHWID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +ClassIDSvc INFO getRegistryEntries: read 55 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal2DNeighbors-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsNext-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsPrev-April2011.txt +CaloIDHelper_ID... INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArMiniFCAL_ID INFO initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID. +AtlasDetectorID INFO initialize_from_dictionary - OK +TileDetDescrMan... INFO Entering create_elements() +ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 5448 CLIDRegistry entries for module ALL +CondInputLoader INFO Initializing CondInputLoader... +CondInputLoader INFO Adding base classes: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) -> +CondInputLoader INFO Will create WriteCondHandle dependencies for the following DataObjects: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) +LArConditionsTe... DEBUG Property update for OutputLevel : new value = 2 +LArConditionsTe... DEBUG TestCondObjs flag = 'TestCondObjs':True +LArConditionsTe... DEBUG ReadCondObjs flag = 'ReadCondObjs':True +LArConditionsTe... DEBUG WriteCondObjs flag = 'WriteCondObjs':False +LArConditionsTe... DEBUG WriteCorrections flag = 'WriteCorrections':False +LArConditionsTe... DEBUG ApplyCorrections flag = 'ApplyCorrections':True +LArConditionsTe... DEBUG TestFill flag = 'TestFill':False +LArConditionsTe... DEBUG TestReadDBDirect flag = 'TestReadDBDirect':False +LArConditionsTe... DEBUG Testbeam flag = 'Testbeam':False +LArOnlineIDDetD... INFO in createObj: creating a LArOnlineID helper object in the detector store +LArOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +LArConditionsTe... DEBUG initialize done +LArConditionsTe... DEBUG input handles: 0 +LArConditionsTe... DEBUG output handles: 0 +LArConditionsTe... DEBUG Data Deps for LArConditionsTestAlg +HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Enter McEventSelector Initialization +AthenaEventLoopMgr INFO Setup EventSelector service EventSelector +ApplicationMgr INFO Application Manager Initialized successfully +ClassIDSvc INFO getRegistryEntries: read 1248 CLIDRegistry entries for module ALL +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/CalibIdMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/FebRodMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/OnOffIdMap' +ApplicationMgr INFO Application Manager Started successfully +AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== +EventPersistenc... INFO Added successfully Conversion service:TagInfoMgr +ClassIDSvc INFO getRegistryEntries: read 109 CLIDRegistry entries for module ALL +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARAlign_CSC_01 for folder /LAR/Align +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARIdentifierLArTTCellMapAtlas-HadFcalFix for folder /LAR/Identifier/LArTTCellMapAtlas +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root File version:51304 +CaloMgrDetDescrCnv INFO in createObj: creating a Calo Detector Manager object in the detector store +CaloIdMgrDetDes... INFO in createObj: creating a CaloDescrManager object in the detector store +ClassIDSvc INFO getRegistryEntries: read 191 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloDM_ID helper object in the detector store +CaloDM_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloLVL1_ID helper object in the detector store +CaloLVL1_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a TTOnlineID helper object in the detector store +TTOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt +CaloIDHelper_ID... INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileSuperCellNeighbour.txt +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIdMgrDetDes... INFO Finished +CaloIdMgrDetDes... INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200 +AthenaEventLoopMgr INFO ===>>> start processing event #0, run #0 0 events processed so far <<<=== +LArOnOffMappingAlg INFO Done reading online/offline identifier mapping +LArOnOffMappingAlg INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +LArOnOffMappingAlg INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArCalibLineMap... INFO Done reading readout/calibration line mapping. +LArCalibLineMap... INFO recorded new LArCalibLineMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArFebRodMappin... INFO Done reading Feb/Rod mapping. Found 1524 Febs and 762 Rods +LArFebRodMappin... INFO recorded new LArFebRodMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArConditionsTe... DEBUG retrieve DataHandle<ILArRamp> in execute +LArConditionsTe... INFO in testCondObjects() +LArConditionsTe... INFO in createCompareObjects() +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG End of create comparison objects +LArConditionsTe... INFO in testChannelSet +LArConditionsTe... DEBUG Sizes OK: 20 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Iteration check OK +LArConditionsTe... DEBUG Find check OK +ClassIDSvc INFO getRegistryEntries: read 1031 CLIDRegistry entries for module ALL +ToolSvc.LArCabl... INFO ====> iovCallBack +ToolSvc.LArCabl... INFO Done reading online/offline identifier mapping +ToolSvc.LArCabl... INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/OnOffIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/CalibIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/FebRodMap +ToolSvc.LArCabl... INFO Sucessfully initialized LArCablingLegacyService with 3 callbacks. +ToolSvc.LArMCSy... INFO IOV callback +LArConditionsTe... INFO Retrieved ramps for LArRampsSingleGroup +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 66 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 65 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 65 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 16 0 16 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 66 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 65 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 65 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 16 ramps size 16 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SingleGroup test +LArConditionsTe... INFO Retrieved ramps for LArRampsSubDetectorGrouping +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 39 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 24 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 2 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 38 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 24 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 2 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 38 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 23 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 3 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 25 0 25 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 39 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 24 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 2 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 38 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 24 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 2 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 38 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 23 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 3 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 25 ramps size 25 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SubDetectorGrouping test +LArConditionsTe... INFO Retrieved ramps for LArRampsFeedThroughGrouping +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 209 0 209 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 1 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 209 ramps size 209 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded FeedThroughGrouping test +LArConditionsTe... DEBUG Statistics for LArRampsFeedThroughGrouping +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG IOVs found: +LArConditionsTe... DEBUG Channel: 3 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 4 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 6 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 8 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 9 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 11 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 13 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 14 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 16 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 18 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 19 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 21 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 23 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 24 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 26 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 28 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 29 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 31 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 33 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 34 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 36 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 38 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 39 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 41 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 43 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 44 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 46 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 48 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 49 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 51 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 53 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 54 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 56 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 58 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 59 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 61 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 63 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 64 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 66 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 68 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 70 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 72 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 73 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 75 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 77 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 79 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 81 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 83 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 85 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 87 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 88 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 90 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 92 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 94 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 96 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 98 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 100 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 101 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 103 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 105 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 107 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 109 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 111 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 113 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 115 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 116 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 117 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 119 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 120 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 122 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 124 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 125 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 127 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 129 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 130 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 132 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 134 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 135 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 137 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 139 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 140 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 142 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 144 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 146 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 147 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 149 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 151 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 152 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 154 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 156 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 157 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 159 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 161 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 162 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 164 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 166 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 167 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 169 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 171 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 172 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 174 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 176 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 177 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 179 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 181 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 182 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 185 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 186 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 188 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 190 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 192 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 194 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 195 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 198 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 199 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 201 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 203 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 205 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 207 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 208 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 211 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 212 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 214 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 216 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 218 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 220 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 221 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 224 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 225 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 227 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 229 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 232 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 233 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 235 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 237 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 238 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 240 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 242 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 243 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 245 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 247 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 248 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 250 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 252 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 253 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 255 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 257 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 258 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 260 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 262 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 263 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 265 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 267 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 268 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 270 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 272 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 273 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 275 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 277 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 278 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 280 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 282 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 284 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 285 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 287 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 289 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 290 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 292 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 294 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 295 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 297 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 299 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 301 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 303 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 304 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 306 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 308 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 310 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 312 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 314 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 316 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 318 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 320 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 321 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 323 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 325 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 327 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 329 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 331 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 333 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 334 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 336 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 338 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 340 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 342 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 344 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 1005 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1006 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1007 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1008 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1017 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1018 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1019 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1020 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1025 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1029 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1030 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1031 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1032 number of conditions: 0 +LArConditionsTe... DEBUG Group: 0 number of conditions: 0 +LArConditionsTe... DEBUG Group: 1 number of conditions: 256 +LArConditionsTe... DEBUG Group: 2 number of conditions: 256 +LArConditionsTe... DEBUG Group: 3 number of conditions: 256 +LArConditionsTe... DEBUG Group: 4 number of conditions: 256 +LArConditionsTe... DEBUG Group: 5 number of conditions: 128 +LArConditionsTe... DEBUG Group: 6 number of conditions: 256 +LArConditionsTe... DEBUG Group: 7 number of conditions: 256 +LArConditionsTe... DEBUG Group: 8 number of conditions: 256 +LArConditionsTe... DEBUG Group: 9 number of conditions: 256 +LArConditionsTe... DEBUG Group: 10 number of conditions: 128 +LArConditionsTe... DEBUG Group: 11 number of conditions: 256 +LArConditionsTe... DEBUG Group: 12 number of conditions: 256 +LArConditionsTe... DEBUG Group: 13 number of conditions: 256 +LArConditionsTe... DEBUG Group: 14 number of conditions: 256 +LArConditionsTe... DEBUG Group: 15 number of conditions: 128 +LArConditionsTe... DEBUG Group: 16 number of conditions: 256 +LArConditionsTe... DEBUG Group: 17 number of conditions: 256 +LArConditionsTe... DEBUG Group: 18 number of conditions: 256 +LArConditionsTe... DEBUG Group: 19 number of conditions: 256 +LArConditionsTe... DEBUG Group: 20 number of conditions: 128 +LArConditionsTe... DEBUG Group: 21 number of conditions: 256 +LArConditionsTe... DEBUG Group: 22 number of conditions: 256 +LArConditionsTe... DEBUG Group: 23 number of conditions: 128 +LArConditionsTe... DEBUG Group: 24 number of conditions: 256 +LArConditionsTe... DEBUG Group: 25 number of conditions: 256 +LArConditionsTe... DEBUG Group: 26 number of conditions: 128 +LArConditionsTe... DEBUG Group: 27 number of conditions: 256 +LArConditionsTe... DEBUG Group: 28 number of conditions: 128 +LArConditionsTe... DEBUG Group: 29 number of conditions: 256 +LArConditionsTe... DEBUG Group: 30 number of conditions: 256 +LArConditionsTe... DEBUG Group: 31 number of conditions: 128 +LArConditionsTe... DEBUG Group: 32 number of conditions: 256 +LArConditionsTe... DEBUG Group: 33 number of conditions: 256 +LArConditionsTe... DEBUG Group: 34 number of conditions: 128 +LArConditionsTe... DEBUG Group: 35 number of conditions: 256 +LArConditionsTe... DEBUG Group: 36 number of conditions: 128 +LArConditionsTe... DEBUG Group: 37 number of conditions: 256 +LArConditionsTe... DEBUG Group: 38 number of conditions: 256 +LArConditionsTe... DEBUG Group: 39 number of conditions: 256 +LArConditionsTe... DEBUG Group: 40 number of conditions: 256 +LArConditionsTe... DEBUG Group: 41 number of conditions: 256 +LArConditionsTe... DEBUG Group: 42 number of conditions: 128 +LArConditionsTe... DEBUG Group: 43 number of conditions: 256 +LArConditionsTe... DEBUG Group: 44 number of conditions: 256 +LArConditionsTe... DEBUG Group: 45 number of conditions: 256 +LArConditionsTe... DEBUG Group: 46 number of conditions: 256 +LArConditionsTe... DEBUG Group: 47 number of conditions: 128 +LArConditionsTe... DEBUG Group: 48 number of conditions: 256 +LArConditionsTe... DEBUG Group: 49 number of conditions: 256 +LArConditionsTe... DEBUG Group: 50 number of conditions: 256 +LArConditionsTe... DEBUG Group: 51 number of conditions: 128 +LArConditionsTe... DEBUG Group: 52 number of conditions: 256 +LArConditionsTe... DEBUG Group: 53 number of conditions: 256 +LArConditionsTe... DEBUG Group: 54 number of conditions: 256 +LArConditionsTe... DEBUG Group: 55 number of conditions: 256 +LArConditionsTe... DEBUG Group: 56 number of conditions: 128 +LArConditionsTe... DEBUG Group: 57 number of conditions: 256 +LArConditionsTe... DEBUG Group: 58 number of conditions: 256 +LArConditionsTe... DEBUG Group: 59 number of conditions: 256 +LArConditionsTe... DEBUG Group: 60 number of conditions: 256 +LArConditionsTe... DEBUG Group: 61 number of conditions: 128 +LArConditionsTe... DEBUG Group: 62 number of conditions: 256 +LArConditionsTe... DEBUG Group: 63 number of conditions: 128 +LArConditionsTe... DEBUG Group: 64 number of conditions: 256 +LArConditionsTe... DEBUG Group: 65 number of conditions: 128 +LArConditionsTe... DEBUG Group: 66 number of conditions: 256 +LArConditionsTe... DEBUG Group: 67 number of conditions: 256 +LArConditionsTe... DEBUG Group: 68 number of conditions: 128 +LArConditionsTe... DEBUG Group: 69 number of conditions: 256 +LArConditionsTe... DEBUG Group: 70 number of conditions: 256 +LArConditionsTe... DEBUG Group: 71 number of conditions: 128 +LArConditionsTe... DEBUG Group: 72 number of conditions: 256 +LArConditionsTe... DEBUG Group: 73 number of conditions: 256 +LArConditionsTe... DEBUG Group: 74 number of conditions: 128 +LArConditionsTe... DEBUG Group: 75 number of conditions: 256 +LArConditionsTe... DEBUG Group: 76 number of conditions: 128 +LArConditionsTe... DEBUG Group: 77 number of conditions: 256 +LArConditionsTe... DEBUG Group: 78 number of conditions: 128 +LArConditionsTe... DEBUG Group: 79 number of conditions: 256 +LArConditionsTe... DEBUG Group: 80 number of conditions: 256 +LArConditionsTe... DEBUG Group: 81 number of conditions: 256 +LArConditionsTe... DEBUG Group: 82 number of conditions: 256 +LArConditionsTe... DEBUG Group: 83 number of conditions: 128 +LArConditionsTe... DEBUG Group: 84 number of conditions: 256 +LArConditionsTe... DEBUG Group: 85 number of conditions: 256 +LArConditionsTe... DEBUG Group: 86 number of conditions: 256 +LArConditionsTe... DEBUG Group: 87 number of conditions: 256 +LArConditionsTe... DEBUG Group: 88 number of conditions: 128 +LArConditionsTe... DEBUG Group: 89 number of conditions: 256 +LArConditionsTe... DEBUG Group: 90 number of conditions: 256 +LArConditionsTe... DEBUG Group: 91 number of conditions: 256 +LArConditionsTe... DEBUG Group: 92 number of conditions: 256 +LArConditionsTe... DEBUG Group: 93 number of conditions: 128 +LArConditionsTe... DEBUG Group: 94 number of conditions: 256 +LArConditionsTe... DEBUG Group: 95 number of conditions: 256 +LArConditionsTe... DEBUG Group: 96 number of conditions: 256 +LArConditionsTe... DEBUG Group: 97 number of conditions: 128 +LArConditionsTe... DEBUG Group: 98 number of conditions: 256 +LArConditionsTe... DEBUG Group: 99 number of conditions: 256 +LArConditionsTe... DEBUG Group: 100 number of conditions: 128 +LArConditionsTe... DEBUG Group: 101 number of conditions: 256 +LArConditionsTe... DEBUG Group: 102 number of conditions: 256 +LArConditionsTe... DEBUG Group: 103 number of conditions: 128 +LArConditionsTe... DEBUG Group: 104 number of conditions: 256 +LArConditionsTe... DEBUG Group: 105 number of conditions: 128 +LArConditionsTe... DEBUG Group: 106 number of conditions: 256 +LArConditionsTe... DEBUG Group: 107 number of conditions: 256 +LArConditionsTe... DEBUG Group: 108 number of conditions: 128 +LArConditionsTe... DEBUG Group: 109 number of conditions: 256 +LArConditionsTe... DEBUG Group: 110 number of conditions: 128 +LArConditionsTe... DEBUG Group: 111 number of conditions: 256 +LArConditionsTe... DEBUG Group: 112 number of conditions: 256 +LArConditionsTe... DEBUG Group: 113 number of conditions: 128 +LArConditionsTe... DEBUG Group: 114 number of conditions: 256 +LArConditionsTe... DEBUG +LArConditionsTe... DEBUG Gain: 0 number of conditions: 8448 +LArConditionsTe... DEBUG Gain: 1 number of conditions: 8320 +LArConditionsTe... DEBUG Gain: 2 number of conditions: 8320 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects 20 +LArConditionsTe... DEBUG End of testCondObjects +AthenaEventLoopMgr INFO ===>>> done processing event #0, run #0 1 events processed so far <<<=== +MetaDataSvc INFO MetaDataSvc::stop() +LarCondTestNoRe... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 8447CF77-4E1B-8D42-8F42-E19770DB3AAD +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +ApplicationMgr INFO Application Manager Stopped successfully +IncidentProcAlg1 INFO Finalize +CondInputLoader INFO Finalizing CondInputLoader... +IncidentProcAlg2 INFO Finalize +EventSelector INFO finalize +IdDictDetDescrCnv INFO in finalize +Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] +IOVDbFolder INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/336 (( 0.19 ))s +IOVDbFolder INFO Folder /LAR/Identifier/CalibIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/3040296 (( 0.02 ))s +IOVDbFolder INFO Folder /LAR/Identifier/FebRodMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/12200 (( 0.01 ))s +IOVDbFolder INFO Folder /LAR/Identifier/OnOffIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/1560584 (( 0.02 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/390 (( 0.10 ))s +IOVDbFolder INFO Folder /LAR/Identifier/LArTTCellMapAtlas (PoolRef) db-read 1/0 objs/chan/bytes 1/1/346 (( 0.12 ))s +IOVDbFolder WARNING Folder /LAR/Identifier/LArTTCellMapAtlas is requested but no data retrieved +IOVDbSvc INFO bytes in (( 0.47 ))s +IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 6 ReadTime: (( 0.47 ))s +IOVDbSvc INFO Connection COOLOFL_CALO/OFLP200 : nConnect: 1 nFolders: 3 ReadTime: (( 0.00 ))s +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +*****Chrono***** INFO **************************************************************************************************** +*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) +*****Chrono***** INFO **************************************************************************************************** +cObjR_ALL INFO Time User : Tot= 220 [ms] Ave/Min/Max=0.856(+- 13.7)/ 0/ 220 [ms] #=257 +cObj_ALL INFO Time User : Tot= 420 [ms] Ave/Min/Max= 46.7(+- 87.1)/ 0/ 270 [ms] #= 9 +ChronoStatSvc INFO Time User : Tot= 3.83 [s] #= 1 +*****Chrono***** INFO **************************************************************************************************** +ChronoStatSvc.f... INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +Py:Athena INFO leaving with code 0: "successful run" diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref new file mode 100644 index 0000000000000000000000000000000000000000..ed77c1e66781bbd47598c78520ef2a58b3cdd9de --- /dev/null +++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref @@ -0,0 +1,6961 @@ +Fri Feb 1 09:20:35 CET 2019 +Preloading tcmalloc_minimal.so +Py:Athena INFO including file "AthenaCommon/Preparation.py" +Py:Athena INFO using release [WorkDir-22.0.1] [x86_64-slc6-gcc62-opt] [remove_LArCablingSvc/fa86075] -- built on [2019-02-01T0907] +Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" +Py:Athena INFO executing ROOT6Setup +Py:Athena INFO including file "AthenaCommon/Execution.py" +Py:Athena INFO including file "LArConditionsTest/LArConditionsTestWriteNoReg_jobOptions.py" +Py:Athena INFO including file "AthenaCommon/Atlas_Gen.UnixStandardJob.py" +Py:Athena INFO including file "AtlasGeoModel/SetGeometryVersion.py" +AtlasGeoModel/SetGeometryVersion.py is OBSOLETE +SetGeometryVersion.py obtained major release version 22 +Py:Athena INFO including file "AtlasGeoModel/GeoModelInit.py" +AtlasGeoModel/GeoModelInit.py is OBSOLETE +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:ConfigurableDb INFO Read module info for 5489 configurables from 48 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +EventInfoMgtInit: Got release version Athena-22.0.1 +Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200 +Py:Athena INFO including file "LArRawConditions/LArIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "LArConditionsCommon/LArIdMap_MC_jobOptions.py" +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/OnOffIdMap with tag LARIdentifierOnOffIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/CalibIdMap with tag LARIdentifierCalibIdMap-012 +Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/FebRodMap with tag LARIdentifierFebRodMap-005 +Py:Athena INFO including file "LArIdCnv/LArIdCnv_joboptions.py" +Py:Athena INFO including file "LArTools/LArTools_jobOptions.py" +Py:Athena INFO including file "CaloIdCnv/CaloIdCnv_joboptions.py" +Py:Athena INFO including file "CaloConditions/CaloConditions_jobOptions.py" +Py:Athena INFO including file "CaloConditions/LArTTCellMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloConditions/CaloTTIdMap_ATLAS_jobOptions.py" +Py:Athena INFO including file "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py" +Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py" +Py:Athena INFO including file "LArCondAthenaPool/LArCondAthenaPool_joboptions.py" +Py:Athena INFO including file "AthenaSealSvc/AthenaSealSvc_joboptions.py" +Py:AthenaSealSvc INFO DictNames: [] +Py:Athena INFO including file "LArCondAthenaPool/LArCondAthenaPool_joboptions.py" +Py:Athena INFO including file "AthenaCommon/runbatch.py" +[?1034hApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v30r5) + running on pckeatlas05.cern.ch on Fri Feb 1 09:20:44 2019 +==================================================================================================================================== +ApplicationMgr INFO Successfully loaded modules : AthenaServices +ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +StatusCodeSvc INFO initialize +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 3320 CLIDRegistry entries for module ALL +CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) +CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled +PoolSvc INFO Frontier compression level set to 5 +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pckeatlas05.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +PoolSvc INFO Successfully setup replica sorting algorithm +PoolSvc INFO Setting up APR FileCatalog and Streams +PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables +PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml +PoolSvc INFO POOL WriteCatalog is file:Catalog3.xml +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray([]) +IOVDbSvc INFO Opened read transaction for POOL PersistencySvc +IOVDbSvc INFO Only 5 POOL conditions files will be open at once +IOVDbSvc INFO Cache alignment will be done in 3 slices +IOVDbSvc INFO Global tag: OFLCOND-CSC-00-01-00 set from joboptions +IOVDbSvc INFO Folder /LAR/Identifier/OnOffIdMap, adding new key tag with value LARIdentifierOnOffIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/CalibIdMap, adding new key tag with value LARIdentifierCalibIdMap-012 +IOVDbSvc INFO Folder /LAR/Identifier/FebRodMap, adding new key tag with value LARIdentifierFebRodMap-005 +IOVDbFolder INFO Read from meta data only for folder /TagInfo +IOVDbSvc INFO Initialised with 3 connections and 10 folders +IOVDbSvc INFO Service IOVDbSvc initialised successfully +IOVDbSvc INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found. +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" +IOVSvcTool INFO IOVRanges will be checked at every Event +IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +IOVDbSvc INFO Disconnecting from COOLOFL_CALO/OFLP200 +IOVDbSvc INFO Added taginfo remove for /LAR/Align +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/CalibIdMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/FebRodMap +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/OnOffIdMap +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas +IOVDbSvc INFO Added taginfo remove for /LAR/LArCellPositionShift +IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/LArTTCellMapAtlas +ClassIDSvc INFO getRegistryEntries: read 2091 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 18 CLIDRegistry entries for module ALL +DetDescrCnvSvc INFO initializing +DetDescrCnvSvc INFO Found DetectorStore service +DetDescrCnvSvc INFO filling proxies for detector managers +DetDescrCnvSvc INFO filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for IdDict with CLID 2411 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for AtlasID with CLID 164875623 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for PixelID with CLID 2516 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SCT_ID with CLID 2517 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TRT_ID with CLID 2518 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for SiliconID with CLID 129452393 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileID with CLID 2901 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileHWID with CLID 2902 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TileTBID with CLID 2903 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store +DetDescrCnvSvc INFO filling address for ZdcID with CLID 190591643 and storage type 68 to detector store +GeoModelSvc::RD...WARNING Getting PixTBMatComponents with default tag +GeoModelSvc::RD...WARNING Getting PixTBMaterials with default tag +GeoModelSvc::RD...WARNING Getting InDetMatComponents with default tag +GeoModelSvc::RD...WARNING Getting InDetMaterials with default tag +LAr::DetectorFa... INFO new description with barrel croystat bolts +LAr::DetectorFa... INFO new coil bumper description +BarrelConstruction INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01 +BarrelConstruction INFO Makes detailed absorber sandwich ? 1 1 +BarrelConstruction INFO Use sagging in geometry ? 0 +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +EventPersistenc... INFO Added successfully Conversion service:DetDescrCnvSvc +ClassIDSvc INFO getRegistryEntries: read 5728 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileTBID helper object in the detector store +IdDictDetDescrCnv INFO in initialize +IdDictDetDescrCnv INFO in createObj: creating a IdDictManager object in the detector store +IdDictDetDescrCnv INFO IdDictName: IdDictParser/ATLAS_IDS.xml +IdDictDetDescrCnv INFO Reading InnerDetector IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Reading LArCalorimeter IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Reading TileCalorimeter IdDict file IdDictParser/IdDictTileCalorimeter.xml +IdDictDetDescrCnv INFO Reading Calorimeter IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Found id dicts: +IdDictDetDescrCnv INFO Using dictionary tag: null +IdDictDetDescrCnv INFO Dictionary ATLAS version default DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary Calorimeter version default DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml +IdDictDetDescrCnv INFO Dictionary ForwardDetectors version default DetDescr tag ForDetIdentifier-01 file IdDictParser/IdDictForwardDetectors_2010.xml +IdDictDetDescrCnv INFO Dictionary InnerDetector version IBL-DBM DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml +IdDictDetDescrCnv INFO Dictionary LArCalorimeter version fullAtlas DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml +IdDictDetDescrCnv INFO Dictionary LArElectrode version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary LArHighVoltage version fullAtlas DetDescr tag (using default) file +IdDictDetDescrCnv INFO Dictionary MuonSpectrometer version R.03 DetDescr tag MuonIdentifier-08 file IdDictParser/IdDictMuonSpectrometer_R.03.xml +IdDictDetDescrCnv INFO Dictionary TileCalorimeter version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00 file IdDictParser/IdDictTileCalorimeter.xml +TileTBID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +EndcapDMConstru... INFO Start building EC electronics geometry +============== EMEC Construction =============== + multi-layered version of absorbers activated, mlabs == 1 +================================================ +EndcapDMConstru... INFO Start building EC electronics geometry +TileDddbManager INFO m_tag = ATLAS-R2-2016-01-00-01 +TileDddbManager INFO n_tiglob = 5 +TileDddbManager INFO n_timod = 320 +TileDddbManager INFO n_cuts = 9 +TileDddbManager INFO n_saddle = 1 +TileDddbManager INFO n_tilb = 21 +TileDddbManager INFO n_tileSwitches = 1 +ClassIDSvc INFO getRegistryEntries: read 213 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a TileID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileNeighbour_reduced.txt +TileHWIDDetDesc... INFO in createObj: creating a TileHWID helper object in the detector store +TileHWID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +ClassIDSvc INFO getRegistryEntries: read 55 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal2DNeighbors-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsNext-April2011.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCal3DNeighborsPrev-April2011.txt +CaloIDHelper_ID... INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArMiniFCAL_ID INFO initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID. +AtlasDetectorID INFO initialize_from_dictionary - OK +TileDetDescrMan... INFO Entering create_elements() +ClassIDSvc INFO getRegistryEntries: read 65 CLIDRegistry entries for module ALL +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 6965 CLIDRegistry entries for module ALL +CondInputLoader INFO Initializing CondInputLoader... +CondInputLoader INFO Adding base classes: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) -> + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) -> +CondInputLoader INFO Will create WriteCondHandle dependencies for the following DataObjects: + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/CalibIdMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/FebRodMap' ) + + ( 'AthenaAttributeList' , 'ConditionStore+/LAR/Identifier/OnOffIdMap' ) +LArConditionsTe... DEBUG Property update for OutputLevel : new value = 2 +LArConditionsTe... DEBUG TestCondObjs flag = 'TestCondObjs':True +LArConditionsTe... DEBUG ReadCondObjs flag = 'ReadCondObjs':False +LArConditionsTe... DEBUG WriteCondObjs flag = 'WriteCondObjs':True +LArConditionsTe... DEBUG WriteCorrections flag = 'WriteCorrections':True +LArConditionsTe... DEBUG ApplyCorrections flag = 'ApplyCorrections':True +LArConditionsTe... DEBUG TestFill flag = 'TestFill':False +LArConditionsTe... DEBUG TestReadDBDirect flag = 'TestReadDBDirect':False +LArConditionsTe... DEBUG Testbeam flag = 'Testbeam':False +LArOnlineIDDetD... INFO in createObj: creating a LArOnlineID helper object in the detector store +LArOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +LArConditionsTe... DEBUG initialize done +LArConditionsTe... DEBUG input handles: 0 +LArConditionsTe... DEBUG output handles: 0 +LArConditionsTe... DEBUG Data Deps for LArConditionsTestAlg +ClassIDSvc INFO getRegistryEntries: read 1576 CLIDRegistry entries for module ALL +ToolSvc.OutputC... INFO Initializing ToolSvc.OutputConditionsAlgTool - package version AthenaServices-00-00-00 +HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Enter McEventSelector Initialization +AthenaEventLoopMgr INFO Setup EventSelector service EventSelector +ApplicationMgr INFO Application Manager Initialized successfully +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/CalibIdMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/FebRodMap' +CondInputLoader INFO created CondCont<AthenaAttributeList> with key 'ConditionStore+/LAR/Identifier/OnOffIdMap' +ApplicationMgr INFO Application Manager Started successfully +AthenaEventLoopMgr INFO ===>>> start of run 0 <<<=== +EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc +EventPersistenc... INFO Added successfully Conversion service:TagInfoMgr +ClassIDSvc INFO getRegistryEntries: read 109 CLIDRegistry entries for module ALL +IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200 +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARAlign_CSC_01 for folder /LAR/Align +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift +IOVDbFolder INFO HVS tag OFLCOND-CSC-00-01-00 resolved to LARIdentifierLArTTCellMapAtlas-HadFcalFix for folder /LAR/Identifier/LArTTCellMapAtlas +IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200 +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/oflcond/oflcond.000002.conditions.simul.pool.v0000/oflcond.000002.conditions.simul.pool.v0000._0058.pool.root File version:51304 +CaloMgrDetDescrCnv INFO in createObj: creating a Calo Detector Manager object in the detector store +CaloIdMgrDetDes... INFO in createObj: creating a CaloDescrManager object in the detector store +ClassIDSvc INFO getRegistryEntries: read 191 CLIDRegistry entries for module ALL +CaloIDHelper_ID... INFO in createObj: creating a CaloDM_ID helper object in the detector store +CaloDM_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloLVL1_ID helper object in the detector store +CaloLVL1_ID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a TTOnlineID helper object in the detector store +TTOnlineID INFO initialize_from_dictionary +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store +CaloIDHelper_ID... INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIDHelper_ID... INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt +LArFCAL_Base_ID INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt +CaloIDHelper_ID... INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store +AtlasDetectorID INFO initialize_from_dictionary - OK +TileNeighbour INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-01-30T2256/Athena/22.0.1/InstallArea/x86_64-slc6-gcc62-opt/share/TileSuperCellNeighbour.txt +AtlasDetectorID INFO initialize_from_dictionary - OK +CaloIdMgrDetDes... INFO Finished +CaloIdMgrDetDes... INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv +Domain[ROOT_All] INFO -> Access DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +Domain[ROOT_All] INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root +RootDatabase.open INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200 +AthenaEventLoopMgr INFO ===>>> start processing event #0, run #0 0 events processed so far <<<=== +LArOnOffMappingAlg INFO Done reading online/offline identifier mapping +LArOnOffMappingAlg INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +LArOnOffMappingAlg INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArCalibLineMap... INFO Done reading readout/calibration line mapping. +LArCalibLineMap... INFO recorded new LArCalibLineMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArFebRodMappin... INFO Done reading Feb/Rod mapping. Found 1524 Febs and 762 Rods +LArFebRodMappin... INFO recorded new LArFebRodMap with range {[0,l:0] - [INVALID]} into Conditions Store +LArConditionsTe... DEBUG retrieve DataHandle<ILArRamp> in execute +LArConditionsTe... INFO in testCondObjects() +LArConditionsTe... INFO in createCompareObjects() +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: chan, gain, ramps [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG End of create comparison objects +LArConditionsTe... INFO in testChannelSet +LArConditionsTe... DEBUG Sizes OK: 20 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: chan id, gain, ramps [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Iteration check OK +LArConditionsTe... DEBUG Find check OK +LArConditionsTe... INFO Created ramps for LArRampsSingleGroup +ClassIDSvc INFO getRegistryEntries: read 469 CLIDRegistry entries for module ALL +ToolSvc.LArCabl... INFO ====> iovCallBack +ToolSvc.LArCabl... INFO Done reading online/offline identifier mapping +ToolSvc.LArCabl... INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels. +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/OnOffIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/CalibIdMap +ToolSvc.LArCabl... INFO Successfully installed callback on folder/LAR/Identifier/FebRodMap +ToolSvc.LArCabl... INFO Sucessfully initialized LArCablingLegacyService with 3 callbacks. +ToolSvc.LArMCSy... INFO IOV callback +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 16 0 16 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 5 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 16 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 1 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 2 groupingType 1 subsetSize 1524 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 1005 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 4 channel 1006 gain 0 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 5 channel 1007 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 6 channel 1008 gain 0 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 7 channel 1017 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 8 channel 1018 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 9 channel 1019 gain 1 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 10 channel 1020 gain 1 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 11 channel 1025 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 12 channel 1029 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 13 channel 1030 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1031 gain 2 groupingType 1 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 15 channel 1032 gain 2 groupingType 1 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 16 ramps size 16 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SingleGroup test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects20 +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 25 0 25 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 5 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 10 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 7 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 11 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 3 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 4 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 8 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 12 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 25 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 5 gain 0 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 6 gain 0 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 7 gain 1 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 8 gain 1 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 9 gain 1 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 10 gain 1 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 11 gain 2 groupingType 2 subsetSize 896 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 12 gain 2 groupingType 2 subsetSize 552 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 13 gain 2 groupingType 2 subsetSize 48 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 14 gain 2 groupingType 2 subsetSize 28 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 1005 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 13 channel 1006 gain 0 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 14 channel 1007 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 15 channel 1008 gain 0 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 16 channel 1017 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 17 channel 1018 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 18 channel 1019 gain 1 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 19 channel 1020 gain 1 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 20 channel 1025 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 21 channel 1029 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 22 channel 1030 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 23 channel 1031 gain 2 groupingType 2 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 24 channel 1032 gain 2 groupingType 2 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 25 ramps size 25 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded SubDetectorGrouping test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects25088 +LArConditionsTe... INFO in testEachCondObject() +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 0 [4.4.0.0.0.1.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 1 [4.4.0.0.0.8.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 2 [4.4.0.0.1.2.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 3 [4.4.0.0.1.10.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 4 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 5 [4.4.0.0.2.12.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 6 [4.4.0.0.3.5.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 7 [4.4.0.0.3.13.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 8 [4.4.0.0.4.7.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 9 [4.4.0.0.5.1.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 10 [4.4.0.0.5.9.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 11 [4.4.0.0.6.2.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 12 [4.4.0.0.6.10.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 13 [4.4.0.0.7.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 14 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 15 [4.4.0.0.8.6.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 16 [4.4.0.0.8.14.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 17 [4.4.0.0.9.7.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 18 [4.4.0.0.10.1.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 19 [4.4.0.0.10.9.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 20 [4.4.0.0.11.3.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 21 [4.4.0.0.11.11.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 22 [4.4.0.0.12.4.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 23 [4.4.0.0.12.12.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 24 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 25 [4.4.0.0.13.14.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 26 [4.4.0.0.14.8.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 27 [4.4.0.0.15.1.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 28 [4.4.0.0.15.9.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 29 [4.4.0.0.16.3.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 30 [4.4.0.0.16.11.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 31 [4.4.0.0.17.5.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 32 [4.4.0.0.17.13.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 33 [4.4.0.0.18.6.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 34 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 35 [4.4.0.0.19.8.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 36 [4.4.0.0.20.2.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 37 [4.4.0.0.20.10.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 38 [4.4.0.0.21.3.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 39 [4.4.0.0.21.11.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 40 [4.4.0.0.22.5.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 41 [4.4.0.0.22.13.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 42 [4.4.0.0.23.7.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 43 [4.4.0.0.23.14.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 44 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 45 [4.4.0.0.25.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 46 [4.4.0.0.25.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 47 [4.4.0.0.26.4.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 48 [4.4.0.0.26.12.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 49 [4.4.0.0.27.5.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 50 [4.4.0.0.27.13.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 51 [4.4.0.0.28.7.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 52 [4.4.0.0.29.1.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 53 [4.4.0.0.29.9.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 54 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 55 [4.4.0.0.30.10.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 56 [4.4.0.0.31.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 57 [4.4.0.0.31.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 58 [4.4.0.1.0.6.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 59 [4.4.0.1.0.13.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 60 [4.4.0.1.1.7.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 61 [4.4.0.1.2.1.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 62 [4.4.0.1.2.9.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 63 [4.4.0.1.3.3.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 64 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 65 [4.4.0.1.4.4.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 66 [4.4.0.1.4.12.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 67 [4.4.0.1.5.6.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 68 [4.4.0.1.5.14.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 69 [4.4.0.1.6.8.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 70 [4.4.0.1.7.1.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 71 [4.4.0.1.7.9.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 72 [4.4.0.1.8.3.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 73 [4.4.0.1.8.11.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 74 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 75 [4.4.0.1.9.12.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 76 [4.4.0.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 77 [4.4.0.1.10.14.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 78 [4.4.0.1.11.8.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 79 [4.4.0.1.12.2.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 80 [4.4.0.1.12.10.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 81 [4.4.0.1.13.3.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 82 [4.4.0.1.13.11.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 83 [4.4.0.1.14.5.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 84 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 85 [4.4.0.1.15.7.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 86 [4.4.0.1.15.14.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 87 [4.4.0.1.16.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 88 [4.4.0.1.17.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 89 [4.4.0.1.17.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 90 [4.4.0.1.18.4.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 91 [4.4.0.1.18.11.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 92 [4.4.0.1.19.5.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 93 [4.4.0.1.19.13.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 94 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 95 [4.4.0.1.21.1.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 96 [4.4.0.1.21.9.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 97 [4.4.0.1.22.2.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 98 [4.4.0.1.22.10.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 99 [4.4.0.1.23.4.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 100 [4.4.0.1.23.12.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 101 [4.4.0.1.24.6.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 102 [4.4.0.1.24.13.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 103 [4.4.0.1.25.7.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 104 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 105 [4.4.0.1.26.9.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 106 [4.4.0.1.27.3.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 107 [4.4.0.1.27.10.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 108 [4.4.0.1.28.4.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 109 [4.4.0.1.28.12.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 110 [4.4.0.1.29.6.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 111 [4.4.0.1.29.14.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 112 [4.4.0.1.30.8.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 113 [4.4.0.1.31.1.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 114 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 115 [4.4.1.0.0.3.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 116 [4.4.1.0.0.11.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 117 [4.4.1.0.1.6.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 118 [4.4.1.0.1.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 119 [4.4.1.0.2.8.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 120 [4.4.1.0.3.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 121 [4.4.1.0.4.1.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 122 [4.4.1.0.4.9.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 123 [4.4.1.0.5.3.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 124 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 125 [4.4.1.0.6.6.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 126 [4.4.1.0.6.15.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 127 [4.4.1.0.7.8.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 128 [4.4.1.0.8.3.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 129 [4.4.1.0.8.10.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 130 [4.4.1.0.9.5.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 131 [4.4.1.0.9.13.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 132 [4.4.1.0.10.8.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 133 [4.4.1.0.11.6.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 134 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 135 [4.4.1.0.12.8.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 136 [4.4.1.0.13.3.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 137 [4.4.1.0.13.11.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 138 [4.4.1.0.14.6.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 139 [4.4.1.0.14.13.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 140 [4.4.1.0.15.8.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 141 [4.4.1.0.16.1.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 142 [4.4.1.0.17.1.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 143 [4.4.1.0.17.9.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 144 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 145 [4.4.1.0.18.11.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 146 [4.4.1.0.19.6.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 147 [4.4.1.0.20.1.62.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 148 [4.4.1.0.20.9.38.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 149 [4.4.1.0.21.4.14.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 150 [4.4.1.0.21.11.118.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 151 [4.4.1.0.22.6.94.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 152 [4.4.1.0.23.4.70.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 153 [4.4.1.0.23.12.46.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 154 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 155 [4.4.1.1.0.1.126.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 156 [4.4.1.1.0.9.102.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 157 [4.4.1.1.1.4.78.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 158 [4.4.1.1.1.12.54.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 159 [4.4.1.1.2.7.30.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 160 [4.4.1.1.2.15.6.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 161 [4.4.1.1.3.9.110.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 162 [4.4.1.1.4.7.86.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 163 [4.4.1.1.5.2.62.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 164 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 165 [4.4.1.1.6.5.14.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 166 [4.4.1.1.6.13.118.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 167 [4.4.1.1.7.6.94.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 168 [4.4.1.1.8.1.70.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 169 [4.4.1.1.8.9.46.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 170 [4.4.1.1.9.4.22.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 171 [4.4.1.1.9.11.126.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 172 [4.4.1.1.10.6.102.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 173 [4.4.1.1.11.4.78.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 174 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 175 [4.4.1.1.12.7.30.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 176 [4.4.1.1.13.2.6.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 177 [4.4.1.1.13.9.110.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 178 [4.4.1.1.14.4.86.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 179 [4.4.1.1.14.12.62.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 180 [4.4.1.1.15.7.38.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 181 [4.4.1.1.15.15.14.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 182 [4.4.1.1.16.9.118.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 183 [4.4.1.1.17.7.94.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 184 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 185 [4.4.1.1.18.10.46.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 186 [4.4.1.1.19.5.22.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 187 [4.4.1.1.19.12.126.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 188 [4.4.1.1.20.7.102.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 189 [4.4.1.1.21.2.78.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 190 [4.4.1.1.21.10.54.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 191 [4.4.1.1.22.5.30.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 192 [4.4.1.1.23.3.6.0] 0 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 193 [4.4.1.1.23.10.110.0] 1 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 194 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG setPdata for chan, chan id, gain 195 [4.4.1.1.24.13.62.0] 0 +LArConditionsTe... DEBUG Finished conditions, now write corrections +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 0 [4.4.0.0.2.4.38.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 1 [4.4.0.0.7.12.54.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 2 [4.4.0.0.13.6.70.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 3 [4.4.0.0.18.14.86.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 4 [4.4.0.0.24.8.102.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 5 [4.4.0.0.30.2.118.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 6 [4.4.0.1.3.11.6.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 7 [4.4.0.1.9.5.22.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 8 [4.4.0.1.14.13.38.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 9 [4.4.0.1.20.7.54.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 10 [4.4.0.1.26.1.70.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 11 [4.4.0.1.31.9.86.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 12 [4.4.1.0.5.11.102.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 13 [4.4.1.0.11.13.118.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 14 [4.4.1.0.18.4.6.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 15 [4.4.1.0.24.7.22.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 16 [4.4.1.1.5.10.38.0] 2 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 17 [4.4.1.1.11.12.54.0] 0 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 18 [4.4.1.1.18.2.70.0] 1 +LArConditionsTe... DEBUG insert corr for chan, chan id, gain 19 [4.4.1.1.24.5.86.0] 2 +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Number of channels, iovs, subsets 209 0 209 +LArConditionsTe... DEBUG Compare LArRampMC with cache +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 39 [4.4.0.1.4.12.86.0] 0 198 199 200 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 41 [4.4.0.1.6.8.14.0] 0 207 208 209 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 43 [4.4.0.1.8.3.70.0] 0 216 217 218 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 44 [4.4.0.1.9.12.126.0] 0 225 226 227 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 46 [4.4.0.1.11.8.54.0] 0 234 235 236 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 48 [4.4.0.1.13.3.110.0] 0 243 244 245 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 51 [4.4.0.1.16.8.94.0] 0 261 262 263 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 53 [4.4.0.1.18.4.22.0] 0 270 271 272 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 54 [4.4.0.1.19.13.78.0] 0 279 280 281 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 56 [4.4.0.1.21.9.6.0] 0 288 289 290 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 58 [4.4.0.1.23.4.62.0] 0 297 298 299 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 59 [4.4.0.1.24.13.118.0] 0 306 307 308 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 61 [4.4.0.1.26.9.46.0] 0 315 316 317 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 63 [4.4.0.1.28.4.102.0] 0 324 325 326 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 64 [4.4.0.1.29.14.30.0] 0 333 334 335 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 68 [4.4.1.0.1.6.14.0] 0 351 352 353 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 70 [4.4.1.0.3.1.70.0] 0 360 361 362 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 72 [4.4.1.0.5.3.126.0] 0 369 370 371 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 73 [4.4.1.0.6.15.54.0] 0 378 379 380 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 75 [4.4.1.0.8.10.110.0] 0 387 388 389 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 77 [4.4.1.0.10.8.38.0] 0 396 397 398 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 79 [4.4.1.0.12.8.94.0] 0 405 406 407 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 81 [4.4.1.0.14.6.22.0] 0 414 415 416 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 83 [4.4.1.0.16.1.78.0] 0 423 424 425 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 87 [4.4.1.0.20.1.62.0] 0 441 442 443 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 88 [4.4.1.0.21.11.118.0] 0 450 451 452 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 90 [4.4.1.0.23.12.46.0] 0 459 460 461 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 92 [4.4.1.1.0.9.102.0] 0 468 469 470 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 94 [4.4.1.1.2.7.30.0] 0 477 478 479 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 96 [4.4.1.1.4.7.86.0] 0 486 487 488 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 98 [4.4.1.1.6.5.14.0] 0 495 496 497 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 100 [4.4.1.1.8.1.70.0] 0 504 505 506 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 101 [4.4.1.1.9.11.126.0] 0 513 514 515 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 105 [4.4.1.1.13.9.110.0] 0 531 532 533 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 107 [4.4.1.1.15.7.38.0] 0 540 541 542 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 109 [4.4.1.1.17.7.94.0] 0 549 550 551 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 111 [4.4.1.1.19.5.22.0] 0 558 559 560 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 113 [4.4.1.1.21.2.78.0] 0 567 568 569 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 115 [4.4.1.1.23.3.6.0] 0 576 577 578 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 116 [4.4.1.1.24.13.62.0] 0 585 586 587 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 154 [4.4.0.1.5.6.62.0] 1 201 202 203 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 156 [4.4.0.1.7.1.118.0] 1 210 211 212 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 157 [4.4.0.1.8.11.46.0] 1 219 220 221 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 159 [4.4.0.1.10.6.102.0] 1 228 229 230 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 161 [4.4.0.1.12.2.30.0] 1 237 238 239 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 162 [4.4.0.1.13.11.86.0] 1 246 247 248 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 164 [4.4.0.1.15.7.14.0] 1 255 256 257 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 166 [4.4.0.1.17.2.70.0] 1 264 265 266 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 167 [4.4.0.1.18.11.126.0] 1 273 274 275 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 171 [4.4.0.1.22.2.110.0] 1 291 292 293 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 172 [4.4.0.1.23.12.38.0] 1 300 301 302 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 174 [4.4.0.1.25.7.94.0] 1 309 310 311 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 176 [4.4.0.1.27.3.22.0] 1 318 319 320 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 177 [4.4.0.1.28.12.78.0] 1 327 328 329 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 179 [4.4.0.1.30.8.6.0] 1 336 337 338 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 181 [4.4.1.0.0.3.62.0] 1 345 346 347 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 182 [4.4.1.0.1.13.118.0] 1 354 355 356 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 185 [4.4.1.0.4.1.46.0] 1 363 364 365 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 188 [4.4.1.0.7.8.30.0] 1 381 382 383 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 190 [4.4.1.0.9.5.86.0] 1 390 391 392 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 192 [4.4.1.0.11.6.14.0] 1 399 400 401 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 194 [4.4.1.0.13.3.70.0] 1 408 409 410 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 195 [4.4.1.0.14.13.126.0] 1 417 418 419 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 198 [4.4.1.0.17.1.54.0] 1 426 427 428 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 199 [4.4.1.0.18.11.110.0] 1 435 436 437 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 201 [4.4.1.0.20.9.38.0] 1 444 445 446 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 203 [4.4.1.0.22.6.94.0] 1 453 454 455 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 207 [4.4.1.1.1.4.78.0] 1 471 472 473 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 208 [4.4.1.1.2.15.6.0] 1 480 481 482 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 211 [4.4.1.1.5.2.62.0] 1 489 490 491 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 212 [4.4.1.1.6.13.118.0] 1 498 499 500 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 214 [4.4.1.1.8.9.46.0] 1 507 508 509 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 216 [4.4.1.1.10.6.102.0] 1 516 517 518 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 218 [4.4.1.1.12.7.30.0] 1 525 526 527 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 220 [4.4.1.1.14.4.86.0] 1 534 535 536 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 221 [4.4.1.1.15.15.14.0] 1 543 544 545 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 225 [4.4.1.1.19.12.126.0] 1 561 562 563 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 227 [4.4.1.1.21.10.54.0] 1 570 571 572 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 229 [4.4.1.1.23.10.110.0] 1 579 580 581 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 267 [4.4.0.1.4.4.110.0] 2 195 196 197 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 268 [4.4.0.1.5.14.38.0] 2 204 205 206 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 270 [4.4.0.1.7.9.94.0] 2 213 214 215 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 273 [4.4.0.1.10.14.78.0] 2 231 232 233 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 275 [4.4.0.1.12.10.6.0] 2 240 241 242 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 277 [4.4.0.1.14.5.62.0] 2 249 250 251 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 278 [4.4.0.1.15.14.118.0] 2 258 259 260 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 280 [4.4.0.1.17.10.46.0] 2 267 268 269 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 282 [4.4.0.1.19.5.102.0] 2 276 277 278 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 284 [4.4.0.1.21.1.30.0] 2 285 286 287 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 285 [4.4.0.1.22.10.86.0] 2 294 295 296 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 287 [4.4.0.1.24.6.14.0] 2 303 304 305 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 290 [4.4.0.1.27.10.126.0] 2 321 322 323 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 292 [4.4.0.1.29.6.54.0] 2 330 331 332 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 294 [4.4.0.1.31.1.110.0] 2 339 340 341 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 295 [4.4.1.0.0.11.38.0] 2 348 349 350 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 297 [4.4.1.0.2.8.94.0] 2 357 358 359 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 299 [4.4.1.0.4.9.22.0] 2 366 367 368 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 301 [4.4.1.0.6.6.78.0] 2 375 376 377 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 303 [4.4.1.0.8.3.6.0] 2 384 385 386 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 304 [4.4.1.0.9.13.62.0] 2 393 394 395 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 308 [4.4.1.0.13.11.46.0] 2 411 412 413 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 310 [4.4.1.0.15.8.102.0] 2 420 421 422 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 312 [4.4.1.0.17.9.30.0] 2 429 430 431 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 314 [4.4.1.0.19.6.86.0] 2 438 439 440 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 316 [4.4.1.0.21.4.14.0] 2 447 448 449 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 318 [4.4.1.0.23.4.70.0] 2 456 457 458 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 320 [4.4.1.1.0.1.126.0] 2 465 466 467 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 321 [4.4.1.1.1.12.54.0] 2 474 475 476 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 323 [4.4.1.1.3.9.110.0] 2 483 484 485 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 327 [4.4.1.1.7.6.94.0] 2 501 502 503 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 329 [4.4.1.1.9.4.22.0] 2 510 511 512 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 331 [4.4.1.1.11.4.78.0] 2 519 520 521 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 333 [4.4.1.1.13.2.6.0] 2 528 529 530 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 334 [4.4.1.1.14.12.62.0] 2 537 538 539 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 336 [4.4.1.1.16.9.118.0] 2 546 547 548 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 338 [4.4.1.1.18.10.46.0] 2 555 556 557 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 340 [4.4.1.1.20.7.102.0] 2 564 565 566 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 342 [4.4.1.1.22.5.30.0] 2 573 574 575 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with cache using iterator and febid selection +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.1.0.0] [4.4.0.0.1.10.0.0] [4.4.0.0.3.5.0.0] [4.4.0.0.5.1.0.0] [4.4.0.0.6.10.0.0] [4.4.0.0.8.6.0.0] [4.4.0.0.10.1.0.0] [4.4.0.0.11.11.0.0] [4.4.0.0.13.6.0.0] [4.4.0.0.15.1.0.0] [4.4.0.0.16.11.0.0] [4.4.0.0.18.6.0.0] [4.4.0.0.20.2.0.0] [4.4.0.0.21.11.0.0] [4.4.0.0.23.7.0.0] [4.4.0.0.25.2.0.0] [4.4.0.0.26.12.0.0] [4.4.0.0.28.7.0.0] [4.4.0.0.30.2.0.0] [4.4.0.0.31.12.0.0] [4.4.0.1.1.7.0.0] [4.4.0.1.3.3.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.1.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 3 [4.4.0.0.0.1.6.0] 0 0 1 2 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.10.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 4 [4.4.0.0.1.10.62.0] 0 9 10 11 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.5.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 6 [4.4.0.0.3.5.118.0] 0 18 19 20 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.1.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 8 [4.4.0.0.5.1.46.0] 0 27 28 29 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.10.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 9 [4.4.0.0.6.10.102.0] 0 36 37 38 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.6.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 11 [4.4.0.0.8.6.30.0] 0 45 46 47 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.1.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 13 [4.4.0.0.10.1.86.0] 0 54 55 56 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.11.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 14 [4.4.0.0.11.11.14.0] 0 63 64 65 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.6.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.1.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 18 [4.4.0.0.15.1.126.0] 0 81 82 83 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.11.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 19 [4.4.0.0.16.11.54.0] 0 90 91 92 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.6.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 21 [4.4.0.0.18.6.110.0] 0 99 100 101 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.2.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 23 [4.4.0.0.20.2.38.0] 0 108 109 110 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.11.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 24 [4.4.0.0.21.11.94.0] 0 117 118 119 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.7.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 26 [4.4.0.0.23.7.22.0] 0 126 127 128 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.2.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 28 [4.4.0.0.25.2.78.0] 0 135 136 137 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.12.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 29 [4.4.0.0.26.12.6.0] 0 144 145 146 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.28.7.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 31 [4.4.0.0.28.7.62.0] 0 153 154 155 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.2.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.12.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 34 [4.4.0.0.31.12.46.0] 0 171 172 173 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.1.7.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 36 [4.4.0.1.1.7.102.0] 0 180 181 182 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.3.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 38 [4.4.0.1.3.3.30.0] 0 189 190 191 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.0.8.0.0] [4.4.0.0.2.4.0.0] [4.4.0.0.3.13.0.0] [4.4.0.0.5.9.0.0] [4.4.0.0.7.4.0.0] [4.4.0.0.8.14.0.0] [4.4.0.0.10.9.0.0] [4.4.0.0.12.4.0.0] [4.4.0.0.13.14.0.0] [4.4.0.0.15.9.0.0] [4.4.0.0.17.5.0.0] [4.4.0.0.18.14.0.0] [4.4.0.0.20.10.0.0] [4.4.0.0.22.5.0.0] [4.4.0.0.23.14.0.0] [4.4.0.0.25.10.0.0] [4.4.0.0.27.5.0.0] [4.4.0.0.29.1.0.0] [4.4.0.0.30.10.0.0] [4.4.0.1.0.6.0.0] [4.4.0.1.2.1.0.0] [4.4.0.1.3.11.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.0.8.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 117 [4.4.0.0.0.8.110.0] 1 3 4 5 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.4.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.3.13.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 120 [4.4.0.0.3.13.94.0] 1 21 22 23 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.5.9.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 122 [4.4.0.0.5.9.22.0] 1 30 31 32 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.4.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 124 [4.4.0.0.7.4.78.0] 1 39 40 41 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.8.14.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 125 [4.4.0.0.8.14.6.0] 1 48 49 50 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.10.9.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 127 [4.4.0.0.10.9.62.0] 1 57 58 59 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.4.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 129 [4.4.0.0.12.4.118.0] 1 66 67 68 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.13.14.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 130 [4.4.0.0.13.14.46.0] 1 75 76 77 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.15.9.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 132 [4.4.0.0.15.9.102.0] 1 84 85 86 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.5.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 134 [4.4.0.0.17.5.30.0] 1 93 94 95 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.18.14.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.20.10.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 137 [4.4.0.0.20.10.14.0] 1 111 112 113 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.5.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 139 [4.4.0.0.22.5.70.0] 1 120 121 122 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.23.14.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 140 [4.4.0.0.23.14.126.0] 1 129 130 131 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.25.10.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 142 [4.4.0.0.25.10.54.0] 1 138 139 140 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.5.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 144 [4.4.0.0.27.5.110.0] 1 147 148 149 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.1.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 146 [4.4.0.0.29.1.38.0] 1 156 157 158 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.30.10.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 147 [4.4.0.0.30.10.94.0] 1 165 166 167 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.6.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 149 [4.4.0.1.0.6.22.0] 1 174 175 176 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.1.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 151 [4.4.0.1.2.1.78.0] 1 183 184 185 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.3.11.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG FebID vec 1 : [4.4.0.0.1.2.0.0] [4.4.0.0.2.12.0.0] [4.4.0.0.4.7.0.0] [4.4.0.0.6.2.0.0] [4.4.0.0.7.12.0.0] [4.4.0.0.9.7.0.0] [4.4.0.0.11.3.0.0] [4.4.0.0.12.12.0.0] [4.4.0.0.14.8.0.0] [4.4.0.0.16.3.0.0] [4.4.0.0.17.13.0.0] [4.4.0.0.19.8.0.0] [4.4.0.0.21.3.0.0] [4.4.0.0.22.13.0.0] [4.4.0.0.24.8.0.0] [4.4.0.0.26.4.0.0] [4.4.0.0.27.13.0.0] [4.4.0.0.29.9.0.0] [4.4.0.0.31.4.0.0] [4.4.0.1.0.13.0.0] [4.4.0.1.2.9.0.0] +LArConditionsTe... DEBUG After ramps->end +LArConditionsTe... DEBUG Looking for [4.4.0.0.1.2.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 232 [4.4.0.0.1.2.86.0] 2 6 7 8 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.2.12.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 233 [4.4.0.0.2.12.14.0] 2 15 16 17 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.4.7.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 235 [4.4.0.0.4.7.70.0] 2 24 25 26 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.6.2.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 237 [4.4.0.0.6.2.126.0] 2 33 34 35 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.7.12.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.9.7.110.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 240 [4.4.0.0.9.7.110.0] 2 51 52 53 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.11.3.38.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 242 [4.4.0.0.11.3.38.0] 2 60 61 62 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.12.12.94.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 243 [4.4.0.0.12.12.94.0] 2 69 70 71 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.14.8.22.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 245 [4.4.0.0.14.8.22.0] 2 78 79 80 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.16.3.78.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 247 [4.4.0.0.16.3.78.0] 2 87 88 89 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.17.13.6.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 248 [4.4.0.0.17.13.6.0] 2 96 97 98 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.19.8.62.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 250 [4.4.0.0.19.8.62.0] 2 105 106 107 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.21.3.118.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 252 [4.4.0.0.21.3.118.0] 2 114 115 116 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.22.13.46.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 253 [4.4.0.0.22.13.46.0] 2 123 124 125 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.24.8.102.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.26.4.30.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 257 [4.4.0.0.26.4.30.0] 2 141 142 143 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.27.13.86.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 258 [4.4.0.0.27.13.86.0] 2 150 151 152 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.29.9.14.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 260 [4.4.0.0.29.9.14.0] 2 159 160 161 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.0.31.4.70.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 262 [4.4.0.0.31.4.70.0] 2 168 169 170 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.0.13.126.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 263 [4.4.0.1.0.13.126.0] 2 177 178 179 Compare = 1 +LArConditionsTe... DEBUG Looking for [4.4.0.1.2.9.54.0] +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 +LArConditionsTe... DEBUG Cache: cool chan, chan id, gain, ramps 265 [4.4.0.1.2.9.54.0] 2 186 187 188 Compare = 1 +LArConditionsTe... DEBUG Compare LArRampMC with corrections +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Apply corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG 2nd Undo corrections and compare LArRampMC with corrections +LArConditionsTe... DEBUG Corrections applied: 0 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 12 13 14 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 119 [4.4.0.0.2.4.38.0] 1 -12 -13 -14 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 42 43 44 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 238 [4.4.0.0.7.12.54.0] 2 -42 -43 -44 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 72 73 74 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 16 [4.4.0.0.13.6.70.0] 0 -72 -73 -74 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 102 103 104 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 135 [4.4.0.0.18.14.86.0] 1 -102 -103 -104 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 132 133 134 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 255 [4.4.0.0.24.8.102.0] 2 -132 -133 -134 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 162 163 164 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 33 [4.4.0.0.30.2.118.0] 0 -162 -163 -164 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 192 193 194 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 152 [4.4.0.1.3.11.6.0] 1 -192 -193 -194 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 222 223 224 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 272 [4.4.0.1.9.5.22.0] 2 -222 -223 -224 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 252 253 254 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 49 [4.4.0.1.14.13.38.0] 0 -252 -253 -254 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 282 283 284 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 169 [4.4.0.1.20.7.54.0] 1 -282 -283 -284 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 312 313 314 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 289 [4.4.0.1.26.1.70.0] 2 -312 -313 -314 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 342 343 344 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 66 [4.4.0.1.31.9.86.0] 0 -342 -343 -344 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 372 373 374 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 186 [4.4.1.0.5.11.102.0] 1 -372 -373 -374 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 402 403 404 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 306 [4.4.1.0.11.13.118.0] 2 -402 -403 -404 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 432 433 434 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 85 [4.4.1.0.18.4.6.0] 0 -432 -433 -434 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 462 463 464 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 205 [4.4.1.0.24.7.22.0] 1 -462 -463 -464 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 492 493 494 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 325 [4.4.1.1.5.10.38.0] 2 -492 -493 -494 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 522 523 524 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 103 [4.4.1.1.11.12.54.0] 0 -522 -523 -524 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 552 553 554 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 224 [4.4.1.1.18.2.70.0] 1 -552 -553 -554 Compare = 1 +LArConditionsTe... DEBUG New : cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 582 583 584 +LArConditionsTe... DEBUG Corrections: cool chan, chan id, gain, ramps 344 [4.4.1.1.24.5.86.0] 2 -582 -583 -584 Compare = 1 +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG Index 0 channel 3 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 1 channel 4 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 2 channel 6 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 3 channel 8 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 4 channel 9 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 5 channel 11 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 6 channel 13 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 7 channel 14 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 8 channel 16 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 9 channel 18 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 10 channel 19 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 11 channel 21 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 12 channel 23 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 13 channel 24 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 14 channel 26 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 15 channel 28 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 16 channel 29 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 17 channel 31 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 18 channel 33 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 19 channel 34 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 20 channel 36 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 21 channel 38 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 22 channel 39 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 23 channel 41 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 24 channel 43 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 25 channel 44 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 26 channel 46 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 27 channel 48 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 28 channel 49 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 29 channel 51 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 30 channel 53 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 31 channel 54 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 32 channel 56 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 33 channel 58 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 34 channel 59 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 35 channel 61 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 36 channel 63 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 37 channel 64 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 38 channel 66 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 39 channel 68 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 40 channel 70 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 41 channel 72 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 42 channel 73 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 43 channel 75 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 44 channel 77 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 45 channel 79 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 46 channel 81 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 47 channel 83 gain 0 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 48 channel 85 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 49 channel 87 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 50 channel 88 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 51 channel 90 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 52 channel 92 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 53 channel 94 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 54 channel 96 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 55 channel 98 gain 0 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 56 channel 100 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 57 channel 101 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 58 channel 103 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 59 channel 105 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 60 channel 107 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 61 channel 109 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 62 channel 111 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 63 channel 113 gain 0 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 64 channel 115 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 65 channel 116 gain 0 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 66 channel 117 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 67 channel 119 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 68 channel 120 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 69 channel 122 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 70 channel 124 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 71 channel 125 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 72 channel 127 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 73 channel 129 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 74 channel 130 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 75 channel 132 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 76 channel 134 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 77 channel 135 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 78 channel 137 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 79 channel 139 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 80 channel 140 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 81 channel 142 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 82 channel 144 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 83 channel 146 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 84 channel 147 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 85 channel 149 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 86 channel 151 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 87 channel 152 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 88 channel 154 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 89 channel 156 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 90 channel 157 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 91 channel 159 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 92 channel 161 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 93 channel 162 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 94 channel 164 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 95 channel 166 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 96 channel 167 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 97 channel 169 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 98 channel 171 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 99 channel 172 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 100 channel 174 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 101 channel 176 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 102 channel 177 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 103 channel 179 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 104 channel 181 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 105 channel 182 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 106 channel 185 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 107 channel 186 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 108 channel 188 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 109 channel 190 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 110 channel 192 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 111 channel 194 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 112 channel 195 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 113 channel 198 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 114 channel 199 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 115 channel 201 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 116 channel 203 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 117 channel 205 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 118 channel 207 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 119 channel 208 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 120 channel 211 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 121 channel 212 gain 1 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 122 channel 214 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 123 channel 216 gain 1 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 124 channel 218 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 125 channel 220 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 126 channel 221 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 127 channel 224 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 128 channel 225 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 129 channel 227 gain 1 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 130 channel 229 gain 1 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 131 channel 232 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 132 channel 233 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 133 channel 235 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 134 channel 237 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 135 channel 238 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 136 channel 240 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 137 channel 242 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 138 channel 243 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 139 channel 245 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 140 channel 247 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 141 channel 248 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 142 channel 250 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 143 channel 252 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 144 channel 253 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 145 channel 255 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 146 channel 257 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 147 channel 258 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 148 channel 260 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 149 channel 262 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 150 channel 263 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 151 channel 265 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 152 channel 267 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 153 channel 268 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 154 channel 270 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 155 channel 272 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 156 channel 273 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 157 channel 275 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 158 channel 277 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 159 channel 278 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 160 channel 280 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 161 channel 282 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 162 channel 284 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 163 channel 285 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 164 channel 287 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 165 channel 289 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 166 channel 290 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 167 channel 292 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 168 channel 294 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 169 channel 295 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 170 channel 297 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 171 channel 299 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 172 channel 301 gain 2 groupingType 3 subsetSize 14 correctionVecSize 0 +LArConditionsTe... DEBUG Index 173 channel 303 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 174 channel 304 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 175 channel 306 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 176 channel 308 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 177 channel 310 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 178 channel 312 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 179 channel 314 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 180 channel 316 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 181 channel 318 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 182 channel 320 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 183 channel 321 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 184 channel 323 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 185 channel 325 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 186 channel 327 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 187 channel 329 gain 2 groupingType 3 subsetSize 15 correctionVecSize 0 +LArConditionsTe... DEBUG Index 188 channel 331 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 189 channel 333 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 190 channel 334 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 191 channel 336 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 192 channel 338 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 193 channel 340 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 194 channel 342 gain 2 groupingType 3 subsetSize 8 correctionVecSize 0 +LArConditionsTe... DEBUG Index 195 channel 344 gain 2 groupingType 3 subsetSize 13 correctionVecSize 0 +LArConditionsTe... DEBUG Index 196 channel 1005 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 197 channel 1006 gain 0 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 198 channel 1007 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 199 channel 1008 gain 0 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 200 channel 1017 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 201 channel 1018 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 202 channel 1019 gain 1 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 203 channel 1020 gain 1 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 204 channel 1025 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 205 channel 1029 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Index 206 channel 1030 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 207 channel 1031 gain 2 groupingType 3 subsetSize 0 correctionVecSize 2 +LArConditionsTe... DEBUG Index 208 channel 1032 gain 2 groupingType 3 subsetSize 0 correctionVecSize 1 +LArConditionsTe... DEBUG Channel numbers size 209 ramps size 209 +LArConditionsTe... DEBUG End of testEachCondObject +LArConditionsTe... INFO Succeeded FeedThroughGrouping test +LArConditionsTe... DEBUG Total number of conditions objects25088 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects20 +LArConditionsTe... DEBUG Statistics for LArRampsFeedThroughGrouping +LArConditionsTe... DEBUG Number of channels, iovs 209 0 +LArConditionsTe... DEBUG IOVs found: +LArConditionsTe... DEBUG Channel: 3 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 4 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 6 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 8 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 9 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 11 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 13 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 14 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 16 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 18 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 19 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 21 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 23 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 24 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 26 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 28 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 29 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 31 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 33 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 34 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 36 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 38 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 39 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 41 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 43 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 44 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 46 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 48 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 49 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 51 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 53 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 54 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 56 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 58 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 59 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 61 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 63 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 64 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 66 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 68 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 70 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 72 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 73 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 75 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 77 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 79 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 81 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 83 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 85 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 87 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 88 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 90 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 92 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 94 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 96 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 98 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 100 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 101 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 103 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 105 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 107 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 109 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 111 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 113 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 115 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 116 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 117 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 119 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 120 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 122 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 124 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 125 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 127 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 129 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 130 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 132 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 134 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 135 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 137 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 139 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 140 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 142 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 144 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 146 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 147 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 149 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 151 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 152 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 154 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 156 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 157 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 159 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 161 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 162 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 164 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 166 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 167 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 169 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 171 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 172 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 174 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 176 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 177 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 179 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 181 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 182 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 185 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 186 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 188 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 190 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 192 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 194 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 195 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 198 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 199 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 201 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 203 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 205 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 207 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 208 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 211 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 212 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 214 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 216 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 218 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 220 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 221 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 224 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 225 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 227 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 229 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 232 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 233 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 235 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 237 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 238 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 240 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 242 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 243 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 245 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 247 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 248 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 250 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 252 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 253 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 255 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 257 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 258 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 260 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 262 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 263 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 265 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 267 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 268 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 270 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 272 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 273 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 275 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 277 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 278 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 280 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 282 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 284 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 285 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 287 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 289 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 290 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 292 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 294 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 295 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 297 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 299 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 301 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 303 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 304 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 306 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 308 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 310 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 312 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 314 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 316 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 318 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 320 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 321 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 323 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 325 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 327 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 329 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 331 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 333 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 334 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 336 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 338 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 340 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 342 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 344 number of conditions: 128 +LArConditionsTe... DEBUG Channel: 1005 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1006 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1007 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1008 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1017 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1018 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1019 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1020 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1025 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1029 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1030 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1031 number of conditions: 0 +LArConditionsTe... DEBUG Channel: 1032 number of conditions: 0 +LArConditionsTe... DEBUG Group: 0 number of conditions: 0 +LArConditionsTe... DEBUG Group: 1 number of conditions: 256 +LArConditionsTe... DEBUG Group: 2 number of conditions: 256 +LArConditionsTe... DEBUG Group: 3 number of conditions: 256 +LArConditionsTe... DEBUG Group: 4 number of conditions: 256 +LArConditionsTe... DEBUG Group: 5 number of conditions: 128 +LArConditionsTe... DEBUG Group: 6 number of conditions: 256 +LArConditionsTe... DEBUG Group: 7 number of conditions: 256 +LArConditionsTe... DEBUG Group: 8 number of conditions: 256 +LArConditionsTe... DEBUG Group: 9 number of conditions: 256 +LArConditionsTe... DEBUG Group: 10 number of conditions: 128 +LArConditionsTe... DEBUG Group: 11 number of conditions: 256 +LArConditionsTe... DEBUG Group: 12 number of conditions: 256 +LArConditionsTe... DEBUG Group: 13 number of conditions: 256 +LArConditionsTe... DEBUG Group: 14 number of conditions: 256 +LArConditionsTe... DEBUG Group: 15 number of conditions: 128 +LArConditionsTe... DEBUG Group: 16 number of conditions: 256 +LArConditionsTe... DEBUG Group: 17 number of conditions: 256 +LArConditionsTe... DEBUG Group: 18 number of conditions: 256 +LArConditionsTe... DEBUG Group: 19 number of conditions: 256 +LArConditionsTe... DEBUG Group: 20 number of conditions: 128 +LArConditionsTe... DEBUG Group: 21 number of conditions: 256 +LArConditionsTe... DEBUG Group: 22 number of conditions: 256 +LArConditionsTe... DEBUG Group: 23 number of conditions: 128 +LArConditionsTe... DEBUG Group: 24 number of conditions: 256 +LArConditionsTe... DEBUG Group: 25 number of conditions: 256 +LArConditionsTe... DEBUG Group: 26 number of conditions: 128 +LArConditionsTe... DEBUG Group: 27 number of conditions: 256 +LArConditionsTe... DEBUG Group: 28 number of conditions: 128 +LArConditionsTe... DEBUG Group: 29 number of conditions: 256 +LArConditionsTe... DEBUG Group: 30 number of conditions: 256 +LArConditionsTe... DEBUG Group: 31 number of conditions: 128 +LArConditionsTe... DEBUG Group: 32 number of conditions: 256 +LArConditionsTe... DEBUG Group: 33 number of conditions: 256 +LArConditionsTe... DEBUG Group: 34 number of conditions: 128 +LArConditionsTe... DEBUG Group: 35 number of conditions: 256 +LArConditionsTe... DEBUG Group: 36 number of conditions: 128 +LArConditionsTe... DEBUG Group: 37 number of conditions: 256 +LArConditionsTe... DEBUG Group: 38 number of conditions: 256 +LArConditionsTe... DEBUG Group: 39 number of conditions: 256 +LArConditionsTe... DEBUG Group: 40 number of conditions: 256 +LArConditionsTe... DEBUG Group: 41 number of conditions: 256 +LArConditionsTe... DEBUG Group: 42 number of conditions: 128 +LArConditionsTe... DEBUG Group: 43 number of conditions: 256 +LArConditionsTe... DEBUG Group: 44 number of conditions: 256 +LArConditionsTe... DEBUG Group: 45 number of conditions: 256 +LArConditionsTe... DEBUG Group: 46 number of conditions: 256 +LArConditionsTe... DEBUG Group: 47 number of conditions: 128 +LArConditionsTe... DEBUG Group: 48 number of conditions: 256 +LArConditionsTe... DEBUG Group: 49 number of conditions: 256 +LArConditionsTe... DEBUG Group: 50 number of conditions: 256 +LArConditionsTe... DEBUG Group: 51 number of conditions: 128 +LArConditionsTe... DEBUG Group: 52 number of conditions: 256 +LArConditionsTe... DEBUG Group: 53 number of conditions: 256 +LArConditionsTe... DEBUG Group: 54 number of conditions: 256 +LArConditionsTe... DEBUG Group: 55 number of conditions: 256 +LArConditionsTe... DEBUG Group: 56 number of conditions: 128 +LArConditionsTe... DEBUG Group: 57 number of conditions: 256 +LArConditionsTe... DEBUG Group: 58 number of conditions: 256 +LArConditionsTe... DEBUG Group: 59 number of conditions: 256 +LArConditionsTe... DEBUG Group: 60 number of conditions: 256 +LArConditionsTe... DEBUG Group: 61 number of conditions: 128 +LArConditionsTe... DEBUG Group: 62 number of conditions: 256 +LArConditionsTe... DEBUG Group: 63 number of conditions: 128 +LArConditionsTe... DEBUG Group: 64 number of conditions: 256 +LArConditionsTe... DEBUG Group: 65 number of conditions: 128 +LArConditionsTe... DEBUG Group: 66 number of conditions: 256 +LArConditionsTe... DEBUG Group: 67 number of conditions: 256 +LArConditionsTe... DEBUG Group: 68 number of conditions: 128 +LArConditionsTe... DEBUG Group: 69 number of conditions: 256 +LArConditionsTe... DEBUG Group: 70 number of conditions: 256 +LArConditionsTe... DEBUG Group: 71 number of conditions: 128 +LArConditionsTe... DEBUG Group: 72 number of conditions: 256 +LArConditionsTe... DEBUG Group: 73 number of conditions: 256 +LArConditionsTe... DEBUG Group: 74 number of conditions: 128 +LArConditionsTe... DEBUG Group: 75 number of conditions: 256 +LArConditionsTe... DEBUG Group: 76 number of conditions: 128 +LArConditionsTe... DEBUG Group: 77 number of conditions: 256 +LArConditionsTe... DEBUG Group: 78 number of conditions: 128 +LArConditionsTe... DEBUG Group: 79 number of conditions: 256 +LArConditionsTe... DEBUG Group: 80 number of conditions: 256 +LArConditionsTe... DEBUG Group: 81 number of conditions: 256 +LArConditionsTe... DEBUG Group: 82 number of conditions: 256 +LArConditionsTe... DEBUG Group: 83 number of conditions: 128 +LArConditionsTe... DEBUG Group: 84 number of conditions: 256 +LArConditionsTe... DEBUG Group: 85 number of conditions: 256 +LArConditionsTe... DEBUG Group: 86 number of conditions: 256 +LArConditionsTe... DEBUG Group: 87 number of conditions: 256 +LArConditionsTe... DEBUG Group: 88 number of conditions: 128 +LArConditionsTe... DEBUG Group: 89 number of conditions: 256 +LArConditionsTe... DEBUG Group: 90 number of conditions: 256 +LArConditionsTe... DEBUG Group: 91 number of conditions: 256 +LArConditionsTe... DEBUG Group: 92 number of conditions: 256 +LArConditionsTe... DEBUG Group: 93 number of conditions: 128 +LArConditionsTe... DEBUG Group: 94 number of conditions: 256 +LArConditionsTe... DEBUG Group: 95 number of conditions: 256 +LArConditionsTe... DEBUG Group: 96 number of conditions: 256 +LArConditionsTe... DEBUG Group: 97 number of conditions: 128 +LArConditionsTe... DEBUG Group: 98 number of conditions: 256 +LArConditionsTe... DEBUG Group: 99 number of conditions: 256 +LArConditionsTe... DEBUG Group: 100 number of conditions: 128 +LArConditionsTe... DEBUG Group: 101 number of conditions: 256 +LArConditionsTe... DEBUG Group: 102 number of conditions: 256 +LArConditionsTe... DEBUG Group: 103 number of conditions: 128 +LArConditionsTe... DEBUG Group: 104 number of conditions: 256 +LArConditionsTe... DEBUG Group: 105 number of conditions: 128 +LArConditionsTe... DEBUG Group: 106 number of conditions: 256 +LArConditionsTe... DEBUG Group: 107 number of conditions: 256 +LArConditionsTe... DEBUG Group: 108 number of conditions: 128 +LArConditionsTe... DEBUG Group: 109 number of conditions: 256 +LArConditionsTe... DEBUG Group: 110 number of conditions: 128 +LArConditionsTe... DEBUG Group: 111 number of conditions: 256 +LArConditionsTe... DEBUG Group: 112 number of conditions: 256 +LArConditionsTe... DEBUG Group: 113 number of conditions: 128 +LArConditionsTe... DEBUG Group: 114 number of conditions: 256 +LArConditionsTe... DEBUG +LArConditionsTe... DEBUG Gain: 0 number of conditions: 8448 +LArConditionsTe... DEBUG Gain: 1 number of conditions: 8320 +LArConditionsTe... DEBUG Gain: 2 number of conditions: 8320 +LArConditionsTe... DEBUG Total number of conditions objects 25088 +LArConditionsTe... DEBUG Total number of correction objects 20 +LArConditionsTe... DEBUG End of testCondObjects +AthenaEventLoopMgr INFO ===>>> done processing event #0, run #0 1 events processed so far <<<=== +MetaDataSvc INFO MetaDataSvc::stop() +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] E01BD448-BF95-DB11-983E-0015C5098AA3 +/cvmfs/atlas-co... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase READ [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A +Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] +ApplicationMgr INFO Application Manager Stopped successfully +IncidentProcAlg1 INFO Finalize +CondInputLoader INFO Finalizing CondInputLoader... +OutputCondition... INFO Finalize: preparing to write conditions objects +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain UPDATE [ROOT_All] +Domain[ROOT_All] INFO -> Access DbDatabase CREATE [ROOT_All] 8447CF77-4E1B-8D42-8F42-E19770DB3AAD +Domain[ROOT_All] INFO LarCondTestNoReg.root +RootDatabase.open INFO LarCondTestNoReg.root File version:61404 +OutputCondition... INFO Identified a total of 3 objects to write out: +OutputCondition... INFO 0: LArRampMC#/LArCalorimeter/LArTests/LArRampsSingleGroup#/LArCalorimeter/LArTests/LArRampsSingleGroup +OutputCondition... INFO 1: LArRampMC#/LArCalorimeter/LArTests/LArRampsSubDetectorGrouping#/LArCalorimeter/LArTests/LArRampsSubDetectorGrouping +OutputCondition... INFO 2: LArRampMC#/LArCalorimeter/LArTests/LArRampsFeedThroughGrouping#/LArCalorimeter/LArTests/LArRampsFeedThroughGrouping +StorageSvc INFO Building shape according to reflection information using shape ID for: +StorageSvc INFO LArRampSubset_p1 [BB629283-BDF5-4FA8-93F4-5D8C2F201364] +StorageSvc INFO Building shape according to reflection information using shape ID for: +StorageSvc INFO CondMultChanCollImpl [1F1A18E0-CAFF-4AE4-84CC-2DC822C42AAA] +StorageSvc INFO Building shape according to reflection information using shape ID for: +StorageSvc INFO DataHeaderForm_p5 [3397D8A3-BBE6-463C-9F8E-4B3DFD8831FE] +StorageSvc INFO Building shape according to reflection information using shape ID for: +StorageSvc INFO DataHeader_p5 [D82968A1-CF91-4320-B2DD-E0F739CBC7E6] +OutputCondition... INFO Written 3 objects to output stream +OutputCondition... INFO Register objects in IOV database, interval of validity [run,LB] from [0,0] to [2147483647,4294967295] +OutputCondition... INFO Register object LArRampMC#/LArCalorimeter/LArTests/LArRampsSingleGroup in IOV database folder /LArCalorimeter/LArTests/LArRampsSingleGroup without tagging +ClassIDSvc INFO getRegistryEntries: read 794 CLIDRegistry entries for module ALL +IOVDbSvc INFO Opening COOL connection for sqlite://;schema=mycool.db;dbname=OFLP200 +OutputCondition... INFO Register object LArRampMC#/LArCalorimeter/LArTests/LArRampsSubDetectorGrouping in IOV database folder /LArCalorimeter/LArTests/LArRampsSubDetectorGrouping without tagging +OutputCondition... INFO Register object LArRampMC#/LArCalorimeter/LArTests/LArRampsFeedThroughGrouping in IOV database folder /LArCalorimeter/LArTests/LArRampsFeedThroughGrouping without tagging +OutputCondition... INFO Registered 3 objects in IOV database +IncidentProcAlg2 INFO Finalize +EventSelector INFO finalize +IdDictDetDescrCnv INFO in finalize +IOVDbFolder INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/336 (( 1.06 ))s +IOVDbFolder INFO Folder /LAR/Identifier/CalibIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/3040296 (( 0.39 ))s +IOVDbFolder INFO Folder /LAR/Identifier/FebRodMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/12200 (( 0.01 ))s +IOVDbFolder INFO Folder /LAR/Identifier/OnOffIdMap (AttrList) db-read 1/2 objs/chan/bytes 1/1/1560584 (( 0.02 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnAttrIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTOnOffIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /CALO/Ofl/Identifier/CaloTTPpmRxIdMapAtlas (PoolRef) db-read 0/0 objs/chan/bytes 0/1/0 (( 0.00 ))s +IOVDbFolder INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/390 (( 0.02 ))s +IOVDbFolder INFO Folder /LAR/Identifier/LArTTCellMapAtlas (PoolRef) db-read 1/0 objs/chan/bytes 1/1/346 (( 0.02 ))s +IOVDbFolder WARNING Folder /LAR/Identifier/LArTTCellMapAtlas is requested but no data retrieved +IOVDbSvc INFO bytes in (( 1.51 ))s +IOVDbSvc INFO Disconnecting from sqlite://;schema=mycool.db;dbname=OFLP200 +IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 1 nFolders: 0 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 6 ReadTime: (( 1.51 ))s +IOVDbSvc INFO Connection COOLOFL_CALO/OFLP200 : nConnect: 1 nFolders: 3 ReadTime: (( 0.00 ))s +LarCondTestNoRe... INFO Database being retired... +Domain[ROOT_All] INFO -> Deaccess DbDatabase CREATE [ROOT_All] 8447CF77-4E1B-8D42-8F42-E19770DB3AAD +Domain[ROOT_All] INFO > Deaccess DbDomain UPDATE [ROOT_All] +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +*****Chrono***** INFO **************************************************************************************************** +*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) +*****Chrono***** INFO **************************************************************************************************** +commitOutput INFO Time User : Tot= 0 [us] #= 1 +fRep_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max= 2.5(+- 4.33)/ 0/ 10 [ms] #= 4 +cRepR_ALL INFO Time User : Tot= 10 [ms] Ave/Min/Max=0.0392(+-0.625)/ 0/ 10 [ms] #=255 +cRep_ALL INFO Time User : Tot= 160 [ms] Ave/Min/Max= 40(+- 63.6)/ 0/ 150 [ms] #= 4 +cObjR_ALL INFO Time User : Tot= 330 [ms] Ave/Min/Max= 165(+- 155)/ 10/ 320 [ms] #= 2 +cObj_ALL INFO Time User : Tot= 410 [ms] Ave/Min/Max= 68.3(+- 136)/ 0/ 370 [ms] #= 6 +ChronoStatSvc INFO Time User : Tot= 4.28 [s] #= 1 +*****Chrono***** INFO **************************************************************************************************** +ChronoStatSvc.f... INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +Py:Athena INFO leaving with code 0: "successful run" diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/FixLArElecCalib.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/FixLArElecCalib.cxx old mode 100755 new mode 100644 index bc22452e8217e4aa1b1a4dbc8b0947c10fcf5809..3a4964b7c4b4b94f24259f3cb43c1aba7dec5892 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/FixLArElecCalib.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/FixLArElecCalib.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -63,7 +63,6 @@ #include "GaudiKernel/IToolSvc.h" #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArIdentifier/LArOnline_SuperCellID.h" @@ -98,8 +97,7 @@ FixLArElecCalib::FixLArElecCalib(const std::string& name, ISvcLocator* pSvcLocat m_shec_idhelper(0), m_sfcal_idhelper(0), m_sonline_idhelper(0), - m_scell_idhelper(0), - m_cablingSvc(0) + m_scell_idhelper(0) { declareProperty("FixFlag", m_fixFlag); @@ -125,7 +123,7 @@ StatusCode FixLArElecCalib::initialize() { IToolSvc* toolSvc = nullptr; ATH_CHECK( service("ToolSvc", toolSvc) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_cablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); return StatusCode::SUCCESS; } @@ -187,9 +185,12 @@ StatusCode FixLArElecCalib::fix1() { IToolSvc* toolSvc = nullptr; ATH_CHECK( service("ToolSvc", toolSvc) ); - LArCablingService* cablingSvc = nullptr; - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",cablingSvc) ); - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } const LArDAC2uAMC * dac2ua_c = nullptr; ATH_CHECK( detStore()->retrieve(dac2ua_c) ); @@ -221,7 +222,7 @@ StatusCode FixLArElecCalib::fix1() { }else id = em_idhelper->channel_id(det,samp,reg,eta,0); - HWIdentifier hid = cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArDAC2uAComplete::LArCondObj & t = dac2ua->get(hid,0); std::string id_str = online_idhelper->print_to_string(hid); ATH_MSG_DEBUG(" online id = "<<id_str); @@ -264,9 +265,12 @@ StatusCode FixLArElecCalib::fix2() { IToolSvc* toolSvc = nullptr; ATH_CHECK( service("ToolSvc", toolSvc) ); - LArCablingService* cablingSvc = nullptr; - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",cablingSvc) ); - + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } const LArDAC2uAMC * dac2ua_c = nullptr; ATH_CHECK( detStore()->retrieve(dac2ua_c) ); LArDAC2uAMC* dac2ua = const_cast<LArDAC2uAMC*>(dac2ua_c); @@ -311,7 +315,7 @@ StatusCode FixLArElecCalib::fix2() { { HWIdentifier hid = it.channelId(); if( (*it).isEmpty() ) continue; - if(cablingSvc->isOnlineConnected(hid)){ + if(cabling->isOnlineConnected(hid)){ continue; }else { @@ -355,7 +359,7 @@ StatusCode FixLArElecCalib::fix2() { int module = fcal_idhelper->module(id)-1; - HWIdentifier hid = cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); for(unsigned int gain = 0;gain<3;++gain){ @@ -504,17 +508,24 @@ StatusCode FixLArElecCalib::updateHADfSampl() { int n_hec=0; int n_fcal=0; + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + for (; it!=it_e;++it){ HWIdentifier hid = it.channelId(); if( (*it).isEmpty() ) continue; - if(!m_cablingSvc->isOnlineConnected(hid)){ + if(!cabling->isOnlineConnected(hid)){ continue; } LArfSamplComplete::LArCondObj& t2 = const_cast<LArfSamplComplete::LArCondObj&>(*it); - Identifier id = m_cablingSvc->cnvToIdentifier(hid); + Identifier id = cabling->cnvToIdentifier(hid); if(m_hec_idhelper->is_lar_hec(id)){ @@ -575,6 +586,12 @@ StatusCode FixLArElecCalib::updateEMfSampl(const std::string& filename) { ATH_CHECK( detStore()->retrieve(fsampl_c) ); LArfSamplMC* fsampl = const_cast<LArfSamplMC*>(fsampl_c); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // read in the file ATH_MSG_INFO(" opening file "<< filename ); @@ -606,7 +623,7 @@ StatusCode FixLArElecCalib::updateEMfSampl(const std::string& filename) { }else id = m_em_idhelper->channel_id(det,samp,reg,eta,0); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArfSamplComplete::LArCondObj & t = fsampl->get(hid,0); std::string id_str = m_online_idhelper->print_to_string(hid); ATH_MSG_INFO(" online id = "<<id_str); @@ -643,6 +660,13 @@ StatusCode FixLArElecCalib::updateEM_DACuAMeV(const std::string& filename) { ATH_CHECK( detStore()->retrieve(ua2mev_c) ); LAruA2MeVMC* ua2mevMC = const_cast<LAruA2MeVMC*>(ua2mev_c); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + std::ifstream infile(filename.c_str() ) ; if(! infile.good() ) @@ -680,7 +704,7 @@ StatusCode FixLArElecCalib::updateEM_DACuAMeV(const std::string& filename) { }else id = m_em_idhelper->channel_id(det,samp,reg,eta,0); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArDAC2uAComplete::LArCondObj & t = dac2uaMC->get(hid,0); std::string id_str = m_online_idhelper->print_to_string(hid); @@ -736,6 +760,13 @@ StatusCode FixLArElecCalib::fix5() { ATH_CHECK( updateMinBias("mbrms_em_rel12.txt") ); ATH_CHECK( updateMinBias("mbrms_hec_rel12.txt") ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + // Fix5 is for updating the FCAL noise and MinBiasRMS data using // Sven Menke's file. @@ -760,10 +791,10 @@ StatusCode FixLArElecCalib::fix5() { HWIdentifier hid = it.channelId(); if( (*it).isEmpty() ) continue; - Identifier id = m_cablingSvc->cnvToIdentifier(hid); + Identifier id = cabling->cnvToIdentifier(hid); if(!m_fcal_idhelper->is_lar_fcal(id)) continue; - if(m_cablingSvc->isOnlineConnected(hid)){ + if(cabling->isOnlineConnected(hid)){ ++nconn; continue; }else @@ -825,7 +856,7 @@ StatusCode FixLArElecCalib::fix5() { ATH_MSG_INFO(" Setting channel "<<str_id); Identifier id = m_fcal_idhelper->channel_id(2,mod,eta,phi); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArMinBiasComplete::LArCondObj& t1 = minbias->get(hid,0) ; LArMinBiasComplete::LArCondObj& t2 = const_cast<LArMinBiasComplete::LArCondObj&>(t1); @@ -870,7 +901,7 @@ StatusCode FixLArElecCalib::fix5() { int eta2 = m_fcal_idhelper->eta(id); int phi2 = m_fcal_idhelper->phi(id); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); log<<MSG::INFO<<" mod, phi,eta"<<module<<" "<<phi2<<" "<<eta2<<endmsg; ++n2; @@ -903,6 +934,12 @@ StatusCode FixLArElecCalib::updateMinBias(const std::string& filename) { return StatusCode::FAILURE; } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } int lar,tp,det,samp,reg,eta,phi; //tp=1 for EM, 2=HEC @@ -940,7 +977,7 @@ StatusCode FixLArElecCalib::updateMinBias(const std::string& filename) { } } - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArMinBiasComplete::LArCondObj & t = minbias->get(hid,0); std::string id_str = m_online_idhelper->print_to_string(hid); ATH_MSG_INFO(" online id = "<<id_str); @@ -990,6 +1027,12 @@ StatusCode FixLArElecCalib::fix6() { ATH_CHECK( detStore()->retrieve(dac2uA_c) ); LArDAC2uAMC* dac2uA = const_cast<LArDAC2uAMC*>(dac2uA_c); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } int ndisc=0; int nconn=0; for( unsigned int gain=0;gain<3;++gain) @@ -1003,10 +1046,10 @@ StatusCode FixLArElecCalib::fix6() { HWIdentifier hid = it.channelId(); if( (*it).isEmpty() ) continue; - Identifier id = m_cablingSvc->cnvToIdentifier(hid); + Identifier id = cabling->cnvToIdentifier(hid); if(!m_fcal_idhelper->is_lar_fcal(id)) continue; - if(m_cablingSvc->isOnlineConnected(hid)){ + if(cabling->isOnlineConnected(hid)){ ++nconn; continue; }else @@ -1071,7 +1114,7 @@ StatusCode FixLArElecCalib::fix6() { ATH_MSG_INFO(" Setting channel "<<str_id); Identifier id = m_fcal_idhelper->channel_id(2,mod,eta,phi); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); const LArNoiseComplete::LArCondObj& noise0 = noise->get(hid,0) ; LArNoiseComplete::LArCondObj& u0 = const_cast<LArNoiseComplete::LArCondObj&>(noise0); @@ -1182,6 +1225,13 @@ StatusCode FixLArElecCalib::ReadFile(const std::string& filename, bool EM, bool ATH_MSG_INFO(" Opened file "<<filename ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + m_cache[0].clear(); m_cache[1].clear(); m_cache[2].clear(); @@ -1236,7 +1286,7 @@ StatusCode FixLArElecCalib::ReadFile(const std::string& filename, bool EM, bool { id = m_hec_idhelper->channel_id(2,samp,reg,eta,0); } - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); if (gain >= 0 && gain < 3) m_cache[gain].push_back(ROW(hid,vfl)); @@ -1407,6 +1457,12 @@ StatusCode FixLArElecCalib::addMphysOverMcal() { ILArMphysOverMcal* imphys=0; ATH_CHECK (detStore()->symLink(mphys,imphys) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } int n=0; std::string filename("FCal_noise_minbias_adc2mev.txt"); @@ -1454,7 +1510,7 @@ StatusCode FixLArElecCalib::addMphysOverMcal() { ATH_MSG_INFO(" Setting channel "<<str_id); Identifier id = m_fcal_idhelper->channel_id(2,mod,eta,phi); - HWIdentifier hid = m_cablingSvc->createSignalChannelID(id); + HWIdentifier hid = cabling->createSignalChannelID(id); LArMphysOverMcalMC::LArCondObj t; t.m_data =1. ; @@ -1569,6 +1625,12 @@ StatusCode FixLArElecCalib::fixDACuAMeV() StatusCode FixLArElecCalib::fix9() { ATH_MSG_INFO ( " in fix9(), replace FCAL AutoCorr " ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } std::vector<float> fcal_autoCorr[3][3] ; //[module][gain] fcal_autoCorr[0][0].push_back( -0.01); @@ -1637,7 +1699,7 @@ StatusCode FixLArElecCalib::fix9() { const LArAutoCorrMC::LArCondObj & u = (*it); if( (*it).isEmpty() ) continue; - Identifier id = m_cablingSvc->cnvToIdentifier(hid); + Identifier id = cabling->cnvToIdentifier(hid); if(! m_fcal_idhelper->is_lar_fcal(id)) continue ; int module = m_fcal_idhelper->module(id); module = module - 1 ; @@ -1676,6 +1738,13 @@ StatusCode FixLArElecCalib::fix10() { const LArRampMC * ramp_c = nullptr; ATH_CHECK( detStore()->retrieve(ramp_c) ); LArRampMC* ramp = const_cast<LArRampMC*>(ramp_c); + + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } LArRampMC::ConditionsMapIterator it = ramp->begin(0); LArRampMC::ConditionsMapIterator it_e = ramp->end(0); @@ -1687,10 +1756,10 @@ StatusCode FixLArElecCalib::fix10() { HWIdentifier hid = it.channelId(); if( (*it).isEmpty() ) continue; - Identifier id = m_cablingSvc->cnvToIdentifier(hid); + Identifier id = cabling->cnvToIdentifier(hid); if(!m_fcal_idhelper->is_lar_fcal(id)) continue; - if( ! m_cablingSvc->isOnlineConnected(hid)){ + if( ! cabling->isOnlineConnected(hid)){ ATH_MSG_ERROR(" unconnected channel" << m_online_idhelper->print_to_string(hid) ); ++ndisc ; @@ -1749,6 +1818,12 @@ StatusCode FixLArElecCalib::fix13() { if ( scidtool.retrieve().isFailure() ) { ATH_MSG_ERROR ( " Could not retrieve scitool " ); } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } std::set<Identifier> scidset; std::map<HWIdentifier,int> sslot_schannel_idx; @@ -1774,7 +1849,7 @@ StatusCode FixLArElecCalib::fix13() { if ( scidset.find(SCID) == scidset.end() && (m_scell_idhelper->calo_cell_hash( SCID ).value() < 99999) ) scidset.insert(SCID); else continue; - HWIdentifier hwid = m_cablingSvc->createSignalChannelID(chid); + HWIdentifier hwid = cabling->createSignalChannelID(chid); if ( i == 0 ){ of << "Off ID\t\tSCID\t\tOnl ID\t\tFT\tslot\tB-E pos_neg\tSamp\teta\tphi\tFEB_ID\t\tSHWID\t" << std::endl; } @@ -1864,7 +1939,7 @@ StatusCode FixLArElecCalib::fix13() { if ( scidset.find(SCID) == scidset.end() ) scidset.insert(SCID); else continue; - HWIdentifier hwid = m_cablingSvc->createSignalChannelID(chid); + HWIdentifier hwid = cabling->createSignalChannelID(chid); if ( i == 0 ){ of1 << "Off ID\t\tSCID\t\tOnl ID\t\tFT\tslot\tB-E pos_neg\tSamp\teta\tphi\tFEB_ID\t\tSHWID\t" << std::endl; } @@ -1937,7 +2012,7 @@ StatusCode FixLArElecCalib::fix13() { if ( scidset.find(SCID) == scidset.end() ) scidset.insert(SCID); else continue; - HWIdentifier hwid = m_cablingSvc->createSignalChannelID(chid); + HWIdentifier hwid = cabling->createSignalChannelID(chid); if ( i == 0 ){ of3 << "Off ID\t\tSCID\t\tOnl ID\t\tFT\tslot\tB-E pos_neg\tSamp\teta\tphi\tFEB_ID\t\tSHWID\t" << std::endl; } diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArCablingTest.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArCablingTest.cxx index 7aea014053b3b83d1ef04b0797eba08a655249ae..00a8a7c6315110be8e9312854e4625cf1c56d709 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArCablingTest.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArCablingTest.cxx @@ -1,10 +1,9 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArConditionsTest/LArCablingTest.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/CaloCell_ID.h" @@ -12,7 +11,7 @@ #include <fstream> LArCablingTest::LArCablingTest(const std::string& name, ISvcLocator* pSvcLocator): - AthAlgorithm(name, pSvcLocator), m_larCablingSvc("LArCablingService"), m_print(true), + AthAlgorithm(name, pSvcLocator), m_print(true), m_onlineId(0), m_caloCellId(0) { @@ -27,7 +26,10 @@ LArCablingTest::~LArCablingTest() { StatusCode LArCablingTest::initialize() { detStore()->retrieve(m_onlineId,"LArOnlineID").ignore(); detStore()->retrieve(m_caloCellId,"CaloCell_ID").ignore(); - m_larCablingSvc.retrieve().ignore(); + + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); + ATH_CHECK( m_RodKey.initialize() ); return StatusCode::SUCCESS; } @@ -41,14 +43,32 @@ StatusCode LArCablingTest::execute() { outfile.open("identifiers.txt"); outfile << "hash id bec pn FT SL chan id calo pn sampl reg eta phi calib" << std::endl; } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont){ + ATH_MSG_ERROR("Do not have calib mapping object " << m_CLKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArFebRodMapping> rodHdl{m_RodKey}; + const LArFebRodMapping *rodCont {*rodHdl}; + if(!rodCont){ + ATH_MSG_ERROR("Do not have ROD mapping object " << m_RodKey.key() ); + return StatusCode::FAILURE; + } if (m_mode & 1) { std::vector<HWIdentifier>::const_iterator it1 = m_onlineId->channel_begin(); std::vector<HWIdentifier>::const_iterator it1_e = m_onlineId->channel_end(); for (;it1!=it1_e;it1++) { const HWIdentifier hwid = *it1; if (m_print) - print(hwid,outfile); - const Identifier id=m_larCablingSvc->cnvToIdentifier(hwid); + print(hwid,outfile,cabling,clCont); + const Identifier id=cabling->cnvToIdentifier(hwid); if (m_print) if (id!=Identifier()) std::cout << "ON:OFF 0x" << hwid.get_identifier32().get_compact() << ":0x"<<id.get_identifier32().get_compact() << std::dec << std::endl; @@ -60,7 +80,7 @@ StatusCode LArCablingTest::execute() { for(;it2!=it2_e;it2++) { const Identifier id=*it2; if (!m_caloCellId->is_tile(id)) { - const HWIdentifier hwid=m_larCablingSvc->createSignalChannelID(id); + const HWIdentifier hwid=cabling->createSignalChannelID(id); if (m_print) std::cout << "OFF:ON 0x" << std::hex << id.get_identifier32().get_compact() << ":0x"<<hwid.get_identifier32().get_compact() << std::dec << std::endl; } @@ -73,7 +93,7 @@ StatusCode LArCablingTest::execute() { size_t nId=0; for (;it1!=it1_e;it1++,nId++) { const HWIdentifier hwid = *it1; - bool result=m_larCablingSvc->isOnlineConnected(hwid); + bool result=cabling->isOnlineConnected(hwid); if (m_print) std::cout << "Connected 0x" << std::hex << hwid.get_identifier32().get_compact() << ":"<<result << std::dec << std::endl; } @@ -85,9 +105,9 @@ StatusCode LArCablingTest::execute() { for(;it3!=it3_e;++it3) { const HWIdentifier FEBID=*it3; #ifdef LARREADOUTMODULEID_H //Old version - const uint32_t RODID=m_larCablingSvc->getReadoutModuleID(FEBID).id(); + const uint32_t RODID=rodCont->getReadoutModuleID(FEBID).id(); #else //New version, LArReadoutModuleID replaced my HWIdentifier - const uint32_t RODID=m_larCablingSvc->getReadoutModuleID(FEBID).get_identifier32().get_compact(); + const uint32_t RODID=rodCont->getReadoutModuleID(FEBID).get_identifier32().get_compact(); #endif if (m_print) { std::cout << "FEB:ROD 0x" << FEBID.get_identifier32().get_compact() << ":0x" << @@ -103,7 +123,7 @@ StatusCode LArCablingTest::execute() { -void LArCablingTest::print (const HWIdentifier& hwid, std::ostream& out) { +void LArCablingTest::print (const HWIdentifier& hwid, std::ostream& out, const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont) { const IdentifierHash hwid_hash=m_onlineId->channel_Hash(hwid); out << hwid_hash << " " << std::hex << "0x" << hwid.get_identifier32().get_compact() << std::dec << " " << m_onlineId->barrel_ec(hwid) << " " @@ -111,8 +131,8 @@ void LArCablingTest::print (const HWIdentifier& hwid, std::ostream& out) { << m_onlineId->feedthrough(hwid) << " " << m_onlineId->slot(hwid) << " " << m_onlineId->channel(hwid) << " : "; - if (m_larCablingSvc->isOnlineConnected(hwid)) { - const Identifier id=m_larCablingSvc->cnvToIdentifier(hwid); + if (cabling->isOnlineConnected(hwid)) { + const Identifier id=cabling->cnvToIdentifier(hwid); out << std::hex << "0x" << id.get_identifier32().get_compact() << std::dec << " " << m_caloCellId->sub_calo(id) << " " << m_caloCellId->pos_neg(id) << " " @@ -124,7 +144,7 @@ void LArCablingTest::print (const HWIdentifier& hwid, std::ostream& out) { else out << " disconnected "; - const std::vector<HWIdentifier>& calibIDs=m_larCablingSvc->calibSlotLine(hwid); + const std::vector<HWIdentifier>& calibIDs=clCont->calibSlotLine(hwid); for (size_t i=0;i<calibIDs.size();++i) { out << std::hex << "0x" << calibIDs[i].get_identifier32().get_compact() << " "; } diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArCondDataTest.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArCondDataTest.cxx old mode 100755 new mode 100644 index 6c8d1f03ebb8259b8111c327cbe58355b025513a..d58f8d4e0afb619d87b224405794656a11e19d7f --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArCondDataTest.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArCondDataTest.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -17,7 +17,6 @@ #include "StoreGate/StoreGateSvc.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "GaudiKernel/MsgStream.h" @@ -46,7 +45,6 @@ LArCondDataTest::LArCondDataTest(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name,pSvcLocator), - m_cablingSvc(0), m_onlineID(0), m_emid(0), m_tbin(0),m_fixShape(false) @@ -71,11 +69,10 @@ LArCondDataTest::~LArCondDataTest() StatusCode LArCondDataTest::initialize() { ATH_CHECK( detStore()->retrieve(m_onlineID) ); - - IToolSvc* toolSvc = 0; - ATH_CHECK( service("ToolSvc", toolSvc) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_cablingSvc) ); ATH_CHECK( detStore()->retrieve( m_emid) ); + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); + ATH_CHECK( m_RodKey.initialize() ); ATH_MSG_DEBUG ( "initialize done" ); return StatusCode::SUCCESS; @@ -89,9 +86,26 @@ StatusCode LArCondDataTest::execute() { ATH_MSG_DEBUG(" LArCondDataTest::execute() "); - // Access LArCablingService, which should use LArFebRodMap and LArOnOffIdMap. - - const std::vector<HWIdentifier>& roms = m_cablingSvc->getLArRoModIDvec(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont){ + ATH_MSG_ERROR("Do not have calib mapping object " << m_CLKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArFebRodMapping> rodHdl{m_RodKey}; + const LArFebRodMapping *rodCont {*rodHdl}; + if(!rodCont){ + ATH_MSG_ERROR("Do not have ROD mapping object " << m_RodKey.key() ); + return StatusCode::FAILURE; + } + + const std::vector<HWIdentifier>& roms = rodCont->getLArRoModIDvec(); ATH_MSG_DEBUG ( " Number of LArReadoutModuleIDs= " << roms.size() ); std::vector<HWIdentifier>::const_iterator it = m_onlineID->channel_begin(); @@ -171,7 +185,7 @@ StatusCode LArCondDataTest::execute() HWIdentifier sid = *it; try { - if(! m_cablingSvc->isOnlineConnected(sid)) + if(! cabling->isOnlineConnected(sid)) continue; if(m_onlineID->barrel_ec(sid)==1) @@ -184,8 +198,8 @@ StatusCode LArCondDataTest::execute() } ++nconnected; - Identifier id = m_cablingSvc->cnvToIdentifier(sid); - HWIdentifier sid2 =m_cablingSvc->createSignalChannelID(id); + Identifier id = cabling->cnvToIdentifier(sid); + HWIdentifier sid2 =cabling->createSignalChannelID(id); ++nch ; if( sid !=sid2 ) { ATH_MSG_ERROR( " HWIdentifier mismatch, sid " @@ -199,7 +213,7 @@ StatusCode LArCondDataTest::execute() // check Calibration Slot and Channel const std::vector<HWIdentifier>& - calib = m_cablingSvc->calibSlotLine(sid) ; + calib = clCont->calibSlotLine(sid) ; if(calib.size()==0) { ATH_MSG_ERROR( " No calibration for this channel,hdw id=" <<sid.get_compact() ); diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArConditionsTestAlg.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArConditionsTestAlg.cxx old mode 100755 new mode 100644 index 5e5a6230fb95a83ab1106b398a9732a946ab3ac1..50822b265913d5e23374c7a1de9dba11cb7fe0f0 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArConditionsTestAlg.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArConditionsTestAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -20,7 +20,7 @@ // #include "LArTools/LArFebRodMap.h" // #include "LArTools/LArOnOffIdMap.h" #include "LArRawUtils/LArRoI_Map.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloCell_ID.h" @@ -1356,7 +1356,7 @@ void LArConditionsTestAlg::handle ( const Incident& /* inc*/ ) } - if(StatusCode::SUCCESS != toolSvc->retrieveTool("LArCablingService",m_cablingSvc) ) { + if(StatusCode::SUCCESS != toolSvc->retrieveTool("LArCablingLegacyService",m_cablingSvc) ) { ATH_MSG_ERROR (" Failed to get LArCablingService" ); // return StatusCode::FAILURE ; return; @@ -1399,7 +1399,7 @@ void LArConditionsTestAlg::handle ( const Incident& /* inc*/ ) // Access LArCablingService, which should use LArFebRodMap and LArOnOffIdMap. - const std::vector<HWIdentifier>& roms = m_cablingSvc->getLArRoModIDvec(); + const std::vector<HWIdentifier>& roms = const_cast<LArCablingLegacyService*>(m_cablingSvc)->getLArRoModIDvec(); ATH_MSG_DEBUG ( " Number of LArReadoutModuleIDs= " << roms.size() ); // std::vector<HWIdentifier>::const_iterator it = febs.begin(); @@ -1456,7 +1456,7 @@ void LArConditionsTestAlg::handle ( const Incident& /* inc*/ ) // check Calibration Slot and Channel const std::vector<HWIdentifier>& - calib = m_cablingSvc->calibSlotLine(sid) ; + calib = const_cast<LArCablingLegacyService*>(m_cablingSvc)->calibSlotLine(sid) ; if(calib.size()==0) { ATH_MSG_ERROR( " No calibration for this channel,hdw id=" <<sid.get_compact() ); diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArFebRodMapConvert.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArFebRodMapConvert.cxx index 21d2a9c1c182e175a2fa3d387b32760e83a5fe54..5fee4f48624c44a2ff95960420a57a46b90d573e 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArFebRodMapConvert.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArFebRodMapConvert.cxx @@ -1,10 +1,9 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArConditionsTest/LArFebRodMapConvert.h" -//#include "LArTools/LArCablingBlob.h" //#include "LArTools/LArOnOffIdMap.h" #include "LArIdentifier/LArOnlineID.h" //#include "AthenaPoolUtilities/CondAttrListCollection.h" @@ -16,9 +15,7 @@ LArFebRodMapConvert::LArFebRodMapConvert( const std::string& name, ISvcLocator* pSvcLocator ) : ::AthAlgorithm( name, pSvcLocator ), - m_onlineID(NULL), - //m_caloCellID(NULL), - m_cablingSvc("LArCablingService") + m_onlineID(NULL) { // // Property declaration @@ -39,18 +36,7 @@ StatusCode LArFebRodMapConvert::initialize() { return StatusCode::FAILURE; } - /* - sc = detStore()->retrieve(m_caloCellID, "CaloCell_ID"); - if (sc.isFailure()) { - msg(MSG::ERROR) << "Could not get CaloCell_ID helper !" << endmsg; - return StatusCode::FAILURE; - } - */ - sc=m_cablingSvc.retrieve(); - if (sc.isFailure()) { - msg(MSG::ERROR) << "Could not get LArCablingService!" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK( m_RodKey.initialize() ); return StatusCode::SUCCESS; } @@ -85,13 +71,19 @@ StatusCode LArFebRodMapConvert::execute() { outfile << "hash id rodid" << std::endl; + SG::ReadCondHandle<LArFebRodMapping> rodHdl{m_RodKey}; + const LArFebRodMapping *rodCont {*rodHdl}; + if(!rodCont){ + ATH_MSG_ERROR("Do not have ROD mapping object " << m_RodKey.key() ); + return StatusCode::FAILURE; + } for (uint32_t onlHash=0;onlHash<onlHashMax;++onlHash) { const HWIdentifier hwid=m_onlineID->feb_Id(onlHash); #ifdef LARREADOUTMODULEID_H //Old version - const uint32_t rodid=m_cablingSvc->getReadoutModuleID(hwid).id(); + const uint32_t rodid=rodCont->getReadoutModuleID(hwid).id(); #else //New version, LArReadoutModuleID replaced my HWIdentifier - const uint32_t rodid=m_cablingSvc->getReadoutModuleID(hwid).get_identifier32().get_compact(); + const uint32_t rodid=rodCont->getReadoutModuleID(hwid).get_identifier32().get_compact(); #endif pBlobFebRod[index++]=rodid; outfile << onlHash << " 0x" << std:: hex << hwid.get_compact() << " 0x"<< rodid << std::dec << std::endl; diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArFecLvTempDcsTest.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArFecLvTempDcsTest.cxx old mode 100755 new mode 100644 index 7700a0755a9a5560b5a4be47df263cd93d6e780e..c7d8129270dabb902eed8552be26becea3f9d1cb --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArFecLvTempDcsTest.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArFecLvTempDcsTest.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -17,7 +17,6 @@ #include "LArConditionsTest/LArFecLvTempDcsTest.h" #include "LArRawConditions/LArFecLvTempDcs.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" ///////////////////////////////////////////////////////////////////// diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArIdMapConvert.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArIdMapConvert.cxx index fcc6a351c04521e868f7a68a895f0c9d0b4f44ce..e270a419347f69ad4b9152c1b91d214510d37c01 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArIdMapConvert.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArIdMapConvert.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArConditionsTest/LArIdMapConvert.h" @@ -17,8 +17,7 @@ LArIdMapConvert::LArIdMapConvert( const std::string& name, ISvcLocator* pSvcLocator ) : ::AthAlgorithm( name, pSvcLocator ), m_onlineID(NULL), - m_caloCellID(NULL), - m_cablingSvc("LArCablingService") + m_caloCellID(NULL) { // // Property declaration @@ -45,11 +44,8 @@ StatusCode LArIdMapConvert::initialize() { return StatusCode::FAILURE; } - sc=m_cablingSvc.retrieve(); - if (sc.isFailure()) { - msg(MSG::ERROR) << "Could not get LArCablingService!" << endmsg; - return StatusCode::FAILURE; - } + ATH_CHECK( m_cablingKey.initialize() ); + ATH_CHECK( m_CLKey.initialize() ); return StatusCode::SUCCESS; } @@ -65,6 +61,19 @@ StatusCode LArIdMapConvert::execute() { const uint32_t onlHashMax=m_onlineID->channelHashMax(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArCalibLineMapping> clHdl{m_CLKey}; + const LArCalibLineMapping *clCont {*clHdl}; + if(!clCont){ + ATH_MSG_ERROR("Do not have calib mapping object " << m_CLKey.key() ); + return StatusCode::FAILURE; + } + coral::AttributeListSpecification* spec_onOff = new coral::AttributeListSpecification(); spec_onOff->extend("OnlineHashToOfflineId", "blob"); spec_onOff->extend<unsigned>("version"); @@ -103,11 +112,11 @@ StatusCode LArIdMapConvert::execute() { for (uint32_t onlHash=0;onlHash<onlHashMax;++onlHash) { const HWIdentifier hwid=m_onlineID->channel_Id(onlHash); - print(hwid,outfile); - const Identifier id=m_cablingSvc->cnvToIdentifierFromHash(onlHash); + print(hwid,outfile,cabling,clCont); + const Identifier id=cabling->cnvToIdentifierFromHash(onlHash); pBlobOnOff[index++]=id.get_identifier32().get_compact(); - const std::vector<HWIdentifier>& calibIDs=m_cablingSvc->calibSlotLine(hwid); + const std::vector<HWIdentifier>& calibIDs=clCont->calibSlotLine(hwid); const size_t nCalibLines=calibIDs.size(); (calibHist[nCalibLines])++; pBlobCalib[calibIndex++]=nCalibLines; @@ -144,7 +153,7 @@ StatusCode LArIdMapConvert::execute() { } -void LArIdMapConvert::print (const HWIdentifier& hwid, std::ostream& out) { +void LArIdMapConvert::print (const HWIdentifier& hwid, std::ostream& out, const LArOnOffIdMapping* cabling, const LArCalibLineMapping *clCont) { const IdentifierHash hwid_hash=m_onlineID->channel_Hash(hwid); out << hwid_hash << " " << std::hex << "0x" << hwid.get_identifier32().get_compact() << std::dec << " " << m_onlineID->barrel_ec(hwid) << " " @@ -152,8 +161,8 @@ void LArIdMapConvert::print (const HWIdentifier& hwid, std::ostream& out) { << m_onlineID->feedthrough(hwid) << " " << m_onlineID->slot(hwid) << " " << m_onlineID->channel(hwid) << " : "; - if (m_cablingSvc->isOnlineConnected(hwid)) { - const Identifier id=m_cablingSvc->cnvToIdentifier(hwid); + if (cabling->isOnlineConnected(hwid)) { + const Identifier id=cabling->cnvToIdentifier(hwid); out << std::hex << "0x" << id.get_identifier32().get_compact() << std::dec << " " << m_caloCellID->sub_calo(id) << " " << m_caloCellID->pos_neg(id) << " " @@ -165,7 +174,7 @@ void LArIdMapConvert::print (const HWIdentifier& hwid, std::ostream& out) { else out << " disconnected "; - const std::vector<HWIdentifier>& calibIDs=m_cablingSvc->calibSlotLine(hwid); + const std::vector<HWIdentifier>& calibIDs=clCont->calibSlotLine(hwid); for (size_t i=0;i<calibIDs.size();++i) { out << std::hex << "0x" << calibIDs[i].get_identifier32().get_compact() << " "; } diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/LArShapeToSCShape.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/LArShapeToSCShape.cxx index e21c73387becbb3131291ce921a1b1139e968af4..fc7e1407f02b1a706bcdbf266e1987cdc74a0303 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/LArShapeToSCShape.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/LArShapeToSCShape.cxx @@ -1,7 +1,7 @@ ///////////////////////// -*- C++ -*- ///////////////////////////// /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // LArShapeToSCShape.cxx @@ -38,17 +38,13 @@ LArShapeToSCShape::LArShapeToSCShape( const std::string& name, ISvcLocator* pSvcLocator ) : ::AthAlgorithm( name, pSvcLocator ), - m_scidTool("CaloSuperCellIDTool"), - m_scCablingTool("LArSuperCellCablingTool"), - m_cablingService("LArCablingService") + m_scidTool("CaloSuperCellIDTool") { // // Property declaration // //declareProperty( "Property", m_nProperty ); declareProperty("CaloSuperCellIDTool",m_scidTool); - declareProperty("LArSuperCellCablingTool",m_scCablingTool); - declareProperty("LArCablingService",m_cablingService); } // Destructor @@ -62,8 +58,8 @@ StatusCode LArShapeToSCShape::initialize() { CHECK(m_scidTool.retrieve()); - CHECK(m_scCablingTool.retrieve()); - CHECK(m_cablingService.retrieve()); + CHECK(m_cablingSCKey.initialize()); + CHECK(m_cablingKey.initialize()); ATH_MSG_INFO ("Initializing " << name() << "..."); @@ -142,6 +138,18 @@ StatusCode LArShapeToSCShape::execute() pTimeOffset[i]=0.0; } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key()); + return StatusCode::FAILURE; + } + SG::ReadCondHandle<LArOnOffIdMapping> scHdl{m_cablingSCKey}; + const LArOnOffIdMapping* scCont{*scHdl}; + if(!scCont) { + ATH_MSG_ERROR("Do not have mapping object " << m_cablingSCKey.key()); + return StatusCode::FAILURE; + } unsigned nTileIds=0; unsigned nTotalIds=0; auto scIt=caloSCID->cell_begin(); @@ -163,10 +171,10 @@ StatusCode LArShapeToSCShape::execute() const Identifier cellId=cellIds[0]; //Get online hash (via online identifier): - const HWIdentifier scOnlId=m_scCablingTool->createSignalChannelID(scId); + const HWIdentifier scOnlId=scCont->createSignalChannelID(scId); const IdentifierHash scOnlHash=onlSCID->channel_Hash(scOnlId); - const HWIdentifier hwid=m_cablingService->createSignalChannelID(cellId); + const HWIdentifier hwid=cabling->createSignalChannelID(cellId); //std::cout << "SuperCellSummary onl: 0x" << std::hex << scOnlId.get_identifier32().get_compact() // << ", ofl: 0x" << scId.get_identifier32().get_compact() diff --git a/LArCalorimeter/LArTest/LArConditionsTest/src/TestLArConditionsTools.cxx b/LArCalorimeter/LArTest/LArConditionsTest/src/TestLArConditionsTools.cxx index 8f3f7d22140bc0c981b5160e2d54d168344871ff..157e65157a35e5e71215d627729b7ba665ef40af 100644 --- a/LArCalorimeter/LArTest/LArConditionsTest/src/TestLArConditionsTools.cxx +++ b/LArCalorimeter/LArTest/LArConditionsTest/src/TestLArConditionsTools.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArConditionsTest/TestLArConditionsTools.h" @@ -57,6 +57,7 @@ StatusCode TestLArConditionsTools::initialize() { ATH_CHECK( retrieveTools() ); ATH_CHECK( detStore()->retrieve( m_idHelper) ); + ATH_CHECK( m_cablingKey.initialize() ); const xAOD::EventInfo* evtInfo = 0; StatusCode sc = evtStore()->retrieve( evtInfo); @@ -134,6 +135,8 @@ StatusCode TestLArConditionsTools::testCaloNoiseDDE() { const CaloDetDescrManager* dd_man = nullptr; ATH_CHECK( detStore()->retrieve( dd_man) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling = *cablingHdl; std::vector<Identifier>::const_iterator cell_it = m_idHelper->cell_begin(); std::vector<Identifier>::const_iterator cell_it_e = m_idHelper->cell_end(); @@ -176,7 +179,7 @@ StatusCode TestLArConditionsTools::testCaloNoiseDDE() { m_idHelper->print_to_string(id)); } - const std::vector<double> acTotal = m_acTotalTool->autoCorrTotal(id,0); + const std::vector<double> acTotal = m_acTotalTool->autoCorrTotal(cabling->createSignalChannelID(id),0); if(acTotal.size()==0){ ATH_MSG_ERROR ( " fail to get AutoCorrTotal " << m_idHelper->print_to_string(id)); diff --git a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArDigits.h b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArDigits.h old mode 100755 new mode 100644 index e3bcf598aef7f05c5f109e0065f03d14d470a5cb..fa673b0d67a29b7af9e4343facd53073942bf21a --- a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArDigits.h +++ b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArDigits.h @@ -1,14 +1,15 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef DUMPLARDIGITS_H #define DUMPLARDIGITS_H #include "AthenaBaseComps/AthAlgorithm.h" #include "LArRawEvent/LArDigitContainer.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" //#include "LArDetDescr/LArDetDescrManager.h" #include <fstream> @@ -25,10 +26,10 @@ class DumpLArDigits : public AthAlgorithm StatusCode execute(); StatusCode finalize(); private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; int m_count, m_chan; //LArDigitContainer* m_larDigitCont; const LArOnlineID* m_onlineHelper; - LArCablingService *m_larCablingSvc; const LArEM_ID* m_emId; std::ofstream m_outfile; std::string m_key, m_FileName; diff --git a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArRawChannels.h b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArRawChannels.h old mode 100755 new mode 100644 index 151023254257caeaf7a60cc1ffc714b133710eba..7cb9f0e37148c07cc6967febc5a2c0f31f5e321f --- a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArRawChannels.h +++ b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/DumpLArRawChannels.h @@ -1,14 +1,15 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef DUMPLARRAWCHANNEL_H #define DUMPLARRAWCHANNEL_H #include "AthenaBaseComps/AthAlgorithm.h" #include "LArRawEvent/LArRawChannelContainer.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "LArIdentifier/LArOnlineID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "TTree.h" #include "GaudiKernel/ITHistSvc.h" @@ -29,10 +30,10 @@ class DumpLArRawChannels : public AthAlgorithm StatusCode execute(); StatusCode finalize(); private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey {this,"keyCabling", "LArOnOffIdMap", "Input key for Id mapping"}; int m_count, m_chan; //LArRawChannelContainer* m_larChannelCont; const LArOnlineID* m_onlineHelper; - LArCablingService *m_larCablingSvc; const LArEM_ID* m_emId; std::ofstream m_outfile; std::string m_key, m_FileName; diff --git a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/FindDuplicatedLArDigits.h b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/FindDuplicatedLArDigits.h old mode 100755 new mode 100644 index 25a3133ebaaa765f39e1e99211027cbd9be686fb..fa933eefad5650b33371f7fa9c2fd1a404ea088f --- a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/FindDuplicatedLArDigits.h +++ b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/FindDuplicatedLArDigits.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -26,7 +26,6 @@ #include <string> #include <map> -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" @@ -51,7 +50,6 @@ class FindDuplicatedLArDigits : public AthAlgorithm int m_nDigits; const LArOnlineID *m_onlineHelper; - LArCablingService *m_larCablingSvc; const LArEM_ID *m_emId; const LArHEC_ID *m_hecId; const LArFCAL_ID *m_fcalId; diff --git a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/LArDigitsToNtuple.h b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/LArDigitsToNtuple.h old mode 100755 new mode 100644 index 94497edf21dbc545b0ab0e9961f003db6557d540..4e7599fcab77abc816b8bede3bf63ff619535adb --- a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/LArDigitsToNtuple.h +++ b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/LArDigitsToNtuple.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -24,10 +24,11 @@ #include <string> #include <map> -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include "GaudiKernel/INTupleSvc.h" #include "GaudiKernel/NTuple.h" @@ -43,9 +44,8 @@ class LArDigitsToNtuple : public AthAlgorithm StatusCode execute(); StatusCode finalize(); private: - + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey {this,"keyCabling", "LArOnOffIdMap", "Input key for Id mapping"}; const LArOnlineID *m_onlineHelper; - LArCablingService *m_larCablingSvc; const LArEM_ID *m_emId; const LArHEC_ID *m_hecId; const LArFCAL_ID *m_fcalId; diff --git a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/TriggerPatternCount.h b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/TriggerPatternCount.h old mode 100755 new mode 100644 index b111927ec1f46da71692475b53a41f300224197e..d53fb44b4c729a6a6e4ef0c34070881d5b33e23b --- a/LArCalorimeter/LArTest/LArEventTest/LArEventTest/TriggerPatternCount.h +++ b/LArCalorimeter/LArTest/LArEventTest/LArEventTest/TriggerPatternCount.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -24,7 +24,6 @@ #include <string> #include <map> -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" diff --git a/LArCalorimeter/LArTest/LArEventTest/src/DumpLArDigits.cxx b/LArCalorimeter/LArTest/LArEventTest/src/DumpLArDigits.cxx old mode 100755 new mode 100644 index 00f81a30f4dea706b7fa749690cec2f2c2501ad6..8b180c1c30550c3e80f767555fe6e3cee8a5bb50 --- a/LArCalorimeter/LArTest/LArEventTest/src/DumpLArDigits.cxx +++ b/LArCalorimeter/LArTest/LArEventTest/src/DumpLArDigits.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArEventTest/DumpLArDigits.h" @@ -15,7 +15,6 @@ DumpLArDigits::DumpLArDigits(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), m_chan(0), m_onlineHelper(0), - m_larCablingSvc(0), m_emId(0) {m_count=0; declareProperty("LArDigitContainerName",m_key=""); @@ -43,7 +42,7 @@ StatusCode DumpLArDigits::initialize() return StatusCode::FAILURE; } - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); m_outfile.open(m_FileName.c_str(),std::ios::out); @@ -72,6 +71,12 @@ StatusCode DumpLArDigits::execute() else ATH_CHECK( evtStore()->retrieve(digit_cont) ); ATH_MSG_INFO ( "Retrieved LArDigitContainer from StoreGate! key=" << m_key ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } //int nColl=0; short layer,eta,phi; m_chan=0; @@ -107,12 +112,12 @@ StatusCode DumpLArDigits::execute() m_outfile << "FEB_ID: 0x" << std::hex << febid.get_compact() << " channel: " << std::dec << m_onlineHelper->channel(chid) << " (" << m_onlineHelper->channelInSlotMax(febid) << "/FEB), "; - if (!m_larCablingSvc->isOnlineConnected(chid)) + if (!cabling->isOnlineConnected(chid)) {std::cout << "disconnected: \n"; m_outfile << "disconnected: \n"; continue; } - const Identifier id=m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id=cabling->cnvToIdentifier(chid); //std::cout << "Compact onlineid=" << id.get_compact() << std::endl; eta=m_emId->eta(id); phi=m_emId->phi(id); diff --git a/LArCalorimeter/LArTest/LArEventTest/src/DumpLArRawChannels.cxx b/LArCalorimeter/LArTest/LArEventTest/src/DumpLArRawChannels.cxx old mode 100755 new mode 100644 index 7617224388100485e7b0ba5cac750c522fd2a3b4..5f24d41fab9470d5980e2c39ab23493b522052ca --- a/LArCalorimeter/LArTest/LArEventTest/src/DumpLArRawChannels.cxx +++ b/LArCalorimeter/LArTest/LArEventTest/src/DumpLArRawChannels.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArEventTest/DumpLArRawChannels.h" @@ -14,7 +14,6 @@ DumpLArRawChannels::DumpLArRawChannels(const std::string& name, ISvcLocator* pSv : AthAlgorithm(name, pSvcLocator), m_chan(0), m_onlineHelper(0), - m_larCablingSvc(0), m_emId(0), m_thistSvc ("THistSvc", name) {m_count=0; @@ -45,7 +44,7 @@ StatusCode DumpLArRawChannels::initialize() return StatusCode::FAILURE; } - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); m_outfile.open(m_FileName.c_str(),std::ios::out); @@ -85,6 +84,13 @@ StatusCode DumpLArRawChannels::execute() const DataHandle < LArRawChannelContainer > channel_cont; + SG::ReadCondHandle<LArOnOffIdMapping> larCablingHdl(m_cablingKey); + const LArOnOffIdMapping* cabling=*larCablingHdl; + if(!cabling) { + ATH_MSG_ERROR("Could not get LArOnOffIdMapping !!"); + return StatusCode::FAILURE; + } + if (m_key.size()) ATH_CHECK( evtStore()->retrieve(channel_cont,m_key) ); else @@ -119,12 +125,12 @@ StatusCode DumpLArRawChannels::execute() std::cout << "Channel: " << m_onlineHelper->channel_name(chid); m_outfile << "Channel: " << m_onlineHelper->channel_name(chid); - if (!m_larCablingSvc->isOnlineConnected(chid)) { + if (!cabling->isOnlineConnected(chid)) { std::cout << " disconnected" << std::endl; m_outfile << " disconnected" << std::endl; continue; } - const Identifier id=m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id=cabling->cnvToIdentifier(chid); if(!m_emId->is_lar_em(id)) { eta=m_emId->eta(id); diff --git a/LArCalorimeter/LArTest/LArEventTest/src/FindDuplicatedLArDigits.cxx b/LArCalorimeter/LArTest/LArEventTest/src/FindDuplicatedLArDigits.cxx old mode 100755 new mode 100644 index 089cbe6064d69d3c489eec9fa3a54d0d3cfce524..7ff71f7f3ee5a3785064042a0231d3f86d9662c8 --- a/LArCalorimeter/LArTest/LArEventTest/src/FindDuplicatedLArDigits.cxx +++ b/LArCalorimeter/LArTest/LArEventTest/src/FindDuplicatedLArDigits.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArEventTest/FindDuplicatedLArDigits.h" @@ -23,7 +23,6 @@ FindDuplicatedLArDigits::FindDuplicatedLArDigits(const std::string& name, ISvcLo : AthAlgorithm(name, pSvcLocator), m_nProblemEvent(0), m_onlineHelper(0), - m_larCablingSvc(0), m_emId(0), m_hecId(0), m_fcalId(0) @@ -56,10 +55,6 @@ StatusCode FindDuplicatedLArDigits::initialize() return StatusCode::FAILURE; } - ISvcLocator* svcLoc = Gaudi::svcLocator( ); - IToolSvc* toolSvc = nullptr; - ATH_CHECK( svcLoc->service( "ToolSvc",toolSvc) ); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_larCablingSvc) ); ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); ATH_MSG_DEBUG ( " Found the LArOnlineID helper. " ); diff --git a/LArCalorimeter/LArTest/LArEventTest/src/LArDigitsToNtuple.cxx b/LArCalorimeter/LArTest/LArEventTest/src/LArDigitsToNtuple.cxx old mode 100755 new mode 100644 index 621147c283142dca7fac077c8c08bda33b28b393..af466f6886a2d15d7f9bb09938f638902f3e3857 --- a/LArCalorimeter/LArTest/LArEventTest/src/LArDigitsToNtuple.cxx +++ b/LArCalorimeter/LArTest/LArEventTest/src/LArDigitsToNtuple.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArEventTest/LArDigitsToNtuple.h" @@ -21,7 +21,6 @@ LArDigitsToNtuple::LArDigitsToNtuple(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), m_onlineHelper(0), - m_larCablingSvc(0), m_emId(0), m_hecId(0), m_fcalId(0), @@ -73,7 +72,7 @@ StatusCode LArDigitsToNtuple::initialize() return StatusCode::FAILURE; } - ATH_CHECK( toolSvc()->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); ATH_MSG_DEBUG ( " Found the LArOnlineID helper. " ); @@ -219,6 +218,12 @@ StatusCode LArDigitsToNtuple::execute() if(m_sca) { ATH_CHECK( evtStore()->retrieve(larFebHeaderContainer) ); } + SG::ReadCondHandle<LArOnOffIdMapping> larCablingHdl(m_cablingKey); + const LArOnOffIdMapping* cabling=*larCablingHdl; + if(!cabling) { + ATH_MSG_ERROR("Could not get LArOnOffIdMapping !!"); + return StatusCode::FAILURE; + } // Fill ntuple LArDigitContainer::const_iterator it = digit_cont->begin(); @@ -234,7 +239,7 @@ StatusCode LArDigitsToNtuple::execute() if(m_trigger) m_nt_trigger = triggerword; if(m_scint) m_nt_S1 = S1Adc; try { - Identifier id=m_larCablingSvc->cnvToIdentifier(hwid); + Identifier id=cabling->cnvToIdentifier(hwid); if (m_emId->is_lar_em(id)) { m_nt_eta = m_emId->eta(id); m_nt_phi = m_emId->phi(id); diff --git a/LArCalorimeter/LArTools/LArTools/LArMCSymTool.h b/LArCalorimeter/LArTools/LArTools/LArMCSymTool.h old mode 100755 new mode 100644 index 24ff48f0207ceeb73099dccfb07f9442243d693d..ee49c9d50c7e19da51f5555285ea60695838c4ba --- a/LArCalorimeter/LArTools/LArTools/LArMCSymTool.h +++ b/LArCalorimeter/LArTools/LArTools/LArMCSymTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -18,7 +18,7 @@ class LArEM_ID; class LArHEC_ID; class LArFCAL_ID; -class LArCablingService; +class LArCablingLegacyService; /** @brief Tool for converting LAr readout identifier to a subset of the identifiers. @@ -62,7 +62,7 @@ class LArMCSymTool: public AthAlgTool, virtual public ILArMCSymTool // Disallow assignment. LArMCSymTool& operator= (const LArMCSymTool&); - ToolHandle<LArCablingService> m_cablingService; + ToolHandle<LArCablingLegacyService> m_cablingService; unsigned m_ncellem,m_ncellhec,m_ncellfcal; std::vector<HWIdentifier> m_listOnline; diff --git a/LArCalorimeter/LArTools/doc/packagedoc.h b/LArCalorimeter/LArTools/doc/packagedoc.h index 920d1064c2dbaa1f510caa5024e3919e2c17dada..e6281b26f7db7fd61962f5ae1265a2a8ca140c8f 100644 --- a/LArCalorimeter/LArTools/doc/packagedoc.h +++ b/LArCalorimeter/LArTools/doc/packagedoc.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -17,6 +17,8 @@ This package provides tools for LAr identifier mapping. @section LArTools_SignalMap Signal channel cabling mapping LArCablingService (an AlgTool) provides the cabling mapping for signal channels, between online and offline identifiers. +LArCablingService will be removed, LArCablingLegacyService will be provided for clients which should retire soon + It also provide the definition of LArReadoutModuleID (defined in LArIdentifier package), and the mapping from FEB ID to the backend readout module. diff --git a/LArCalorimeter/LArTools/src/LArMCSymTool.cxx b/LArCalorimeter/LArTools/src/LArMCSymTool.cxx old mode 100755 new mode 100644 index 1127fab36db4da62bbd1c75d293c3172bd8e7aac..d532619334780f767775d4d0da01ac1da70d169b --- a/LArCalorimeter/LArTools/src/LArMCSymTool.cxx +++ b/LArCalorimeter/LArTools/src/LArMCSymTool.cxx @@ -1,9 +1,9 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArTools/LArMCSymTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "AthenaKernel/errorcheck.h" #include "CaloIdentifier/LArID.h" @@ -11,7 +11,7 @@ LArMCSymTool::LArMCSymTool(const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool(type, name, parent), - m_cablingService("LArCablingService"), + m_cablingService("LArCablingLegacyService"), m_ncellem(0), m_ncellhec(0), m_ncellfcal(0), @@ -44,7 +44,7 @@ StatusCode LArMCSymTool::initialize() { m_listOnline.resize(larHashMax); ATH_MSG_DEBUG("total number of cells " << larHashMax); - CHECK( detStore()->regFcn(&LArCablingService::iovCallBack,&(*m_cablingService), + CHECK( detStore()->regFcn(&LArCablingLegacyService::iovCallBack,&(*m_cablingService), &LArMCSymTool::iovCallBack, this,true) ); diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.cxx b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.cxx old mode 100755 new mode 100644 index c1bf576e3c36ca66b06350d5eef2df38a60fae96..54007c6d6d6b87938c23f4449a4bdaaa44886d7c --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.cxx +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -24,7 +24,6 @@ #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArHEC_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" -#include "LArCabling/LArCablingService.h" #include <vector> #include "AthenaKernel/errorcheck.h" @@ -68,7 +67,6 @@ LArDigitFillerTool::LArDigitFillerTool m_emId(0), m_hecId(0), m_fcalId(0), - m_larCablingSvc("LArCablingService"), m_cellIndex(0) { declareProperty("SaveDigit",m_savedigit); @@ -123,7 +121,7 @@ StatusCode LArDigitFillerTool::book() m_fcalId=caloIdMgr->getFCAL_ID(); - CHECK( m_larCablingSvc.retrieve() ); + CHECK( m_cablingKey.initialize() ); StoreGateSvc* detStore = 0; CHECK( service("DetectorStore", detStore) ); @@ -229,6 +227,12 @@ StatusCode LArDigitFillerTool::fill ( const LArDigit& digit) //Check gain const long gain=digit.gain(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } /** Don't do skipping yet. if (gain>=CaloGain::LARNGAIN || m_gains[gain]==false) continue; @@ -239,7 +243,7 @@ StatusCode LArDigitFillerTool::fill ( const LArDigit& digit) if (m_onlineHelper->isFCALchannel(chid) && !m_fcal) continue; //Check if connected - const bool connected=m_larCablingSvc->isOnlineConnected(chid); + const bool connected=cabling->isOnlineConnected(chid); if (!connected && !m_dumpDisc) continue; @@ -268,7 +272,7 @@ StatusCode LArDigitFillerTool::fill ( const LArDigit& digit) const HWIdentifier chid=digit.hardwareID(); size_t n=vSamples.size(); int nsamples=vSamples.size(); - const bool connected=m_larCablingSvc->isOnlineConnected(chid); + const bool connected=cabling->isOnlineConnected(chid); ATH_MSG_DEBUG( " is connected " <<connected ); @@ -284,7 +288,7 @@ StatusCode LArDigitFillerTool::fill ( const LArDigit& digit) //Add offline ID if (connected) { - const Identifier id=m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id=cabling->cnvToIdentifier(chid); if(m_storeId) *m_offId = id.get_identifier32().get_compact() ; if (m_emId->is_lar_em(id)) { *m_calo = 0; diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.h b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.h old mode 100755 new mode 100644 index 3eb5cead54ec0ef4b8056d555bb14ae7ea14cb67..7efd9a6c92aa66b1fc27cd5a5b8758fc1037c2b5 --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.h +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArDigitFillerTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef CALOSYSD3PDMAKER_LARDIGITFILLERTOOL_H @@ -13,8 +13,8 @@ #include "D3PDMakerUtils/BlockFillerTool.h" #include "LArRawEvent/LArDigitContainer.h" -#include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" class LArEM_ID; class LArFCAL_ID; @@ -59,6 +59,8 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + // flags bool m_savesca; bool m_savedigit; @@ -83,8 +85,6 @@ private: const LArHEC_ID* m_hecId; const LArFCAL_ID* m_fcalId; - ToolHandle<LArCablingService> m_larCablingSvc; - // variables in ntuple long m_cellIndex; //long m_evt; diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.cxx b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.cxx old mode 100755 new mode 100644 index 2f31bf5aca9f3c6968f11fb53b0d24ee05e6dc76..c09b7a331ea1dc7fdd413f13972adb98e25e6d2d --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.cxx +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /* @@ -12,14 +12,12 @@ #include "LArRawChannelFillerTool.h" #include "StoreGate/StoreGateSvc.h" #include "AthenaKernel/errorcheck.h" -#include "LArCabling/LArCablingService.h" namespace D3PD { LArRawChannelFillerTool::LArRawChannelFillerTool(const std::string& type, const std::string& name, - const IInterface* parent):Base(type, name,parent), - m_larCablingSvc("LArCablingService") + const IInterface* parent):Base(type, name,parent) { book().ignore(); // Avoid coverity warnings. } @@ -33,7 +31,7 @@ namespace D3PD { */ StatusCode LArRawChannelFillerTool::initialize() { - CHECK( m_larCablingSvc.retrieve() ); + CHECK( m_cablingKey.initialize() ); return StatusCode::SUCCESS; } @@ -51,7 +49,13 @@ namespace D3PD { const LArRawChannel* larR=&p; if ( larR ) { - const Identifier id=m_larCablingSvc->cnvToIdentifier(larR->identify()); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + const Identifier id=cabling->cnvToIdentifier(larR->identify()); *m_offId = id.get_identifier32().get_compact(); *m_onlId = larR->identify().get_identifier32().get_compact(); *m_energy = larR->energy(); diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.h b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.h old mode 100755 new mode 100644 index 8170878be9c28ce3099ca68320206f5cd7583323..811ba400dda527dd33c6c29c274adf49ffaeb49e --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.h +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArRawChannelFillerTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /* @@ -14,9 +14,8 @@ #include "D3PDMakerUtils/BlockFillerTool.h" #include "LArRawEvent/LArRawChannelContainer.h" -#include "GaudiKernel/ToolHandle.h" - -class LArCablingService; +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" namespace D3PD{ @@ -56,8 +55,7 @@ namespace D3PD{ float* m_energy; float* m_time; float* m_quality; - ToolHandle<LArCablingService> m_larCablingSvc; - + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; }; } diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.cxx b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.cxx index e57ba3bc7e82f9407923a0fc5687d64e063806d8..a5ef3493df157ae1fae354f6962c0dfaefd20f9e 100644 --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.cxx +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.cxx @@ -1,12 +1,11 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "AthenaKernel/errorcheck.h" #include <sstream> -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloEvent/CaloCell.h" #include "CaloEvent/CaloCellContainer.h" @@ -39,7 +38,6 @@ LArSCHitFillerTool::LArSCHitFillerTool const std::string& name, const IInterface* parent) : BlockFillerTool<LArHitContainer> (type, name, parent), - m_larCablingSvc("LArCablingService"), m_dd_fSampl (nullptr), m_caloEtaSelection( false ), m_caloPhiSelection( false ), diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.h b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.h index 8bd0cd2444132d9757232952354721d6801b0d27..fe9b438832be20c9973b2c91194cb16b65c5d610 100644 --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.h +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/LArSCHitFillerTool.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -32,7 +32,6 @@ class LArHEC_ID; class TileID; class ICaloNoiseTool; class LArOnlineID; -class LArCablingService; class CaloDetDescrManager ; class Identifier; @@ -76,7 +75,6 @@ private: const LArHEC_ID *m_hecid; const TileID *m_tileid; const LArOnlineID* m_onlineHelper; - ToolHandle<LArCablingService> m_larCablingSvc; const ILArfSampl* m_dd_fSampl; /// parameters diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.cxx b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.cxx index 331db98b8a4af81e21e0e58a8d062bd67a71bfa1..8725863dda5cea6ed9b4e619c34fdc1127f6dd95 100644 --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.cxx +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id$ @@ -11,7 +11,6 @@ #include <sstream> -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "CaloEvent/CaloCell.h" #include "CaloEvent/CaloCellContainer.h" @@ -38,7 +37,7 @@ SCFillerTool::SCFillerTool const std::string& name, const IInterface* parent) : BlockFillerTool<CaloCellContainer> (type, name, parent), - m_larCablingSvc("LArCablingService"), + m_larCablingSvc("LArCablingLegacyService"), m_tableFilled(false), m_caloEtaSelection( false ), m_caloPhiSelection( false ), diff --git a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.h b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.h index 32894acf0bc6d23e3bd081b6de3ee16a38a80ade..2d1e0ec4e689d5aa1a8bc4ee83e7b7189d4f0141 100644 --- a/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.h +++ b/PhysicsAnalysis/D3PDMaker/CaloSysD3PDMaker/src/SCFillerTool.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /** @@ -17,6 +17,7 @@ // Gaudi/Athena include(s): #include "GaudiKernel/ToolHandle.h" #include "D3PDMakerUtils/BlockFillerTool.h" +#include "LArCabling/LArCablingLegacyService.h" #include <vector> #include <list> @@ -32,7 +33,6 @@ class LArHEC_ID; class TileID; class ICaloNoiseTool; class LArOnlineID; -class LArCablingService; class Identifier; namespace D3PD { @@ -71,7 +71,7 @@ private: const LArHEC_ID *m_hecid; const TileID *m_tileid; const LArOnlineID* m_onlineHelper; - ToolHandle<LArCablingService> m_larCablingSvc; + ToolHandle<LArCablingLegacyService> m_larCablingSvc; // const CaloDetDescrManager* m_dd_man; diff --git a/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.cxx b/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.cxx index 0297646b47291b00803a7e2e9effaf5417ebf11b..cbf0d68a9af23e7437016b1897bd26ad8bd1c63e 100644 --- a/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.cxx +++ b/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: egammaMaxECellAlg.cxx 775884 2016-09-29 15:57:53Z ssnyder $ @@ -15,7 +15,6 @@ #include "D3PDMakerInterfaces/ICollectionGetterTool.h" #include "xAODEgamma/Egamma.h" #include "xAODCaloEvent/CaloCluster.h" -#include "LArCabling/LArCablingService.h" #include "AthenaKernel/errorcheck.h" @@ -25,8 +24,7 @@ namespace D3PD { egammaMaxECellAlg::egammaMaxECellAlg (const std::string& name, ISvcLocator* svcloc) : AthAlgorithm (name, svcloc), - m_getter (this), - m_larCablingSvc("LArCablingService",this) + m_getter (this) { declareProperty ("AuxPrefix", m_auxPrefix, "Prefix to add to aux data items."); @@ -45,6 +43,7 @@ StatusCode egammaMaxECellAlg::initialize() ATH_MSG_INFO(" Starting egammaMaxECellAlg" ); CHECK( AthAlgorithm::initialize() ); + CHECK( m_cablingKey.initialize() ); CHECK( m_getter.retrieve() ); CHECK( m_getter->configureD3PD<xAOD::Egamma>() ); return StatusCode::SUCCESS; @@ -69,6 +68,12 @@ StatusCode egammaMaxECellAlg::execute() #undef DECOR CHECK( m_getter->reset (m_allowMissing) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } while (const xAOD::Egamma* eg = m_getter->next<xAOD::Egamma>()) { const xAOD::CaloCluster *cluster = eg->caloCluster(); @@ -106,7 +111,7 @@ StatusCode egammaMaxECellAlg::execute() maxEcell_time(*eg) = cell_maxE->time(); maxEcell_energy(*eg) = cell_maxE->energy(); maxEcell_gain(*eg) = (int) cell_maxE->gain(); - maxEcell_onlId(*eg) = (unsigned int) (m_larCablingSvc->createSignalChannelID(caloDDEl->identify())).get_compact(); + maxEcell_onlId(*eg) = (unsigned int) (cabling->createSignalChannelID(caloDDEl->identify())).get_compact(); maxEcell_x(*eg) = caloDDEl->x(); maxEcell_y(*eg) = caloDDEl->y(); diff --git a/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.h b/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.h index 65ea195b7391fb025a3c2ba30f33ffc8cd80ecdd..8b705bc193d60f341bd59ef49d492f6b4f8fe4c7 100644 --- a/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.h +++ b/PhysicsAnalysis/D3PDMaker/egammaD3PDAnalysis/src/egammaMaxECellAlg.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: egammaMaxECellAlg.h 604352 2014-07-01 04:52:11Z ssnyder $ @@ -19,7 +19,8 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" #include <vector> #include <string> @@ -56,6 +57,7 @@ public: private: + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}; /// Property: Prefix to add to aux data items. std::string m_auxPrefix; @@ -65,7 +67,6 @@ private: /// Property: If true, don't complain if input objects are missing. bool m_allowMissing; - ToolHandle<LArCablingService> m_larCablingSvc; }; diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/DerivationFrameworkCalo/MaxCellDecorator.h b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/DerivationFrameworkCalo/MaxCellDecorator.h index f809d4e775035e8a0213ee5e577ca0c754d515e7..8577a9278fb01746f5f9d4a4dab974ce45938052 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/DerivationFrameworkCalo/MaxCellDecorator.h +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/DerivationFrameworkCalo/MaxCellDecorator.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /////////////////////////////////////////////////////////////////// @@ -19,8 +19,9 @@ #include "GaudiKernel/ToolHandle.h" #include "GaudiKernel/ServiceHandle.h" #include "CaloIdentifier/CaloIdManager.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" -class LArCablingService; namespace DerivationFramework { @@ -36,7 +37,7 @@ namespace DerivationFramework { std::string m_SGKey_photons; std::string m_SGKey_electrons; - ToolHandle<LArCablingService> m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; void decorateObject(const xAOD::Egamma*& egamma) const; }; diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/src/MaxCellDecorator.cxx b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/src/MaxCellDecorator.cxx index a493f98c55eb16c03fbbd3a12e085bfe4baccadc..cb79816f3b4be68a71a2f1d7ac517ec744e59159 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/src/MaxCellDecorator.cxx +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCalo/src/MaxCellDecorator.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ ///////////////////////////////////////////////////////////////// @@ -18,7 +18,6 @@ #include "CaloIdentifier/CaloCell_ID.h" #include "CaloGeoHelpers/CaloSampling.h" #include "CaloClusterCorrection/CaloFillRectangularCluster.h" -#include "LArCabling/LArCablingService.h" #include <vector> #include <string> @@ -29,11 +28,9 @@ DerivationFramework::MaxCellDecorator::MaxCellDecorator(const std::string& t, const IInterface* p) : AthAlgTool(t,n,p), m_SGKey_photons(""), - m_SGKey_electrons(""), - m_larCablingSvc("LArCablingService") + m_SGKey_electrons("") { declareInterface<DerivationFramework::IAugmentationTool>(this); - declareProperty("LArCablingService", m_larCablingSvc ); declareProperty("SGKey_photons", m_SGKey_photons); declareProperty("SGKey_electrons", m_SGKey_electrons); } @@ -47,8 +44,7 @@ StatusCode DerivationFramework::MaxCellDecorator::initialize(){ // Decide which collections need to be checked for ID TrackParticles ATH_MSG_VERBOSE("initialize() ..."); - CHECK( m_larCablingSvc.retrieve() ); - ATH_MSG_INFO("Retrieved tool " << m_larCablingSvc); + CHECK( m_cablingKey.initialize() ); if(m_SGKey_photons == "" && m_SGKey_electrons == "" ){ ATH_MSG_FATAL("No e-gamma collection provided. At least one egamma collection (photon/electrons) must be provided!"); @@ -118,6 +114,12 @@ void DerivationFramework::MaxCellDecorator::decorateObject(const xAOD::Egamma*& if( !cluster->getCellLinks() ){ ATH_MSG_WARNING("CellLinks not found"); } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling){ + ATH_MSG_ERROR("Do not have mapping object " << m_cablingKey.key() ); + return; + } float emax = -9999.; @@ -139,7 +141,7 @@ void DerivationFramework::MaxCellDecorator::decorateObject(const xAOD::Egamma*& maxEcell_time = cell_maxE->time(); maxEcell_energy = cell_maxE->energy(); maxEcell_gain = (int)cell_maxE->gain(); - maxEcell_onlId = (uint64_t)(m_larCablingSvc->createSignalChannelID(caloDDEl->identify())).get_compact(); + maxEcell_onlId = (uint64_t)(cabling->createSignalChannelID(caloDDEl->identify())).get_compact(); maxEcell_x = caloDDEl->x(); maxEcell_y = caloDDEl->y(); maxEcell_z = caloDDEl->z(); diff --git a/Reconstruction/egamma/egammaTools/src/egammaOQFlagsBuilder.h b/Reconstruction/egamma/egammaTools/src/egammaOQFlagsBuilder.h index 5b18402a53684a859c823c0b68eb22d1d81075c1..29b760ca1aef8f9d8daeaae08c42d9e49a7140aa 100644 --- a/Reconstruction/egamma/egammaTools/src/egammaOQFlagsBuilder.h +++ b/Reconstruction/egamma/egammaTools/src/egammaOQFlagsBuilder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef EGAMMATOOLS_EGAMMAOQFLAGSBUILDER_H @@ -18,7 +18,6 @@ Most of the informations are given separately for each layer of the EM calorimet #include "egammaBaseTool.h" #include "GaudiKernel/ToolHandle.h" #include "GaudiKernel/EventContext.h" -#include "LArCabling/LArCablingService.h" #include "CaloIdentifier/LArEM_ID.h" #include "Identifier/HWIdentifier.h" #include "CaloIdentifier/CaloCell_ID.h" diff --git a/TestBeam/TBCnv/TBCnv/ReadTBLArDigits.h b/TestBeam/TBCnv/TBCnv/ReadTBLArDigits.h index 58c311a291c5337f5687165709d608f6688c7cbb..415d2b8df122fb8310a63b812e7c997d6c64400a 100644 --- a/TestBeam/TBCnv/TBCnv/ReadTBLArDigits.h +++ b/TestBeam/TBCnv/TBCnv/ReadTBLArDigits.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -11,7 +11,7 @@ #include "GaudiKernel/MsgStream.h" #include "StoreGate/StoreGateSvc.h" #include "TBEvent/TBLArDigitContainer.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloIdentifier/LArEM_ID.h" #include "CaloIdentifier/LArFCAL_ID.h" #include "CaloIdentifier/LArHEC_ID.h" @@ -36,7 +36,7 @@ class ReadTBLArDigits : public AthAlgorithm private: int m_count; - LArCablingService *m_larCablingSvc; + LArCablingLegacyService *m_larCablingSvc; const LArEM_ID* m_emId; const LArFCAL_ID* m_fcalId; const LArHEC_ID* m_hecId; diff --git a/TestBeam/TBCnv/TBCnv/TBByteStreamCnvTool.h b/TestBeam/TBCnv/TBCnv/TBByteStreamCnvTool.h index c5c5104a38cf7a93c622c5879b519fca6ad75a0d..9b6272ad0acfc7fce419de77365004d00fe90041 100644 --- a/TestBeam/TBCnv/TBCnv/TBByteStreamCnvTool.h +++ b/TestBeam/TBCnv/TBCnv/TBByteStreamCnvTool.h @@ -1,7 +1,7 @@ //Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TESTBEAM_BYTESTREAMTOOL_H @@ -29,7 +29,7 @@ #include "TBEvent/TBEventInfo.h" #include "TBEvent/TBLArDigitContainer.h" #include "TBEvent/TBLArCalibDigitContainer.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloIdentifier/CaloGain.h" @@ -123,7 +123,7 @@ private: }else return false; } - LArCablingService *m_larCablingSvc; + LArCablingLegacyService *m_larCablingSvc; // pointers to raw objects : TBTDC * m_tbtdc; diff --git a/TestBeam/TBCnv/src/ReadTBLArDigits.cxx b/TestBeam/TBCnv/src/ReadTBLArDigits.cxx index 9629f0502818c00a4505673fd24ac1bc4ae4a055..e17b71acc2a1d11cd8bfed8cb1674df9f3279f2a 100644 --- a/TestBeam/TBCnv/src/ReadTBLArDigits.cxx +++ b/TestBeam/TBCnv/src/ReadTBLArDigits.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TBCnv/ReadTBLArDigits.h" @@ -48,7 +48,7 @@ StatusCode ReadTBLArDigits::initialize() return StatusCode::FAILURE; } - sc=toolSvc->retrieveTool("LArCablingService",m_larCablingSvc); + sc=toolSvc->retrieveTool("LArCablingLegacyService",m_larCablingSvc); if (sc.isFailure()) { log << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; return StatusCode::FAILURE; diff --git a/TestBeam/TBCnv/src/TBByteStreamCnvTool.cxx b/TestBeam/TBCnv/src/TBByteStreamCnvTool.cxx index e7053138464e348362650e1390bc011238c5a9bb..9f77816c8067aac59393ad36cc4050ff90821073 100644 --- a/TestBeam/TBCnv/src/TBByteStreamCnvTool.cxx +++ b/TestBeam/TBCnv/src/TBByteStreamCnvTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TBCnv/TBByteStreamCnvTool.h" @@ -77,7 +77,7 @@ StatusCode TBByteStreamCnvTool::initialize() return StatusCode::FAILURE; } - sc=toolSvc->retrieveTool("LArCablingService",m_larCablingSvc); + sc=toolSvc->retrieveTool("LArCablingLegacyService",m_larCablingSvc); if (sc.isFailure()) { logstr << MSG::ERROR << "Unable to retrieve LArCablingService" << endmsg; return StatusCode::FAILURE; diff --git a/TestBeam/TBMonitoring/TBMonitoring/TBPhaseMonTool.h b/TestBeam/TBMonitoring/TBMonitoring/TBPhaseMonTool.h old mode 100755 new mode 100644 index f788280b9cdcb737319ee837e40b88ef885de9be..d59ef510577afeebf35b60a7466bdf0145fc41a2 --- a/TestBeam/TBMonitoring/TBMonitoring/TBPhaseMonTool.h +++ b/TestBeam/TBMonitoring/TBMonitoring/TBPhaseMonTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBMONITORING_TBPHASEMONTOOL_H @@ -30,7 +30,7 @@ class StoreGateSvc; class IToolSvc; class LArOnlineID; -class LArCablingService; +class LArCablingLegacyService; #include <map> #include <string> @@ -58,7 +58,7 @@ class TBPhaseMonTool: public MonitorToolBase protected: - ServiceHandle<LArCablingService> m_cablingService; + ServiceHandle<LArCablingLegacyService> m_cablingService; const LArOnlineID* m_onlineHelper; /*! \brief properties */ diff --git a/TestBeam/TBMonitoring/src/TBPhaseMonTool.cxx b/TestBeam/TBMonitoring/src/TBPhaseMonTool.cxx old mode 100755 new mode 100644 index 9adc1fc21097720c594e5db88707ca02b5c39b9b..1b80dbb5fb3396236c287075d0ff965356e079b3 --- a/TestBeam/TBMonitoring/src/TBPhaseMonTool.cxx +++ b/TestBeam/TBMonitoring/src/TBPhaseMonTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -27,7 +27,7 @@ // #include "CaloUtils/CaloSamplingHelper.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "TBEvent/TBTDCRaw.h" #include "TBEvent/TBTDCRawCont.h" @@ -55,7 +55,7 @@ TBPhaseMonTool::TBPhaseMonTool(const std::string& type, const std::string& name, const IInterface* parent) : MonitorToolBase(type,name,parent) - , m_cablingService("LArCablingService", "TBPhaseMonTool") + , m_cablingService("LArCablingLegacyService", "TBPhaseMonTool") , m_onlineHelper(nullptr) , m_tdcContainerName("TDCRawCont") , m_caloCellName("AllCalo") diff --git a/TestBeam/TBRec/src/CBNT_TBRecBase.cxx b/TestBeam/TBRec/src/CBNT_TBRecBase.cxx index a78ea073161913655c40412b3f9bc255ca9f196a..feecf4e6ebde9b0219322b56081dc06a9b793fc4 100644 --- a/TestBeam/TBRec/src/CBNT_TBRecBase.cxx +++ b/TestBeam/TBRec/src/CBNT_TBRecBase.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CBNT_TBRecBase.h" @@ -11,8 +11,7 @@ CBNT_TBRecBase::CBNT_TBRecBase(const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), m_initialized(false), m_nt(NULL), m_log(NULL), - m_detStore(NULL), m_emId(NULL), m_hecId(NULL), m_fcalId(NULL),m_onlineId(NULL), - m_larCablingSvc("LArCablingService") + m_detStore(NULL), m_emId(NULL), m_hecId(NULL), m_fcalId(NULL),m_onlineId(NULL) { } @@ -36,6 +35,7 @@ StatusCode CBNT_TBRecBase::initialize() { m_fcalId=caloIdMgr->getFCAL_ID(); m_hecId=caloIdMgr->getHEC_ID(); + if (!m_emId) { (*m_log) << MSG::ERROR << "Could not access lar EM ID helper" << endmsg; return StatusCode::FAILURE; @@ -58,11 +58,6 @@ StatusCode CBNT_TBRecBase::initialize() { (*m_log) << MSG::DEBUG << " Found the LArOnlineID helper. " << endmsg; } - sc = m_larCablingSvc.retrieve(); - if (sc!=StatusCode::SUCCESS) { - (*m_log) << MSG::ERROR << " Can't get LArCablingSvc." << endmsg; - return sc; - } m_initialized=true; return StatusCode::SUCCESS; diff --git a/TestBeam/TBRec/src/CBNT_TBRecBase.h b/TestBeam/TBRec/src/CBNT_TBRecBase.h index 4cf7ba0c65a490d460610a65f7380139b0337d1c..812ae7f92c800d49f08991e8cc399ce4688f2a36 100644 --- a/TestBeam/TBRec/src/CBNT_TBRecBase.h +++ b/TestBeam/TBRec/src/CBNT_TBRecBase.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Dear emacs, this is -*-c++-*- @@ -9,14 +9,10 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" -#include "LArCabling/LArCablingService.h" - #include "TTree.h" class HWIdentifier; class LArOnlineID; -//class LArCablingService; -//class ILArBadChanTool; class StoreGateSvc; class LArEM_ID; class LArHEC_ID; @@ -72,7 +68,6 @@ class CBNT_TBRecBase : public AthAlgorithm { const LArHEC_ID* m_hecId; const LArFCAL_ID* m_fcalId; const LArOnlineID* m_onlineId; - ToolHandle<LArCablingService> m_larCablingSvc; }; #endif diff --git a/TestBeam/TBRec/src/CBNT_Timing.cxx b/TestBeam/TBRec/src/CBNT_Timing.cxx index 9136e9c703eb2f9fb1e0cfc19cd1f720e3272add..7f97df4ae5fdaba914394dc02839c7404011c98b 100644 --- a/TestBeam/TBRec/src/CBNT_Timing.cxx +++ b/TestBeam/TBRec/src/CBNT_Timing.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "CBNT_Timing.h" @@ -12,7 +12,6 @@ #include "CaloIdentifier/CaloIdManager.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" #include "TBEvent/TBScintillatorCont.h" #include "TBEvent/TBBPCCont.h" #include "TBEvent/TBPhase.h" @@ -68,7 +67,7 @@ StatusCode CBNT_Timing::CBNT_initialize() { const CaloIdManager *caloIdMgr=CaloIdManager::instance() ; m_emId=caloIdMgr->getEM_ID(); - ATH_CHECK( m_cablingService.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); addBranch ("TDC_TimeCell",m_time_cell); @@ -149,6 +148,13 @@ StatusCode CBNT_Timing::CBNT_execute() // Data Access // ///////////////// + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + // CaloCells const CaloCellContainer* cellContainer = nullptr; ATH_CHECK( evtStore()->retrieve(cellContainer, m_caloCellName ) ); @@ -191,7 +197,7 @@ StatusCode CBNT_Timing::CBNT_execute() // here you have the CaloCell with idCalo, idSample, **cell // find the hardware ID and the corresponding febID - HWIdentifier id = m_cablingService->createSignalChannelID((*cell)->ID()); + HWIdentifier id = cabling->createSignalChannelID((*cell)->ID()); HWIdentifier febID = m_onlineHelper->feb_Id(id); // store it if you don't have it already @@ -256,7 +262,7 @@ StatusCode CBNT_Timing::CBNT_execute() // here you have the CaloCell with idCalo, idSample, **cell // find the hardware ID and the corresponding febID - HWIdentifier id = m_cablingService->createSignalChannelID((*cell)->ID()); + HWIdentifier id = cabling->createSignalChannelID((*cell)->ID()); HWIdentifier febID = m_onlineHelper->feb_Id(id); // gather sums for energy weighted cubic peaking time @@ -295,7 +301,7 @@ StatusCode CBNT_Timing::CBNT_execute() m_febId_cell->push_back(febID.get_identifier32().get_compact()); //try { - //const Identifier ident = m_cablingService->cnvToIdentifier(id); + //const Identifier ident = cabling->cnvToIdentifier(id); if ( m_emId->is_lar_em((*cell)->ID()) ) { m_eta_cell->push_back(m_emId->eta((*cell)->ID())); m_phi_cell->push_back(m_emId->phi((*cell)->ID())); diff --git a/TestBeam/TBRec/src/CBNT_Timing.h b/TestBeam/TBRec/src/CBNT_Timing.h index 5ac2a4d31b2e218b7ce73c574ac83fcbba24cfbb..069ce8ccac8627fe3be1d24930167ace6ded980b 100644 --- a/TestBeam/TBRec/src/CBNT_Timing.h +++ b/TestBeam/TBRec/src/CBNT_Timing.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBREC_CBNT_TIMING_H @@ -11,10 +11,10 @@ #include "CaloIdentifier/CaloCell_ID.h" #include "Identifier/HWIdentifier.h" #include "CaloIdentifier/LArEM_ID.h" + #include "LArCabling/LArOnOffIdMapping.h" class StoreGateSvc; class LArOnlineID; -class LArCablingService; #include <fstream> #include <string> @@ -38,7 +38,7 @@ class CBNT_Timing : public CBNT_TBRecBase static const int NOTIME = -999; static const int NOENERGY = -999; - ToolHandle<LArCablingService> m_cablingService; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; const LArOnlineID* m_onlineHelper; const LArEM_ID* m_emId; diff --git a/TestBeam/TBRec/src/TBCellContainerFillerTool.cxx b/TestBeam/TBRec/src/TBCellContainerFillerTool.cxx index 81f5dda7e9c3c947d8cc2efbe9abb391d9588a6a..57162ef902ccb310e37512e5b20db845f1473800 100644 --- a/TestBeam/TBRec/src/TBCellContainerFillerTool.cxx +++ b/TestBeam/TBRec/src/TBCellContainerFillerTool.cxx @@ -8,7 +8,6 @@ #include "CaloIdentifier/CaloCell_ID.h" #include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloIdentifier/CaloCell_ID.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" @@ -36,7 +35,6 @@ StatusCode TBCellContainerFillerTool::initialize() m_hashMax = m_theCaloCCIDM->calo_cell_hash_max(); - ATH_CHECK( m_cablingService.retrieve() ); ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); return StatusCode::SUCCESS; @@ -76,7 +74,6 @@ TBCellContainerFillerTool::process (CaloCellContainer* theCont, Identifier cellid = m_theCaloCCIDM->cell_id(theHash); HWIdentifier chid = m_onlineHelper->channel_Id(m_theCaloCCIDM->calo_cell_hash(cellid)); if(!chid.get_identifier32().get_compact()) continue; -// if(m_cablingService->isOnlineConnected(chid)) { const CaloDetDescrElement* cDDE = m_theCaloDDM->get_element(cellid); if(!cDDE) { continue; } if(cDDE->is_lar_hec()) diff --git a/TestBeam/TBRec/src/TBCellContainerFillerTool.h b/TestBeam/TBRec/src/TBCellContainerFillerTool.h index 231b3c202c8fcccb50d53d789a9ff155eb37259e..1d6e3462b4dee13458a7ee687d77f3540bca5251 100644 --- a/TestBeam/TBRec/src/TBCellContainerFillerTool.h +++ b/TestBeam/TBRec/src/TBCellContainerFillerTool.h @@ -14,7 +14,6 @@ class StoreGateSvc; class MsgStream; class CaloDetDescrManager; class CaloCell_ID; -class LArCablingService; class LArOnlineID; class TBCellContainerFillerTool @@ -34,7 +33,6 @@ class TBCellContainerFillerTool private: const CaloDetDescrManager *m_theCaloDDM; const CaloCell_ID * m_theCaloCCIDM; - ToolHandle<LArCablingService> m_cablingService; const LArOnlineID* m_onlineHelper; unsigned int m_hashMax; }; diff --git a/TestBeam/TBRec/src/TBECLArRawChannelBuilder.cxx b/TestBeam/TBRec/src/TBECLArRawChannelBuilder.cxx index c5a1cf2a50b668aadd7238dbd4ca3caa6fdea2ef..9d878dbaac4a2a5d6cf2dc10bb61ce56c3e125bb 100644 --- a/TestBeam/TBRec/src/TBECLArRawChannelBuilder.cxx +++ b/TestBeam/TBRec/src/TBECLArRawChannelBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TBECLArRawChannelBuilder.h" @@ -30,7 +30,6 @@ TBECLArRawChannelBuilder::TBECLArRawChannelBuilder (const std::string& name, ISv AthAlgorithm(name, pSvcLocator), m_OFCTool("LArOFCTool"), m_adc2mevTool("LArADC2MeVTool"), - m_hvCorrTool("LArHVCorrTool"), m_onlineHelper(0), m_calo_id(0), m_calo_dd_man(0), @@ -136,12 +135,12 @@ StatusCode TBECLArRawChannelBuilder::initialize(){ } // translate offline ID into online ID - ATH_CHECK( m_larCablingSvc.retrieve() ); + ATH_CHECK( m_cablingKey.initialize() ); // *** if (m_hvcorr) { - ATH_CHECK( m_hvCorrTool.retrieve() ); + ATH_CHECK( m_offlineHVScaleCorrKey.initialize() ); } @@ -208,6 +207,22 @@ StatusCode TBECLArRawChannelBuilder::execute() int highE = 0; // Number of channels with 'high' (above threshold) energy in a given event int saturation = 0; // Number of saturating channels in a given event + const ILArHVScaleCorr *oflHVCorr=nullptr; + if(m_hvcorr) { + SG::ReadCondHandle<ILArHVScaleCorr> oflHVCorrHdl(m_offlineHVScaleCorrKey); + oflHVCorr = *oflHVCorrHdl; + if(!oflHVCorr) { + ATH_MSG_ERROR( "Could not get the HVScaleCorr from key " << m_offlineHVScaleCorrKey.key() ); + return StatusCode::FAILURE; + } + } + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Could not get the cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + //Pointer to input data container const LArDigitContainer* digitContainer=NULL;//Pointer to LArDigitContainer //const TBPhase* theTBPhase; //Pointer to Testbeam TDC-Phase object (if needed) @@ -304,9 +319,9 @@ StatusCode TBECLArRawChannelBuilder::execute() if (msgLvl(MSG::DEBUG) ) { Identifier id ; try { - id = m_larCablingSvc->cnvToIdentifier(chid); + id = cabling->cnvToIdentifier(chid); } catch ( LArID_Exception & except ) { - ATH_MSG_DEBUG ( "A larCablingSvc exception was caught for channel 0x!" + ATH_MSG_DEBUG ( "A Cabling exception was caught for channel 0x!" << MSG::hex << chid.get_compact() << MSG::dec ); continue ; } @@ -485,8 +500,6 @@ StatusCode TBECLArRawChannelBuilder::execute() } // temporalery fix for bad ramps... should be done in the DB - // if(ramp[1]>500 || ramp[1]<0) { - if(ramp[1]>m_ramp_max[gain] || ramp[1]<0) { noEnergy++; ATH_MSG_DEBUG ( "Bad ramp for channel " << chid << " (ramp[1] = " << ramp[1] << "): skip this channel" ); @@ -500,14 +513,13 @@ StatusCode TBECLArRawChannelBuilder::execute() //otherwise ignore intercept, E=0; for (unsigned i=1;i<ramp.size();i++) {energy+=ramp[i]*ADCPeakPower; //pow(ADCPeak,i); - //std::cout << "Step "<< i <<":" << ramp[i] << " * " << pow(ADCPeak,i) << "Sum=" << energy << std::endl; ADCPeakPower*=ADCPeak; } } else { energy = ADCPeak; if (m_ConvertADCToHighGain && gain == CaloGain::LARMEDIUMGAIN) energy *= 9.5; - Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + Identifier id = cabling->cnvToIdentifier(chid); int is = m_calo_id->calo_sample(id); energy *= m_adc2mev[is]; // Ramp for h.g. scale } @@ -516,18 +528,7 @@ StatusCode TBECLArRawChannelBuilder::execute() if (m_hvcorr) { // HV tool - float hvCorr = m_hvCorrTool->Scale(chid); -// debug printout - // const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); - // if (m_emId->is_lar_em(id) && abs(m_emId->barrel_ec(id))==1 && - // m_emId->sampling(id)>0) { - // layer = m_emId->sampling(id); - // eta = m_emId->eta(id); - // phi = m_emId->phi(id); - // region = m_emId->region(id); - // std::cout << "side,sampling,region,eta,phi,corr " << m_emId->barrel_ec(id) << " " << layer << " " << region << " " - // << eta << " " << phi << " " << hvCorr << std::endl; - // } + float hvCorr = oflHVCorr-> HVScaleCorr(chid); energy = energy*hvCorr; } diff --git a/TestBeam/TBRec/src/TBECLArRawChannelBuilder.h b/TestBeam/TBRec/src/TBECLArRawChannelBuilder.h index 348042fe0d2238bf9e94734ddce5fe2f70ad731c..67a28d003b0abd51ef71eea144891fb5efcd7bf9 100644 --- a/TestBeam/TBRec/src/TBECLArRawChannelBuilder.h +++ b/TestBeam/TBRec/src/TBECLArRawChannelBuilder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBREC_TBECLARRAWCHANNELBUILDER_H @@ -21,7 +21,9 @@ #include "LArIdentifier/LArOnlineID.h" #include "CaloIdentifier/CaloIdManager.h" -#include "LArCabling/LArCablingService.h" +#include "StoreGate/ReadCondHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArElecCalib/ILArHVScaleCorr.h" class CaloCell_ID; class CaloDetDescrManager; @@ -38,13 +40,13 @@ private: //Services & Tools ToolHandle<ILArOFCTool> m_OFCTool; ToolHandle<ILArADC2MeVTool> m_adc2mevTool; - ToolHandle<ILArHVCorrTool> m_hvCorrTool; const LArOnlineID* m_onlineHelper; - //LArRoI_Map* m_roiMap; - //LArRawOrdering m_larRawOrdering; const CaloCell_ID* m_calo_id; const CaloDetDescrManager* m_calo_dd_man; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey {this,"keyCabling", "LArOnOffIdMap", "Input key for Id mapping"} ; + SG::ReadCondHandleKey<ILArHVScaleCorr> m_offlineHVScaleCorrKey{this, "keyOfflineHVCorr", "LArHVScaleCorrRecomputed","Key for LArHVScaleCorr"}; + //Algo-properties std::string m_DataLocation, m_ChannelContainerName; bool m_useTDC, m_useRamp, m_useShape, m_useOFCTool; @@ -101,7 +103,6 @@ private: // to be used for detailed DEBUG output only const LArEM_ID* m_emId; - ToolHandle<LArCablingService> m_larCablingSvc; // For useRamp = False float m_adc2mev[30]; diff --git a/TestBeam/TBRec/src/TBLArRawChannelBuilder.cxx b/TestBeam/TBRec/src/TBLArRawChannelBuilder.cxx index 647517b037bee55e57ba5bd33df32077bfe1acba..c0fd74b537a865aeffde990d75b993077f285314 100644 --- a/TestBeam/TBRec/src/TBLArRawChannelBuilder.cxx +++ b/TestBeam/TBRec/src/TBLArRawChannelBuilder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TBLArRawChannelBuilder.h" @@ -15,7 +15,6 @@ using CLHEP::nanosecond; TBLArRawChannelBuilder::TBLArRawChannelBuilder (const std::string& name, ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), m_roiMap(0), - m_larCablingSvc(0), m_emId(0), m_fcalId(0), m_hecId(0), @@ -56,7 +55,7 @@ StatusCode TBLArRawChannelBuilder::initialize(){ m_fcalId=caloIdMgr->getFCAL_ID(); m_hecId=caloIdMgr->getHEC_ID(); - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); ATH_CHECK( detStore()->retrieve(m_onlineHelper, "LArOnlineID") ); @@ -79,6 +78,13 @@ StatusCode TBLArRawChannelBuilder::initialize(){ StatusCode TBLArRawChannelBuilder::execute() { ATH_MSG_DEBUG ( "In execute" ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR( "Do not hame cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } + //Pointer to input data container const LArDigitContainer* digitContainer;//Pointer to LArDigitContainer @@ -231,7 +237,7 @@ StatusCode TBLArRawChannelBuilder::execute() { // Now must get subdetector ID and feed in here ... float ADCtoMeV = 10.0; - const Identifier id = m_larCablingSvc->cnvToIdentifier(chid); + const Identifier id = cabling->cnvToIdentifier(chid); if (m_emId->is_em_barrel(id)) { // m_emId->sampling(id); ADCtoMeV = m_ADCtoMeVEMB[0]; diff --git a/TestBeam/TBRec/src/TBLArRawChannelBuilder.h b/TestBeam/TBRec/src/TBLArRawChannelBuilder.h index 57ef0dbd68e7fdfabb3258d51ef7036b11ac89c0..db994c499ed25029adf6fce13ea65d5ccd37e980 100644 --- a/TestBeam/TBRec/src/TBLArRawChannelBuilder.h +++ b/TestBeam/TBRec/src/TBLArRawChannelBuilder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBREC_TBLARRAWCHANNELBUILDER_H @@ -12,7 +12,7 @@ #include "LArRawUtils/LArRawOrdering.h" #include "LArRawEvent/LArDigitContainer.h" #include "LArRawEvent/LArRawChannelContainer.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArOnOffIdMapping.h" #include "CaloIdentifier/CaloIdManager.h" #include "CaloIdentifier/LArEM_ID.h" @@ -36,7 +36,8 @@ public: private: //Services & Tools LArRoI_Map* m_roiMap; - LArCablingService *m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + const LArEM_ID* m_emId; const LArFCAL_ID* m_fcalId; const LArHEC_ID* m_hecId; diff --git a/TestBeam/TBRec/src/TBNoiseWrite.cxx b/TestBeam/TBRec/src/TBNoiseWrite.cxx index decaa9becc089d1737b5a5aad6bab4a9555a7cf3..74ffabe70c245eb3c2bc01208754398bdcf5e7dd 100644 --- a/TestBeam/TBRec/src/TBNoiseWrite.cxx +++ b/TestBeam/TBRec/src/TBNoiseWrite.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // class TBNoiseWrite // Write ROOT Tree with noise in randomly triggered @@ -37,7 +37,6 @@ TBNoiseWrite::TBNoiseWrite(const std::string& name, m_tree(0), //m_calo_id(0), //m_calo_dd_man(0), - //m_larCablingSvc(0), m_txtFileWithXY("xcryo_ytable.txt") { declareProperty("CellContainer",m_caloCellContainerName); diff --git a/TestBeam/TBRec/src/TBNoiseWrite.h b/TestBeam/TBRec/src/TBNoiseWrite.h index 417deb40991074019073b4a30f5b2cc649afae99..6f8d71130088826cffda11536461476025ea3e27 100644 --- a/TestBeam/TBRec/src/TBNoiseWrite.h +++ b/TestBeam/TBRec/src/TBNoiseWrite.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBREC_TBNOISEWRITE_H @@ -18,7 +18,6 @@ class CaloCell_ID; class CaloDetDescrManager; class IToolSvc; class LArDigitContainer; -class LArCablingService; class TBNoiseWrite: public AthAlgorithm { public: @@ -65,7 +64,6 @@ class TBNoiseWrite: public AthAlgorithm { //const CaloCell_ID* m_calo_id; //const CaloDetDescrManager* m_calo_dd_man; - //LArCablingService* m_larCablingSvc; /** Text file containing xCryo and yTable */ std::string m_txtFileWithXY; diff --git a/TestBeam/TBRec/src/TBTree_CaloClusterH6.cxx b/TestBeam/TBRec/src/TBTree_CaloClusterH6.cxx index 9b0d22af30720a7b97855cf2637f2575a4f91fa9..6a0e92d734e3537ac3695263191ec45b7b7c973f 100644 --- a/TestBeam/TBRec/src/TBTree_CaloClusterH6.cxx +++ b/TestBeam/TBRec/src/TBTree_CaloClusterH6.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // class TBTree_CaloClusterH6 // make ROOT Tree for H6 CaloCluster @@ -34,7 +34,6 @@ #include "LArRawEvent/LArDigitContainer.h" #include "LArElecCalib/ILArPedestal.h" #include "LArElecCalib/ILArADC2MeVTool.h" -#include "LArCabling/LArCablingService.h" #include "TBEvent/TBEventInfo.h" #include "TBEvent/TBTrack.h" @@ -127,7 +126,6 @@ TBTree_CaloClusterH6::TBTree_CaloClusterH6(const std::string& name, m_noiseTool(0), m_OFNoiseSupp(0), m_adc2mevTool(0), - m_larCablingSvc(0), m_txtFileWithXY("xcryo_ytable.txt") { declareProperty("ClusterContainer",m_clusterContainerName); @@ -324,7 +322,7 @@ StatusCode TBTree_CaloClusterH6::initialize() ATH_CHECK( toolSvc->retrieveTool(ntool.type(), ntool.name(), m_OFNoiseSupp) ); ATH_MSG_INFO ("Noise Tool " << m_OFNoiseSuppToolName << " is selected!" ); // Translate offline ID into online ID - ATH_CHECK( toolSvc->retrieveTool("LArCablingService",m_larCablingSvc) ); + ATH_CHECK( m_cablingKey.initialize() ); } ATH_MSG_INFO ( "end of initialize()" ); @@ -901,6 +899,12 @@ StatusCode TBTree_CaloClusterH6::getNoise(CaloCluster const * const cluster) { ATH_CHECK( detStore()->retrieve(larPedestal) ); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling{*cablingHdl}; + if(!cabling) { + ATH_MSG_ERROR ( "Do not have cabling mapping from key " << m_cablingKey.key() ); + return StatusCode::FAILURE; + } // Loop over cluster cells CaloCluster::cell_iterator itc=cluster->cell_begin(); for (; itc!=cluster->cell_end(); itc++) { @@ -911,7 +915,7 @@ StatusCode TBTree_CaloClusterH6::getNoise(CaloCluster const * const cluster) { const CaloGain::CaloGain gain= cell->gain(); HWIdentifier chid; try { - chid = m_larCablingSvc->createSignalChannelID(id); + chid = cabling->createSignalChannelID(id); } catch ( const LArID_Exception& except) { ATH_MSG_ERROR("HWId not found: "<<(const std::string&)except); diff --git a/TestBeam/TBRec/src/TBTree_CaloClusterH6.h b/TestBeam/TBRec/src/TBTree_CaloClusterH6.h index a132b01ceb1a4258bc2a6e126cd541c12da7f093..64de3b4871358667b54bfe00e1787318961cabae 100644 --- a/TestBeam/TBRec/src/TBTree_CaloClusterH6.h +++ b/TestBeam/TBRec/src/TBTree_CaloClusterH6.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TBREC_TBTREE_CALOCLUSTERH6_H @@ -10,6 +10,8 @@ // Make ROOT TTree for CaloClusters for H6 CBT // #include "AthenaBaseComps/AthAlgorithm.h" +#include "LArCabling/LArOnOffIdMapping.h" + #include <TRandom.h> class StoreGateSvc; @@ -23,7 +25,6 @@ class ICaloNoiseTool; class LArDigitContainer; class ILArPedestal; class ILArADC2MeVTool; -class LArCablingService; class TBTree_CaloClusterH6: public AthAlgorithm { public: @@ -145,7 +146,7 @@ class TBTree_CaloClusterH6: public AthAlgorithm { ICaloNoiseTool* m_noiseTool; ICaloNoiseTool* m_OFNoiseSupp; const ILArADC2MeVTool* m_adc2mevTool; - LArCablingService* m_larCablingSvc; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; /** Text file containing xCryo and yTable */ std::string m_txtFileWithXY; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalEmCellContMaker.h b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalEmCellContMaker.h old mode 100755 new mode 100644 index 78b077af5b40f0a02e7e8e008d75311bb16be131..be14fe27d6cf18082ff57c225eedd894037b5b2a --- a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalEmCellContMaker.h +++ b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalEmCellContMaker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGCALOREC_ROIFCALEMCELLCONTMAKER_H @@ -48,7 +48,6 @@ class RoIFCalEmCellContMaker : public IAlgToolEFCalo { ITrigDataAccess *m_data; ToolHandle<ICalorimeterNoiseTool> m_noiseTool; - LArCablingService * m_cablingSvc; int m_do_LArCells_noise_suppression; //<! 0 (1) -> no (yes) float m_cutvalue; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalHadCellContMaker.h b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalHadCellContMaker.h old mode 100755 new mode 100644 index f8d629997cb2a4fcc9793c7de065b28f8e31b6ec..c956f81c8ba397715e7ef73d18df303b4e006e6d --- a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalHadCellContMaker.h +++ b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoIFCalHadCellContMaker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGCALOREC_ROIFCALHADCELLCONTMAKER_H @@ -48,7 +48,6 @@ class RoIFCalHadCellContMaker : public IAlgToolEFCalo { ITrigDataAccess *m_data; ToolHandle<ICalorimeterNoiseTool> m_noiseTool; - LArCablingService * m_cablingSvc; int m_do_LArCells_noise_suppression; //<! 0 (1) -> no (yes) float m_cutvalue; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArEMCellContMaker.h b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArEMCellContMaker.h old mode 100755 new mode 100644 index 538177eb36db85a7e19e72362b4373410287a376..1e49c39f19619a95ecd573f8ab564301277e5422 --- a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArEMCellContMaker.h +++ b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArEMCellContMaker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGCALOREC_ROILAREMCELLCONTMAKER_H @@ -49,7 +49,6 @@ class RoILArEMCellContMaker : public IAlgToolEFCalo { ITrigDataAccess *m_data; ToolHandle<ICalorimeterNoiseTool> m_noiseTool; - LArCablingService * m_cablingSvc; int m_do_LArCells_noise_suppression; //<! 0 (1) -> no (yes) float m_cutvalue; bool m_absEinSigma; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArHadCellContMaker.h b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArHadCellContMaker.h old mode 100755 new mode 100644 index 51ef6d7d85172f0b92885448620ecb180f6e427e..1d628b1d7a7555b2e458539f6898314eaf7158db --- a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArHadCellContMaker.h +++ b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/RoILArHadCellContMaker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGCALOREC_ROILARHADCELLCONTMAKER_H @@ -48,7 +48,6 @@ class RoILArHadCellContMaker : public IAlgToolEFCalo { ITrigDataAccess *m_data; ToolHandle<ICalorimeterNoiseTool> m_noiseTool; - LArCablingService * m_cablingSvc; int m_do_LArCells_noise_suppression; //<! 0 (1) -> no (yes) float m_cutvalue; bool m_absEinSigma; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/TrigLArNoisyROAlg.h b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/TrigLArNoisyROAlg.h old mode 100755 new mode 100644 index 1d53602df35df3dcb59bb2a046c36715fd81d686..98585935569b1ec1d0c78d1c7293bdee360f6413 --- a/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/TrigLArNoisyROAlg.h +++ b/Trigger/TrigAlgorithms/TrigCaloRec/TrigCaloRec/TrigLArNoisyROAlg.h @@ -1,7 +1,7 @@ // Hi Emacs ! this is -*- C++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -23,13 +23,15 @@ #include "CaloEvent/CaloClusterContainer.h" #include "xAODCaloEvent/CaloClusterContainer.h" #include "AthenaKernel/IOVSvcDefs.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" + class IAlgToolEFCalo; class CaloClusterCollectionProcessor; class CaloClusterProcessor; class CaloClusterContainer; class LArOnlineID; -class LArCablingService; class HWIdentifier; @@ -53,6 +55,8 @@ class TrigLArNoisyROAlg : public HLT::AllTEAlgo { StatusCode geoInit(); private: + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; std::string retrieveCellContName ( HLT::TriggerElement* outputTE ); @@ -75,7 +79,6 @@ private: double m_roiEtaLimit; const LArOnlineID* m_onlineID; - ToolHandle<LArCablingService> m_cablingService; std::map<HWIdentifier, unsigned int> m_FEB_BadChanCount; unsigned int m_BadChanPerFEB; diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalEmCellContMaker.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalEmCellContMaker.cxx old mode 100755 new mode 100644 index e19fc5f3c69eb700c744c006bc9ad52c7cdf5bbb..7cd279ad03c502284f11be4fd9363f895103a5fa --- a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalEmCellContMaker.cxx +++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalEmCellContMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -36,8 +36,7 @@ RoIFCalEmCellContMaker::RoIFCalEmCellContMaker(const std::string & type, const std::string & name, const IInterface* parent): IAlgToolEFCalo(type, name, parent), - m_data(NULL), - m_cablingSvc(NULL) + m_data(NULL) { declareProperty("DoLArCellsNoiseSuppression", m_do_LArCells_noise_suppression = 1); @@ -60,9 +59,6 @@ StatusCode RoIFCalEmCellContMaker::initialize(){ if (m_noiseTool.retrieve().isFailure()) return StatusCode::FAILURE; - StatusCode sc=toolSvc()->retrieveTool("LArCablingService",m_cablingSvc); - if (sc!=StatusCode::SUCCESS) return sc; - } else { m_noiseTool.disable(); } diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalHadCellContMaker.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalHadCellContMaker.cxx old mode 100755 new mode 100644 index 6f109ae05a7ab4dc84efd755844bb65ccd1b19c1..afdf99a2e723da705674ebea637bd3c36da438fa --- a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalHadCellContMaker.cxx +++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoIFCalHadCellContMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -35,8 +35,7 @@ RoIFCalHadCellContMaker::RoIFCalHadCellContMaker(const std::string & type, const std::string & name, const IInterface* parent): IAlgToolEFCalo(type, name, parent), - m_data(NULL), - m_cablingSvc(NULL) + m_data(NULL) { declareProperty("DoLArCellsNoiseSuppression", m_do_LArCells_noise_suppression = 1); @@ -59,9 +58,6 @@ StatusCode RoIFCalHadCellContMaker::initialize(){ if (m_noiseTool.retrieve().isFailure()) return StatusCode::FAILURE; - StatusCode sc=toolSvc()->retrieveTool("LArCablingService",m_cablingSvc); - if (sc!=StatusCode::SUCCESS) return sc; - } else { m_noiseTool.disable(); } diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArEMCellContMaker.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArEMCellContMaker.cxx old mode 100755 new mode 100644 index a266b99f43ce604fffbcb5e337fb80ade2c1825d..42741598d03f6ab50daeb536cded96e158fc08f3 --- a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArEMCellContMaker.cxx +++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArEMCellContMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -34,8 +34,7 @@ RoILArEMCellContMaker::RoILArEMCellContMaker(const std::string & type, const std::string & name, const IInterface* parent): IAlgToolEFCalo(type, name, parent), - m_data(NULL), - m_cablingSvc(NULL) + m_data(NULL) { declareProperty("DoLArCellsNoiseSuppression", m_do_LArCells_noise_suppression = 1); @@ -58,9 +57,6 @@ StatusCode RoILArEMCellContMaker::initialize(){ if (m_noiseTool.retrieve().isFailure()) return StatusCode::FAILURE; - StatusCode sc=toolSvc()->retrieveTool("LArCablingService",m_cablingSvc); - if (sc!=StatusCode::SUCCESS) return sc; - } else { m_noiseTool.disable(); } diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArHadCellContMaker.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArHadCellContMaker.cxx old mode 100755 new mode 100644 index 9e8655f1ff60b1c42915b156846ce20da778ebdd..1fd077ef110e9f61104a50c2fb4e10ada949b654 --- a/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArHadCellContMaker.cxx +++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/RoILArHadCellContMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -35,8 +35,7 @@ RoILArHadCellContMaker::RoILArHadCellContMaker(const std::string & type, const std::string & name, const IInterface* parent): IAlgToolEFCalo(type, name, parent), - m_data(NULL), - m_cablingSvc(NULL) + m_data(NULL) { declareProperty("DoLArCellsNoiseSuppression", m_do_LArCells_noise_suppression = 1); @@ -59,9 +58,6 @@ StatusCode RoILArHadCellContMaker::initialize(){ if (m_noiseTool.retrieve().isFailure()) return StatusCode::FAILURE; - StatusCode sc=toolSvc()->retrieveTool("LArCablingService",m_cablingSvc); - if (sc!=StatusCode::SUCCESS) return sc; - } else { m_noiseTool.disable(); } diff --git a/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigLArNoisyROAlg.cxx b/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigLArNoisyROAlg.cxx old mode 100755 new mode 100644 index b30931bcdc9534afe7efb7aa4e6edbf4ba92212e..4236625579518a98eee2bb4257cf286d5bec3a98 --- a/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigLArNoisyROAlg.cxx +++ b/Trigger/TrigAlgorithms/TrigCaloRec/src/TrigLArNoisyROAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -35,7 +35,6 @@ #include "TrigTimeAlgs/TrigTimerSvc.h" // #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" //#include "xAODCaloEvent/CaloClusterAuxContainer.h" #include "xAODTrigCalo/CaloClusterTrigAuxContainer.h" @@ -47,7 +46,6 @@ class ISvcLocator; TrigLArNoisyROAlg::TrigLArNoisyROAlg(const std::string& name, ISvcLocator* pSvcLocator) : HLT::AllTEAlgo(name, pSvcLocator), m_useCachedResult(false), m_roiEtaLimit(4.8), m_onlineID(0), - m_cablingService("LArCablingService"), m_AllTECaloClusterContainer(NULL) { @@ -106,8 +104,8 @@ StatusCode TrigLArNoisyROAlg::geoInit(){ msg(MSG::ERROR) << "Unable to retrieve LArOnlineID " << endmsg; return StatusCode::FAILURE; } - if ( m_cablingService.retrieve().isFailure() ){ - msg(MSG::ERROR) << "Unable to retrieve LArCablingService " << endmsg; + if ( m_cablingKey.initialize().isFailure() ){ + msg(MSG::ERROR) << "Unable to initialize LArCabling with key " << m_cablingKey.key() << endmsg; return StatusCode::FAILURE; } return StatusCode::SUCCESS; @@ -137,6 +135,12 @@ HLT::ErrorCode TrigLArNoisyROAlg::hltExecute( std::vector<std::vector<HLT::Trigg beforeExecMonitors().ignore(); + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling = *cablingHdl; + if(!cabling) { + ATH_MSG_ERROR("Do not have cabling map !!"); + return HLT::ERROR; + } //get all input TEs std::string cellcontname; @@ -190,7 +194,7 @@ HLT::ErrorCode TrigLArNoisyROAlg::hltExecute( std::vector<std::vector<HLT::Trigg if ( (cell->caloDDE()->getSubCalo()) != CaloCell_Base_ID::LAREM ) continue; Identifier id = cell->ID(); - HWIdentifier hwid = m_cablingService->createSignalChannelID(id); + HWIdentifier hwid = cabling->createSignalChannelID(id); HWIdentifier febid = m_onlineID->feb_Id(hwid); unsigned int channel = m_onlineID->channel(hwid); if ( msgLvl() <= MSG::DEBUG ) { diff --git a/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromCells.h b/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromCells.h index 9bf90a49449f21db640b5d54e3595325fd11622a..d3955a352bc75632ed76b13703c588cba9e2f509 100644 --- a/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromCells.h +++ b/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromCells.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGEFMISSINGET_EFMISSINGETFROMCELLS_H @@ -93,7 +93,6 @@ class EFMissingETFromCells : public EFMissingETBaseTool // use ToolHandle<ICaloNoiseTool> if extended interface is needed ToolHandle<ICalorimeterNoiseTool> m_noiseTool; //<! noise suppression - LArCablingService* m_cablingSvc; // New way with TrigDataAccess doing BS conversion // iterators to LArCells. Note the different type from the above diff --git a/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromFEBHeader.h b/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromFEBHeader.h index 25f614c5621423c723fc58710c52c3fd0cdfc07b..ce7952e12290d2e026ab3ad90f321f25764858db 100644 --- a/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromFEBHeader.h +++ b/Trigger/TrigAlgorithms/TrigEFMissingET/TrigEFMissingET/EFMissingETFromFEBHeader.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGEFMISSINGET_EFMISSINGETFROMFEBHEADER_H @@ -19,7 +19,7 @@ PURPOSE: Data preparation from FEB Headers (Ex/Ey) #include "TrigEFMissingET/EFMissingETBaseTool.h" #include "TrigT2CaloCommon/TrigDataAccess.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArReadoutModuleService.h" #include "CaloIdentifier/CaloCell_ID.h" @@ -88,7 +88,7 @@ class EFMissingETFromFEBHeader : public EFMissingETBaseTool LArFebEnergyCollection::const_iterator m_Febit; // things needed to find the sampling: - LArCablingService* m_cablingSvc; + LArCablingLegacyService* m_cablingSvc; const LArOnlineID* m_LArOnlineID; const CaloCell_ID* m_CaloCell_ID; LArReadoutModuleService m_larROModSvc; diff --git a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromCells.cxx b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromCells.cxx index ba05fc9ddca236fc5c130baa97ca70fc72345765..b2013e11e81b7f589ee1676c88240ece4d04123e 100644 --- a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromCells.cxx +++ b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromCells.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -55,7 +55,6 @@ EFMissingETFromCells::EFMissingETFromCells(const std::string& type, m_maxThreshold=0; m_data = NULL; - m_cablingSvc = NULL; m_fextype = FexType::CELL; @@ -107,11 +106,6 @@ StatusCode EFMissingETFromCells::initialize() return StatusCode::FAILURE; } - StatusCode sc=toolSvc()->retrieveTool("LArCablingService", m_cablingSvc); - if (sc!=StatusCode::SUCCESS) { - ATH_MSG_FATAL( "Failed to retrieve LArCablingService " ); - return StatusCode::FAILURE; - } } m_maxThreshold=m_rmsOneSided; diff --git a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromFEBHeader.cxx b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromFEBHeader.cxx index a966f478c61ba81b10b3cc9b7b3e1824a74e2288..b5c9e11b80e57198112b873a2bfdde60ed97860c 100644 --- a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromFEBHeader.cxx +++ b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromFEBHeader.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -81,8 +81,8 @@ StatusCode EFMissingETFromFEBHeader::initialize() return StatusCode::FAILURE; } - if(toolSvc()->retrieveTool("LArCablingService",m_cablingSvc).isFailure()) { - ATH_MSG_FATAL( "Could not get LArCablingService" ); + if(toolSvc()->retrieveTool("LArCablingLegacyService",m_cablingSvc).isFailure()) { + ATH_MSG_FATAL( "Could not get LArCablingLegacyService" ); return StatusCode::FAILURE; } diff --git a/Trigger/TrigAlgorithms/TrigL2MissingET/TrigL2MissingET/T2CaloMissingET.h b/Trigger/TrigAlgorithms/TrigL2MissingET/TrigL2MissingET/T2CaloMissingET.h old mode 100755 new mode 100644 index 2eda10f02fa253a023dfd0ca8114337340eb7019..234aca85af0bbb37b8fe018ec6170f2a699436cc --- a/Trigger/TrigAlgorithms/TrigL2MissingET/TrigL2MissingET/T2CaloMissingET.h +++ b/Trigger/TrigAlgorithms/TrigL2MissingET/TrigL2MissingET/T2CaloMissingET.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /********************************************************************************** @@ -25,12 +25,15 @@ #include "GaudiKernel/ToolHandle.h" #include "LArRecEvent/LArFebEnergyCollection.h" #include "IRegionSelector/RegSelEnums.h" -#include "LArCabling/LArCablingService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArIdentifier/LArReadoutModuleService.h" #include "CaloIdentifier/CaloCell_ID.h" #include "TrigT2CaloCommon/ITrigDataAccess.h" #include "TrigTimeAlgs/ITrigTimerSvc.h" +#include "StoreGate/ReadCondHandleKey.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "LArRecConditions/LArFebRodMapping.h" + #include "xAODTrigMissingET/TrigMissingET.h" @@ -75,6 +78,10 @@ class T2CaloMissingET : public HLT::AllTEAlgo HLT::ErrorCode prepareRobRequests(const std::vector<HLT::TEConstVec>& inputs ); private: + + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; + SG::ReadCondHandleKey<LArFebRodMapping> m_RodKey{this, "FebRodKey", "LArFebRodMap", "SG ROD mapping key"}; + bool m_useCachedResult; std::string m_featureLabel; //!< label for the MET feature in the HLT Navigation @@ -95,7 +102,6 @@ class T2CaloMissingET : public HLT::AllTEAlgo xAOD::TrigMissingET* m_met_feature; //!< internal caching: missing E_T feature of the first execution HLT::TriggerElement* m_cachedTE; //!< internal caching: output TE from the first exectution - LArCablingService *m_cablingSvc; const LArOnlineID *m_LArOnlineID; const CaloCell_ID *m_CaloCell_ID; LArReadoutModuleService m_larROModSvc; diff --git a/Trigger/TrigAlgorithms/TrigL2MissingET/src/T2CaloMissingET.cxx b/Trigger/TrigAlgorithms/TrigL2MissingET/src/T2CaloMissingET.cxx old mode 100755 new mode 100644 index bc7e2b6c5a92957e5c42b1d053d46105104e5e73..56a950e3ca4342700153752eecc2469498e15e8e --- a/Trigger/TrigAlgorithms/TrigL2MissingET/src/T2CaloMissingET.cxx +++ b/Trigger/TrigAlgorithms/TrigL2MissingET/src/T2CaloMissingET.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ******************************************************************** @@ -46,7 +46,6 @@ T2CaloMissingET::T2CaloMissingET(const std::string& name, ISvcLocator* pSvcLocat m_timersvc("TrigTimerSvc/TrigTimerSvc","T2CaloMissingET"), m_met_feature(NULL), m_cachedTE(NULL), - m_cablingSvc(NULL), m_LArOnlineID(NULL), m_CaloCell_ID(NULL) { @@ -110,11 +109,18 @@ HLT::ErrorCode T2CaloMissingET::hltInitialize(){ m_detid.push_back(FCALHAD); } - if(toolSvc()->retrieveTool("LArCablingService",m_cablingSvc).isFailure()) { - *m_log << MSG::FATAL << "Could not get LArCablingService" << endmsg; +#ifdef USECABLINGSERVICE + if(m_cablingKey.initialize().isFailure()) { + *m_log << MSG::FATAL << "Could not get LAr Cabling map with key " << m_cablingKey.key() << endmsg; return HLT::BAD_JOB_SETUP; } + if(m_RodKey.initialize().isFailure()) { + *m_log << MSG::FATAL << "Could not get LAr FebRod map with key " << m_RodKey.key() << endmsg; + return HLT::BAD_JOB_SETUP; + } +#endif + StoreGateSvc* detStore = 0; if (service( "DetectorStore", detStore ).isFailure()) { *m_log << MSG::FATAL << "Unable to locate DetectorStore" << endmsg; @@ -280,6 +286,20 @@ HLT::ErrorCode T2CaloMissingET::hltExecute(std::vector<std::vector<HLT::TriggerE if ( debug ) (*m_log) << MSG::DEBUG << "Size of detid:" << m_detid.size() << endmsg; +#ifdef USECABLINGSERVICE + SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; + const LArOnOffIdMapping* cabling = *cablingHdl; + if(!cabling) { + (*m_log) << MSG::ERROR << "Do not have cabling map !" << endmsg; + return HLT::ERROR; + } + SG::ReadCondHandle<LArFebRodMapping> rodHdl{m_RodKey}; + const LArFebRodMapping* rodmap = *rodHdl; + if(!rodmap) { + (*m_log) << MSG::ERROR << "Do not have LAr FEB-ROD map !" << endmsg; + return HLT::ERROR; + } +#endif //bool BSerrors = false; //if (m_data->report_error()) BSerrors = true; @@ -310,7 +330,7 @@ HLT::ErrorCode T2CaloMissingET::hltExecute(std::vector<std::vector<HLT::TriggerE int ichannel=0; do { HWIdentifier onlChId = m_LArOnlineID->channel_Id(febid2,ichannel); - offChId = m_cablingSvc->cnvToIdentifier(onlChId); + offChId = cabling->cnvToIdentifier(onlChId); ichannel++; if (ichannel>127) { (*m_log) << MSG::ERROR @@ -320,7 +340,7 @@ HLT::ErrorCode T2CaloMissingET::hltExecute(std::vector<std::vector<HLT::TriggerE } while(!offChId.is_valid()); int caloSamp = m_CaloCell_ID->sampling(offChId); - HWIdentifier modId = m_cablingSvc->getReadoutModuleID(febid2); //ReadOutModuleId + HWIdentifier modId = rodmap->getReadoutModuleID(febid2); //ReadOutModuleId int subdet = m_larROModSvc.em_hec_fcal(modId); // em=0, hec=1, fcal=2 int caloId = m_larROModSvc.barrel_ec(modId); // barrel:0 or EndCAp:1 diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/LArCellCont.h b/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/LArCellCont.h old mode 100755 new mode 100644 index 1777313c1f1beb17836bc317c49ebc5b183e0dab..596b05ff65b39d9e25148ac9cfbf34b7365ac1a6 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/LArCellCont.h +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/LArCellCont.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -19,7 +19,7 @@ #include "LArRecEvent/LArCellCollection.h" #include "TrigT2CaloCommon/LArRodIdHash.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArByteStream/Hid2RESrcID.h" #include "Identifier/HWIdentifier.h" #include "CaloInterface/ICaloLumiBCIDTool.h" @@ -29,7 +29,6 @@ class EventInfo; //class StoreGateSvc; class ILArBadChannelMasker; class ILArBadChanTool; -class LArCablingService; static std::vector<float> corrBCIDref_example; /** Class which contains statically allocated LArCellCollections */ @@ -127,7 +126,7 @@ private: unsigned int m_bcid; /** Needs also the LArCablingSvc */ - LArCablingService* m_larCablingSvc; + LArCablingLegacyService* m_larCablingSvc; /** flag to only update cache when trying to apply corrections */ bool m_BCIDcache; }; diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArCellCont.cxx b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArCellCont.cxx old mode 100755 new mode 100644 index 01450e56d6eb9f8b20b2d185ab89599c8d0e6f46..746d4c9d5788c297f2dacbbb2e709636e55faf11 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArCellCont.cxx +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArCellCont.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -82,7 +82,7 @@ std::cout << "LArCellCont \t\t DEBUG \t in initialize" << std::endl; // Needs to find each FEB and attach it to a collection //LArCablingService* larCablingSvc; //sc = toolSvc->retrieveTool("LArCablingService",larCablingSvc); -sc = toolSvc->retrieveTool("LArCablingService",m_larCablingSvc); +sc = toolSvc->retrieveTool("LArCablingLegacyService",m_larCablingSvc); if (sc.isFailure()){ std::cout << "LArCellCont\t\t DEBUG \t" << "Problems to retrieve LArCablingSvc" << std::endl; diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArRodIdHash.cxx b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArRodIdHash.cxx old mode 100755 new mode 100644 index d6fb4d64ae66cfb57257d6928720910760c979a8..a9a977fe63473d65f2681abdde5b2cd2dccd74b6 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArRodIdHash.cxx +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/LArRodIdHash.cxx @@ -1,9 +1,9 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT2CaloCommon/LArRodIdHash.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/ISvcLocator.h" #include "GaudiKernel/IToolSvc.h" @@ -42,10 +42,10 @@ void LArRodIdHash::initialize( int offset ) { return; } - LArCablingService *larCablingSvc; - sc = toolSvc->retrieveTool("LArCablingService",larCablingSvc); + LArCablingLegacyService *larCablingSvc; + sc = toolSvc->retrieveTool("LArCablingLegacyService",larCablingSvc); if(sc.isFailure()) - {std::cerr << "LArRawChannelContainer::add ERROR: Can not retrieve LArCablingSvc" << std::endl; + {std::cerr << "LArRawChannelContainer::add ERROR: Can not retrieve LArCablingLegacyService" << std::endl; return; } diff --git a/Trigger/TrigAlgorithms/TrigT2CaloJet/TrigT2CaloJet/T2CaloJetGridFromCells.h b/Trigger/TrigAlgorithms/TrigT2CaloJet/TrigT2CaloJet/T2CaloJetGridFromCells.h old mode 100755 new mode 100644 index c98c9446c937321fbe6e21a201ad982750194748..3ff3ff22a1d01a58d9caa519207eb91497ff0aeb --- a/Trigger/TrigAlgorithms/TrigT2CaloJet/TrigT2CaloJet/T2CaloJetGridFromCells.h +++ b/Trigger/TrigAlgorithms/TrigT2CaloJet/TrigT2CaloJet/T2CaloJetGridFromCells.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGT2CALOJET_T2CALOJETGRIDFROMCELLS_H @@ -102,7 +102,7 @@ class T2CaloJetGridFromCells : public T2CaloJetBaseTool bool m_doHECcellQualityCleaning; int m_cellQualityThresholdHEC; - ToolHandle<LArCablingService> m_cablingSvc; + ToolHandle<LArCablingLegacyService> m_cablingSvc; ToolHandle<ICalorimeterNoiseTool> m_noiseTool; std::vector< EtaPhiRectangle > m_forbiddenRegions; //!< regions to be skipped diff --git a/Trigger/TrigAlgorithms/TrigT2CaloJet/src/T2CaloJetGridFromCells.cxx b/Trigger/TrigAlgorithms/TrigT2CaloJet/src/T2CaloJetGridFromCells.cxx old mode 100755 new mode 100644 index e65d61d84e52bd079d3d57f4b62c5c8350d6bbdc..7a795861b106da54ddcd79e28e52e03f0305b200 --- a/Trigger/TrigAlgorithms/TrigT2CaloJet/src/T2CaloJetGridFromCells.cxx +++ b/Trigger/TrigAlgorithms/TrigT2CaloJet/src/T2CaloJetGridFromCells.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ /******************************************************************** @@ -34,7 +34,7 @@ T2CaloJetGridFromCells::T2CaloJetGridFromCells(const std::string& type, const IInterface* parent): T2CaloJetBaseTool(type, name, parent), m_noiseCutValue(2.) , - m_cablingSvc("LArCablingService"), + m_cablingSvc("LArCablingLegacyService"), m_noiseTool("CaloNoiseTool/CaloNoiseToolDefault"), m_forbiddenRegions(0), m_timerSvc(0) diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.cxx index 87874b654c31e0ccb981d0ea3d5e241220c691b3..a6b8e6a31baa509b137178eeef6007371ef923dd 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.cxx +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -15,7 +15,6 @@ #include "DumpAll.h" #include "CaloEvent/CaloCellContainer.h" #include "LArRawEvent/LArDigitContainer.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "CaloIdentifier/CaloCell_SuperCell_ID.h" #include "CaloIdentifier/CaloIdManager.h" #include "xAODTracking/VertexContainer.h" @@ -31,7 +30,7 @@ #include "TNtuple.h" #include <math.h> -DumpAll::DumpAll( const std::string& name, ISvcLocator* pSvcLocator ) : AthAlgorithm (name, pSvcLocator), m_cabling("LArSuperCellCablingTool") { +DumpAll::DumpAll( const std::string& name, ISvcLocator* pSvcLocator ) : AthAlgorithm (name, pSvcLocator) { declareProperty("InputClusterName", m_inputClusterName = "SCluster" ); declareProperty("InputLvl1Name", m_inputLvl1Name = "LVL1EmTauRoIs" ); } @@ -116,11 +115,6 @@ StatusCode DumpAll::initialize(){ m_file->cd("/"); - // for cell <-> SCell comparison - if ( m_cabling.retrieve().isFailure() ){ - msg << MSG::ERROR << "cannot perform comparisons between SuperCells and digits" << endmsg; - } - return StatusCode::SUCCESS; } diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.h b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.h index f230b68b09317bbcd2b0070a55106c4ccb9f1272..aff3cda9c5b04eb2ca8eb5b75f9ad4e2a4b91aa0 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.h +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/DumpAll.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -26,7 +26,6 @@ class TH1I; class TH1F; class TH2F; class TTree; -class LArSuperCellCablingTool; class DumpAll : public AthAlgorithm @@ -43,8 +42,6 @@ public : private : - /** For cell <-> SCell comparisons */ - ToolHandle<LArSuperCellCablingTool> m_cabling; /** base file */ TFile* m_file; /** base histograms about super-cells */ diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.cxx index 46dc8b3fec5e22634d3d2f7c6454856110b5b3f2..f1f4b2661800750a88fc9ba977d49557b83dc03f 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.cxx +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -15,7 +15,6 @@ #include "SimpleLArDigitsChecks.h" #include "CaloEvent/CaloCellContainer.h" #include "LArRawEvent/LArDigitContainer.h" -#include "LArCabling/LArSuperCellCablingTool.h" #include "CaloIdentifier/CaloCell_SuperCell_ID.h" #include "CaloIdentifier/CaloIdManager.h" #include "xAODTracking/VertexContainer.h" @@ -25,7 +24,7 @@ #include "TH1I.h" #include <math.h> -SimpleLArDigitsChecks::SimpleLArDigitsChecks( const std::string& name, ISvcLocator* pSvcLocator ) : AthAlgorithm (name, pSvcLocator), m_cabling("LArSuperCellCablingTool") { +SimpleLArDigitsChecks::SimpleLArDigitsChecks( const std::string& name, ISvcLocator* pSvcLocator ) : AthAlgorithm (name, pSvcLocator) { } SimpleLArDigitsChecks::~SimpleLArDigitsChecks(){} @@ -120,10 +119,7 @@ StatusCode SimpleLArDigitsChecks::initialize(){ m_file->cd("/"); - // for cell <-> SCell comparison - if ( m_cabling.retrieve().isFailure() ){ - msg << MSG::ERROR << "cannot perform comparisons between SuperCells and digits" << endmsg; - } + CHECK(m_cablingSCKey.initialize()); return StatusCode::SUCCESS; } @@ -139,22 +135,28 @@ StatusCode SimpleLArDigitsChecks::finalize(){ StatusCode SimpleLArDigitsChecks::execute(){ MsgStream msg(msgSvc(), name()); - msg << MSG::DEBUG << "execute SimpleLArDigitsChecks" << endmsg; + ATH_MSG_DEBUG( "execute SimpleLArDigitsChecks" ); const CaloCellContainer* scells; const LArDigitContainer* allcalo(NULL); if ( evtStore()->retrieve(scells,"SCell").isFailure() ){ - msg << MSG::WARNING << "did not find cell container" << endmsg; + ATH_MSG_WARNING( "did not find cell container" ); return StatusCode::SUCCESS; } if ( evtStore()->retrieve(allcalo,"LArDigitSCL1").isFailure() ){ - msg << MSG::WARNING << "did not find lardigit container for regular cells" << endmsg; + ATH_MSG_WARNING( "did not find lardigit container for regular cells" ); return StatusCode::SUCCESS; } const xAOD::VertexContainer* nvtx(NULL); if ( evtStore()->retrieve(nvtx,"PrimaryVertices").isFailure() ) { - msg << MSG::WARNING << "did not find Vectices container" << endmsg; + ATH_MSG_WARNING( "did not find Vectices container" ); return StatusCode::SUCCESS; } + SG::ReadCondHandle<LArOnOffIdMapping> scHdl{m_cablingSCKey}; + const LArOnOffIdMapping* scCont{*scHdl}; + if(!scCont) { + ATH_MSG_WARNING("Do not have mapping object " << m_cablingSCKey.key()); + return StatusCode::SUCCESS; + } unsigned int count_sCells=0; unsigned int count_sCells_Layer0=0; unsigned int count_sCells_Layer1=0; @@ -235,7 +237,7 @@ StatusCode SimpleLArDigitsChecks::execute(){ if ( index > -1 ) { m_EtSCells_perLayer [index]->Fill( scell->et() ); if ( scell->et() > thre ) { - HWIdentifier hwid = m_cabling->createSignalChannelIDFromHash( scell->caloDDE()->calo_hash() ); + HWIdentifier hwid = scCont->createSignalChannelIDFromHash( scell->caloDDE()->calo_hash() ); for(auto digit : *allcalo) { if ( digit->hardwareID() != hwid ) continue; int max=0; diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.h b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.h index 0449a5d86ef0fde179250b6a6c4929eddc9b4a6e..f27b4b16d63fa72b47f1d58558d50d69dd21ccbb 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.h +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/SimpleLArDigitsChecks.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -18,6 +18,9 @@ #include "AthenaBaseComps/AthAlgorithm.h" #include "GaudiKernel/ToolHandle.h" +#include "LArCabling/LArOnOffIdMapping.h" +#include "StoreGate/ReadCondHandleKey.h" + class CaloCellContainer; class CaloCell; class LArDigit; @@ -25,8 +28,6 @@ class TFile; class TH1I; class TH1F; class TH2F; -class LArSuperCellCablingTool; - class SimpleLArDigitsChecks : public AthAlgorithm { @@ -41,8 +42,7 @@ public : private : - /** For cell <-> SCell comparisons */ - ToolHandle<LArSuperCellCablingTool> m_cabling; + SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingSCKey{this,"SCCablingKey","LArOnOffIdMapSC","SG Key of SC LArOnOffIdMapping object"}; /** base file */ TFile* m_file; /** base histograms about super-cells */ diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloFEBTool.h b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloFEBTool.h index 735f8b44cddd8bef747817902d3430b21aaba47a..68b13c64e86edf67155b61902146e722e2bb0ad5 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloFEBTool.h +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloFEBTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef HLTCALOFEBTOOL_H @@ -13,7 +13,7 @@ class StoreGateSvc; class IAlgToolEFCalo; -class LArCablingService; +class LArCablingLegacyService; class LArOnlineID; class MsgStream; class ITrigDataAccess; @@ -48,7 +48,7 @@ private: /** use or not ntuples */ bool m_ntuple; const LArOnlineID * m_onlineHelper; - ToolHandle<LArCablingService> m_cablingSvc; + ToolHandle<LArCablingLegacyService> m_cablingSvc; ITrigDataAccess *m_data; /** Noise tool for offline cell by cell check */ ToolHandle<ICaloNoiseTool> m_noisetool; diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloTool.h b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloTool.h index 6e27f4c385ef7627029a9f6da7711c77cdc88908..55c12114f11f9fe3764ff299c5d61876f9efb85e 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloTool.h +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -10,7 +10,7 @@ class StoreGateSvc; class IAlgToolEFCalo; -class LArCablingService; +class LArCablingLegacyService; class LArOnlineID; class TileID; @@ -42,7 +42,7 @@ private: /** use or not ntuples */ bool m_ntuple; const LArOnlineID * m_onlineHelper; - ToolHandle<LArCablingService> m_cablingSvc; + ToolHandle<LArCablingLegacyService> m_cablingSvc; const TileID* m_tileID; diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloToolL2.h b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloToolL2.h index 8f11a7ea685268604e74b423d5b399ade83b2436..4bfa794505bcd4b6601259250f2ff6e6ff4097c3 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloToolL2.h +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/TrigCaloMonitoring/HLTCaloToolL2.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -9,7 +9,7 @@ // Simple description to come class StoreGateSvc; -class LArCablingService; +class LArCablingLegacyService; class LArOnlineID; class TileID; @@ -40,7 +40,7 @@ private: /** List of keys to search for cell containers */ std::vector<std::string > m_listOfCellsKeys; const LArOnlineID * m_onlineHelper; - ToolHandle<LArCablingService> m_cablingSvc; + ToolHandle<LArCablingLegacyService> m_cablingSvc; const TileID* m_tileID; diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloFEBTool.cxx b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloFEBTool.cxx index 609eaf47e5571ba9c0ee49f0f98cd96a66e1c2c6..da0752ae2fd2093dfc845227c7bb87f4924215d4 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloFEBTool.cxx +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloFEBTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigCaloMonitoring/HLTCaloFEBTool.h" @@ -10,7 +10,7 @@ #include "LArIdentifier/LArIdManager.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "TrigSteeringEvent/TrigRoiDescriptor.h" @@ -28,7 +28,7 @@ HLTCaloFEBTool::HLTCaloFEBTool(const std::string & type, const std::string & name, const IInterface* parent) : IHLTMonTool(type,name,parent), m_tcrAlgTools(this), m_onlineHelper(0), - m_cablingSvc("LArCablingService"), + m_cablingSvc("LArCablingLegacyService"), m_data(NULL), m_noisetool("CaloNoiseTool/CaloNoiseToolDefault"), m_threshold(100.0), diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloTool.cxx b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloTool.cxx index cc277d37f2779dc2aded8e22a13cfa95b72039f5..9fc19bb28ab72692031fe59b5ebbfe25c4e3149f 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloTool.cxx +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigCaloMonitoring/HLTCaloTool.h" @@ -10,7 +10,7 @@ #include "LArIdentifier/LArIdManager.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloIdentifier/TileID.h" #include "TrigSteeringEvent/TrigRoiDescriptor.h" @@ -24,7 +24,7 @@ HLTCaloTool::HLTCaloTool(const std::string & type, const std::string & name, const IInterface* parent) : IHLTMonTool(type,name,parent), m_tcrAlgTools(this), m_onlineHelper(NULL), - m_cablingSvc("LArCablingService"), + m_cablingSvc("LArCablingLegacyService"), m_tileID(NULL) { declareProperty ("TCRTools", m_tcrAlgTools); diff --git a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloToolL2.cxx b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloToolL2.cxx index e5f5305b2792912d92c85ed1749b70c6ef088b76..af2f8de115c203ce28dedc8263fa5502fd0d80fc 100644 --- a/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloToolL2.cxx +++ b/Trigger/TrigMonitoring/TrigCaloMonitoring/src/HLTCaloToolL2.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigCaloMonitoring/HLTCaloToolL2.h" @@ -9,7 +9,7 @@ #include "LArIdentifier/LArIdManager.h" #include "LArIdentifier/LArOnlineID.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "CaloIdentifier/TileID.h" #include "TH1F.h" @@ -19,7 +19,7 @@ HLTCaloToolL2::HLTCaloToolL2(const std::string & type, const std::string & name, const IInterface* parent) : IHLTMonTool(type,name,parent), m_onlineHelper(NULL), - m_cablingSvc("LArCablingService"), + m_cablingSvc("LArCablingLegacyService"), m_tileID(NULL) { declareProperty ("DoNtuple", m_ntuple = false); diff --git a/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloCells2TriggerTowers.h b/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloCells2TriggerTowers.h index 93380fa31e87c46d05306689dd8e655e859c66ff..12b5b5e7575de2ca20da37740723c914cd8e613d 100644 --- a/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloCells2TriggerTowers.h +++ b/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloCells2TriggerTowers.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef _TRIGGER_TRIGT1_TRIGT1CALOCALIBTOOLS_L1CALOCELLS2TRIGGERTOWERS_H_ @@ -21,7 +21,7 @@ // LAr includes #include "LArRawEvent/LArDigitContainer.h" #include "LArRawEvent/LArDigit.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" // Tile includes #include "TileEvent/TileDigitsContainer.h" @@ -125,7 +125,7 @@ private: const CaloCell_ID* m_caloCellHelper; // Services - LArCablingService* m_larCablingSvc; + LArCablingLegacyService* m_larCablingSvc; const TileCablingService * m_tileCablingService; CaloTriggerTowerService* m_ttSvc; diff --git a/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloLArTowerEnergy.h b/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloLArTowerEnergy.h index 52c421601aa8fa8a7bb540c5b4efec182c20711b..fa65b9a691a045f30139a5b1d1be89113c03f9c8 100644 --- a/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloLArTowerEnergy.h +++ b/Trigger/TrigT1/TrigT1CaloCalibTools/TrigT1CaloCalibTools/L1CaloLArTowerEnergy.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef _TRIGGER_TRIGT1_TRIGT1CALOCALIBTOOLS_L1CALOLARTOWERENERGY_H_ @@ -18,7 +18,7 @@ #include "TrigT1CaloCondSvc/L1CaloCondSvc.h" #include "CaloIdentifier/CaloIdManager.h" #include "LArRecConditions/ILArBadChanTool.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" // PABC interface include @@ -77,7 +77,7 @@ private: ToolHandle<LVL1::IL1CaloCells2TriggerTowers> m_cells2tt; ToolHandle< ILArBadChanTool > m_badChannelTool; // Handle to badChannelTool - ToolHandle<LArCablingService> m_larCablingSvc; // Handle to LarCablingService + ToolHandle<LArCablingLegacyService> m_larCablingSvc; // Handle to LarCablingService ToolHandle<LVL1::IL1TriggerTowerTool> m_ttTool; // Handle to L1TriggerTowerTool diff --git a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloCells2TriggerTowers.cxx b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloCells2TriggerTowers.cxx index f0fa3e846f2f54bd447099374495588bb5de062c..fecd199e946f139334eb76c35e8c390c6214deb8 100644 --- a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloCells2TriggerTowers.cxx +++ b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloCells2TriggerTowers.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1CaloCalibTools/L1CaloCells2TriggerTowers.h" @@ -174,7 +174,7 @@ namespace LVL1{ sc = toolSvc->retrieveTool("CaloTriggerTowerService",m_ttSvc); if(sc.isFailure()){ATH_MSG_ERROR("Could not retrieve CaloTriggerTowerService Tool");return sc;} - sc = toolSvc->retrieveTool("LArCablingService", m_larCablingSvc); + sc = toolSvc->retrieveTool("LArCablingLegacyService", m_larCablingSvc); if(sc.isFailure()){ATH_MSG_ERROR("Could not retrieve LArCablingService");return sc;} } diff --git a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx index 272e796d8056e43cdd69fcccec88775fcb51d6e2..f355081bced84d5191abee0225136e14305382c4 100644 --- a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx +++ b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1CaloCalibTools/L1CaloLArTowerEnergy.h" @@ -15,7 +15,7 @@ namespace LVL1{ m_ttService(nullptr), m_cells2tt("LVL1::L1CaloCells2TriggerTowers/L1CaloCells2TriggerTowers"), m_badChannelTool("LArBadChanLegacyTool"), - m_larCablingSvc("LArCablingService"), + m_larCablingSvc("LArCablingLegacyService"), m_ttTool("LVL1::L1TriggerTowerTool/LVL1::L1TriggerTowerTool") { } diff --git a/Trigger/TrigT1/TrigT1CaloSim/TrigT1CaloSim/TriggerTowerMaker.h b/Trigger/TrigT1/TrigT1CaloSim/TrigT1CaloSim/TriggerTowerMaker.h old mode 100755 new mode 100644 index 76efbb2bc6ed837582d748b5594beb612fa2c90d..e22f1969e748591e7796914f95e6db41bf6ffbd1 --- a/Trigger/TrigT1/TrigT1CaloSim/TrigT1CaloSim/TriggerTowerMaker.h +++ b/Trigger/TrigT1/TrigT1CaloSim/TrigT1CaloSim/TriggerTowerMaker.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ================================================ @@ -57,7 +57,6 @@ #include "CaloTTDetDescr/CaloTTDescrManager.h" #include "CaloIdentifier/CaloLVL1_ID.h" #include "CaloIdentifier/CaloID_Exception.h" -#include "LArCabling/LArCablingService.h" //#include "LArIdentifier/LArHardwareID.h" //LVL1 Calo trigger includes @@ -142,7 +141,6 @@ class TriggerTowerMaker : public AthAlgorithm, ToolHandle<IL1TriggerTowerTool> m_TTtool; ToolHandle<IL1CaloMappingTool> m_mappingTool; ToolHandle<ILumiBlockMuTool> m_lumiBlockMuTool; - LArCablingService* m_cablingSvc; PileUpMergeSvc* m_mergeSvc; // user-defined names for random number engines - keep streams distinct diff --git a/Trigger/TrigT1/TrigT1CaloSim/src/TriggerTowerMaker.cxx b/Trigger/TrigT1/TrigT1CaloSim/src/TriggerTowerMaker.cxx old mode 100755 new mode 100644 index 85c465f00caeec1442c1cfbf142a1f513f99d86a..be11d195bf106410fe360a3e34e4460caacc9190 --- a/Trigger/TrigT1/TrigT1CaloSim/src/TriggerTowerMaker.cxx +++ b/Trigger/TrigT1/TrigT1CaloSim/src/TriggerTowerMaker.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // ================================================ @@ -59,7 +59,6 @@ TriggerTowerMaker::TriggerTowerMaker( const std::string& name, ISvcLocator* pSvc m_TTtool("LVL1::L1TriggerTowerTool/L1TriggerTowerTool"), m_mappingTool("LVL1::PpmMappingTool/PpmMappingTool"), m_lumiBlockMuTool("LumiBlockMuTool/LumiBlockMuTool"), - m_cablingSvc(0), m_mergeSvc(0), m_caloMgr(0), m_lvl1Helper(0), diff --git a/graphics/VP1/VP1Systems/VP1CaloSystems/src/VP1CaloCellSystem.cxx b/graphics/VP1/VP1Systems/VP1CaloSystems/src/VP1CaloCellSystem.cxx index 8af5b31ab1c833c37eb90269701357ef90b042f2..960c2d4f92ecb808f1c2f4baaeb39a807d036ccd 100644 --- a/graphics/VP1/VP1Systems/VP1CaloSystems/src/VP1CaloCellSystem.cxx +++ b/graphics/VP1/VP1Systems/VP1CaloSystems/src/VP1CaloCellSystem.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "VP1CaloSystems/VP1CaloCellSystem.h" @@ -40,7 +40,7 @@ #include "GaudiKernel/ISvcLocator.h" #include "GaudiKernel/Bootstrap.h" #include "GaudiKernel/IToolSvc.h" -#include "LArCabling/LArCablingService.h" +#include "LArCabling/LArCablingLegacyService.h" #include "LArIdentifier/LArOnlineID.h" #include "LArRawEvent/LArDigitContainer.h" #include "TileEvent/TileDigitsContainer.h" @@ -114,7 +114,7 @@ public: const TileInfo* tile_info; const TileCablingService* tile_cabling; - LArCablingService* lar_cabling; + LArCablingLegacyService* lar_cabling; const LArOnlineID* lar_onlineID; const ICaloBadChanTool* calo_badchannel; @@ -538,9 +538,9 @@ void VP1CaloCellSystem::systemcreate(StoreGateSvc* detstore) m_clockwork->noTileDigitsGlobal = true; } - status = toolSvc()->retrieveTool("LArCablingService",m_clockwork->lar_cabling); + status = toolSvc()->retrieveTool("LArCablingLegacyService",m_clockwork->lar_cabling); if (status.isFailure() || m_clockwork->lar_cabling == 0) { - messageDebug("Failed to locate LAr Cabling Service"); + messageDebug("Failed to locate LAr Cabling Legacy Service"); m_clockwork->lar_cabling = 0; m_clockwork->noLArDigitsGlobal = true; }