Skip to content
Snippets Groups Projects
Commit d0e6be3d authored by Will Leight's avatar Will Leight
Browse files

Fix for cherry-pick to master.

parent cdc5fb2f
No related merge requests found
......@@ -468,8 +468,8 @@ namespace Muon {
}
}
std::vector<float> emptyVec;
for( const auto& col : trackRecords ){
const std::string name = col.second;
for( unsigned int i=0;i<m_trackRecordCollectionNames.size();i++){
const std::string name = m_trackRecordCollectionNames.at(i).key();
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