Skip to content
Snippets Groups Projects
Commit f378d98a authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'ATLASSIM-3421' into 'master'

Fix for ATLASSIM-3421

See merge request !4505
parents 8cada3b4 224b95fc
No related branches found
No related tags found
No related merge requests found
......@@ -85,11 +85,11 @@ StatusCode MuonDetailedTrackTruthMaker::execute() {
// Retrieve prep raw data truth
std::vector<const PRD_MultiTruthCollection*> prdCollectionVector;
for(SG::ReadHandle<PRD_MultiTruthCollection>& col : m_PRD_TruthNames.makeHandles()){
if(!col.isPresent()) continue;
if(!col.isValid()){
ATH_MSG_WARNING("invalid PRD_MultiTruthCollection "<<col.name());
return StatusCode::FAILURE;
}
if(!col.isPresent()) continue;
prdCollectionVector.push_back(col.cptr());
}
......
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