Skip to content
Snippets Groups Projects
Commit 4787b9bc authored by John Chapman's avatar John Chapman
Browse files

Fix Coverity defect 113173

Former-commit-id: 1f8411121627f8dd24ca7183525153d11c69f92a
parent f1d290f1
No related branches found
No related tags found
No related merge requests found
......@@ -50,12 +50,9 @@ Identifier RPCHitsTestTool::getIdentifier(HitID rpchit) {
StatusCode RPCHitsTestTool::checkIdentifier(Identifier offid) {
const MuonGM::RpcReadoutElement* descriptor = m_pMuonMgr->getRpcReadoutElement(offid);
if (descriptor != NULL) {
Amg::Vector3D xU;
// *AS* Amg::Vector3D localHit((*i_hit).localPosition().x(),(*i_hit).localPosition().y(),(*i_hit).localPosition().z());
// *AS* xU = descriptor->localToGlobalCoords(localHit,offid);
} else {
if (!descriptor) {
ATH_MSG_FATAL("RPC readout element not found for Id = " << m_pRpcIdHelper->show_to_string(offid));
return StatusCode::FAILURE;
}
// Testing Sim to Offline ID conversion
......
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