Skip to content

Commit

Permalink
Merge branch 'main' into feat-navigation-stream
Browse files Browse the repository at this point in the history
  • Loading branch information
asalzburger authored Aug 29, 2024
2 parents 586ed6a + d6b112d commit 6ea9437
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,8 @@ class CombinatorialKalmanFilter {
typeFlags.set(TrackStateFlag::MeasurementFlag);
// Increment number of measurements
newBranch.nMeasurements()++;
newBranch.nDoF() += trackState.calibratedSize();
newBranch.chi2() += trackState.chi2();
} else {
ACTS_WARNING("Cannot handle this track state flags");
continue;
Expand Down Expand Up @@ -1330,10 +1332,6 @@ class CombinatorialKalmanFilter {
return error.error();
}

for (const auto& track : combKalmanResult.collectedTracks) {
calculateTrackQuantities(track);
}

return std::move(combKalmanResult.collectedTracks);
}
};
Expand Down

0 comments on commit 6ea9437

Please sign in to comment.