Skip to content
Snippets Groups Projects
Commit 9fd64ce4 authored by Tamara Vazquez Schroeder's avatar Tamara Vazquez Schroeder
Browse files

Merge branch 'ATLASRECTS-3787' into '21.0'

Fix for ATLASRECTS-3787

See merge request !4255

Former-commit-id: 78611405ef088b9cc98bac330b4d52e6369e06be
parents 52e31757 dfbd352b
No related branches found
No related tags found
No related merge requests found
...@@ -526,6 +526,13 @@ namespace Muon { ...@@ -526,6 +526,13 @@ namespace Muon {
} }
} }
} }
std::vector<float> emptyVec;
for( const auto& col : trackRecords ){
const std::string name = col.second;
if(!truthParticle.isAvailable<std::vector<float> >(name+"_cov_extr")){
truthParticle.auxdata<std::vector<float> >(name+"_cov_extr")=emptyVec;
}
}
} }
......
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