Skip to content

Commit

Permalink
fix(gx2f): add error message to NotEnoughMeasurements (#3003)
Browse files Browse the repository at this point in the history
I forgot to add the error message in PR #2981.
  • Loading branch information
AJPfleger authored Feb 29, 2024
1 parent 6c910b0 commit 6ef4e4e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/src/TrackFitting/GlobalChiSquareFitterError.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class GlobalChiSquareFitterErrorCategory : public std::error_category {
return "Gx2f: aMatrix is not invertible.";
case GlobalChiSquareFitterError::DidNotConverge:
return "Gx2f: Did not converge in 'nUpdateMax' updates.";
case GlobalChiSquareFitterError::NotEnoughMeasurements:
return "Gx2f: Not enough measurements.";
default:
return "unknown";
}
Expand Down

0 comments on commit 6ef4e4e

Please sign in to comment.