Skip to content

Commit

Permalink
refactor: Reduce abort output in GX2F to DEBUG (#3888)
Browse files Browse the repository at this point in the history
I think outputs that run on every single event should generally not be INFO.
  • Loading branch information
paulgessinger authored Nov 21, 2024
1 parent ca44b3f commit f6e95c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core/include/Acts/TrackFitting/GlobalChiSquareFitter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1408,9 +1408,9 @@ class Gx2Fitter {
if ((gx2fOptions.relChi2changeCutOff != 0) && (nUpdate > 0) &&
(std::abs(extendedSystem.chi2() / oldChi2sum - 1) <
gx2fOptions.relChi2changeCutOff)) {
ACTS_INFO("Abort with relChi2changeCutOff after "
<< nUpdate + 1 << "/" << gx2fOptions.nUpdateMax
<< " iterations.");
ACTS_DEBUG("Abort with relChi2changeCutOff after "
<< nUpdate + 1 << "/" << gx2fOptions.nUpdateMax
<< " iterations.");
updateGx2fCovarianceParams(fullCovariancePredicted, extendedSystem);
break;
}
Expand Down

0 comments on commit f6e95c2

Please sign in to comment.