Skip to content
Snippets Groups Projects
Commit 3269ee6e authored by John Derek Chapman's avatar John Derek Chapman
Browse files

Merge branch 'idMergedPRD' into '21.3'

Fix matching of merged NSW PRD to SDO

See merge request atlas/athena!15867

Former-commit-id: f2b9c8e274abbaf910d3bd4aa0339d4d1b934206
parents 74fb599d 01a41c6e
No related branches found
No related tags found
No related merge requests found
......@@ -728,6 +728,7 @@ namespace Muon {
void MuonTrackTruthTool::addClusterTruth( MuonTechnologyTruth& truth, const Identifier& id, const Trk::MeasurementBase& meas,
const MuonSimDataCollection& simCol ) const {
Trk::RoT_Extractor rotExtractor;
Identifier layid = m_idHelperTool->layerId(id);
Identifier chid = m_idHelperTool->chamberId(id);
......@@ -747,9 +748,26 @@ namespace Muon {
}
}
}else{
// find SimData corresponding to identifier
it = simCol.find(id);
if( it != simCol.end() ) goodCluster = true;
// Find SimData corresponding to identifier
const Trk::RIO_OnTrack* rot = 0;
rotExtractor.extract(rot,&meas);
const Trk::PrepRawData* prd = rot->prepRawData();
if(prd) {
// check if an identifier from the list of RDOs is matched to that in the SDO collection
const std::vector<Identifier> rdoList = prd->rdoList();
std::vector<Identifier>::const_iterator rit = rdoList.begin();
std::vector<Identifier>::const_iterator rit_end = rdoList.end();
for( ;rit!=rit_end;++rit ){
it = simCol.find(*rit);
if( it != simCol.end() ) {
goodCluster = true;
break;
}
}
} else {
it = simCol.find(id);
if( it != simCol.end() ) goodCluster = true;
}
}
if( !goodCluster || it == simCol.end() ){
......
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