Skip to content
Snippets Groups Projects
Commit 7fea5a9a authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

MuonMDT_Cabling: Fix cppcheck warning.

Redundant string conversion.
parent 7cdcf21b
1 merge request!68066MuonMDT_Cabling: Fix cppcheck warning.
......@@ -214,7 +214,7 @@ bool MuonMDT_CablingAlg::extractStationInfo(const coral::AttributeList& atr, Cab
map_data.stationIndex = m_idHelperSvc->mdtIdHelper().stationNameIndex(stationNameString);
ATH_MSG_VERBOSE("station name: " << stationNameString << " index: " << static_cast<int>(map_data.stationIndex));
// convert the subdetector id to integer
map_data.subdetectorId = CxxUtils::atoi(subdetector_id.c_str());
map_data.subdetectorId = CxxUtils::atoi(subdetector_id);
ATH_MSG_VERBOSE("Data load is chamber_Name = " << chamber_name <<" translated to "<<map_data<<" FINISHED HERE ");
......
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