Skip to content
Snippets Groups Projects
Commit 4a42f1b3 authored by Sebastien Ponce's avatar Sebastien Ponce
Browse files

Merge branch 'spradlin_2023Jan_convcov' into 'master'

Fixed an indexing error in transfer of covariance matrixes in SOATrackConversion.h

Closes #285

See merge request !3937
parents fe332b19 a8a84412
No related branches found
No related tags found
1 merge request!3937Fixed an indexing error in transfer of covariance matrixes in SOATrackConversion.h
Pipeline #5040764 passed
......@@ -133,7 +133,7 @@ namespace LHCb::Event::conversion {
auto const& cov = state.covariance();
outTrack.template field<v3::Tag::StateCovs>( L ).set( cov[0][0], cov[0][1], cov[0][2], cov[0][3], cov[0][4],
cov[1][1], cov[1][2], cov[1][3], cov[1][4], cov[2][3],
cov[1][1], cov[1][2], cov[1][3], cov[1][4], cov[2][2],
cov[2][3], cov[2][4], cov[3][3], cov[3][4], cov[4][4] );
return true;
}
......
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