Skip to content
Snippets Groups Projects
Commit 56980564 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'KalmanVertex_NegCovariance' into 'master'

Updated negative determinant error handling in KalmanVertexOnJetAxisUpdator

See merge request atlas/athena!39285
parents 53e7be43 aca928f3
No related branches found
No related tags found
No related merge requests found
......@@ -257,7 +257,10 @@ namespace Trk{
if (trackParametersWeight.determinant()<=0)
{
ATH_MSG_ERROR(" The determinant of the track covariance matrix is negative: " << trackParametersWeight.determinant());
ATH_MSG_WARNING(" The determinant of the inverse of the track covariance matrix is negative: " << trackParametersWeight.determinant());
if(trk->expectedCovarianceAtPCA().determinant()<=0){
ATH_MSG_ERROR(" As well as the determinant of the track covariance matrix: " << trk->expectedCovarianceAtPCA().determinant());
}
}
......
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