Skip to content

Commit

Permalink
no ref for map
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni authored and cvarni committed Sep 19, 2024
1 parent 5c0b3d1 commit f157aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/src/TrackFitting/MbfSmoother.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void MbfSmoother::calculateSmoothed(InternalTrackState& ts,
void MbfSmoother::visitNonMeasurement(const InternalTrackState& ts,
BoundMatrix& bigLambdaHat,
BoundVector& smallLambdaHat) const {
const Acts::BoundMatrix& F = ts.jacobian;
const Acts::BoundMatrix F = ts.jacobian;

bigLambdaHat = F.transpose() * bigLambdaHat * F;
smallLambdaHat = F.transpose() * smallLambdaHat;
Expand All @@ -34,7 +34,7 @@ void MbfSmoother::visitMeasurement(const InternalTrackState& ts,
assert(ts.measurement.has_value());

const InternalTrackState::Measurement& measurement = ts.measurement.value();
const Acts::BoundMatrix& F = ts.jacobian;
const Acts::BoundMatrix F = ts.jacobian;

visit_measurement(measurement.calibratedSize, [&](auto N) -> void {
constexpr std::size_t kMeasurementSize = decltype(N)::value;
Expand Down

0 comments on commit f157aa8

Please sign in to comment.