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

removing commented lines

Former-commit-id: e4170213
parent 9a8db983
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,6 @@ bool MdtTestCabling::testMap()
std::map<uint8_t, MdtAmtMap*, std::less<uint8_t> >* listOfAmt;
std::map<uint8_t, MdtAmtMap*, std::less<uint8_t> >::const_iterator it_amt;
//listOfSubdet = cablingMap->getListOfElements();
listOfSubdet = readCdo->getListOfElements();
// if (m_debug) {
......
......@@ -267,18 +267,10 @@ StatusCode MdtDigitToMdtRDO::fill_MDTdata() const {
StatusCode MdtDigitToMdtRDO::fillTagInfo() const {
ServiceHandle<ITagInfoMgr> tagInfoMgr ("TagInfoMgr", name());
if (tagInfoMgr.retrieve().isFailure())
if (tagInfoMgr.retrieve().isFailure()){
return StatusCode::FAILURE;
/*
std::string cablingType="";
if (m_cabling->usingOldCabling() ) {
cablingType="OldMDT_Cabling";
}
else {
cablingType="NewMDT_Cabling";
}
*/
//this should be new from Run2 so the switch can be removed
std::string cablingType="NewMDT_Cabling";
StatusCode sc = tagInfoMgr->addTag("MDT_CablingType",cablingType);
......
......@@ -64,7 +64,6 @@ public:
int m_specialROBNumber;
//SG::ReadCondHandleKey<MuonMDT_CablingMap> m_readKey{this, "ReadKey", "MuonMDT_CablingMap", "Key of MuonMDT_CablingMap"};
SG::ReadCondHandleKey<MuonMDT_CablingMap> m_readKey;
};
......
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