Skip to content
Snippets Groups Projects
Commit 3b29be18 authored by Chikuma Kato's avatar Chikuma Kato
Browse files

migrated all cablingSvc to the readCdo in MdtTestCabling.cxx

parent 47933c35
No related branches found
No related tags found
No related merge requests found
......@@ -259,12 +259,24 @@ bool MdtTestCabling::testMapTiming()
bool found;
SG::ReadCondHandle<MuonMDT_CablingMap> readHandle{m_readKey};
const MuonMDT_CablingMap* readCdo{*readHandle};
if(readCdo==0){
ATH_MSG_ERROR("Null pointer to the read conditions object");
return false;
}
//
m_chronoSvc->chronoStart(m_chrono1);
for (int i = 0 ; i<1000 ; i++) {
/*
found = m_cablingSvc->getOfflineId(1,1,1,1,1,
stationName,stationEta,stationPhi,
multiLayer,layer,tube);
*/
found = readCdo->getOfflineId(1,1,1,1,1,
stationName,stationEta,stationPhi,
multiLayer,layer,tube);
if (!found) {
ATH_MSG_FATAL( " coul dnot find the test channel" );
return found;
......@@ -273,9 +285,14 @@ bool MdtTestCabling::testMapTiming()
//found = m_cablingSvc->getOfflineId(1,1,1,1,1,
// stationName,stationEta,stationPhi,
// multiLayer,layer,tube);
/*
found = m_cablingSvc->getOfflineId(1,1,1,1,3,
stationName,stationEta,stationPhi,
multiLayer,layer,tube);
*/
found = readCdo->getOfflineId(1,1,1,1,3,
stationName,stationEta,stationPhi,
multiLayer,layer,tube);
if (!found) {
ATH_MSG_FATAL( " coul dnot find the test channel" );
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment