Skip to content

Commit

Permalink
Merge pull request #44457 from aehart/kf_matrix_fix
Browse files Browse the repository at this point in the history
[14_0_X] KalmanFilter fix for Phase 2 L1 tracking
  • Loading branch information
cmsbuild authored Mar 27, 2024
2 parents 230c0c3 + 7a4d565 commit f90edc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion L1Trigger/TrackFindingTMTT/src/KFbase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ namespace tmtt {
matRinv = TMatrixD(TMatrixD::kInverted, matR);
} else {
// Protection against rare maths instability.
const TMatrixD unitMatrix(TMatrixD::kUnit, TMatrixD(nHelixPar_, nHelixPar_));
const TMatrixD unitMatrix(TMatrixD::kUnit, TMatrixD(2, 2));
const double big = 9.9e9;
matRinv = big * unitMatrix;
}
Expand Down

0 comments on commit f90edc3

Please sign in to comment.