diff --git a/Core/include/Acts/EventData/MultiTrajectory.hpp b/Core/include/Acts/EventData/MultiTrajectory.hpp index 27e4305bc9e8f60efb1f4a8e412412240268a549..f290c1029191bea386a1bedce8dda194eaf124f1 100644 --- a/Core/include/Acts/EventData/MultiTrajectory.hpp +++ b/Core/include/Acts/EventData/MultiTrajectory.hpp @@ -108,7 +108,7 @@ struct IndexData { double chi2; double pathLength; - std::bitset<TrackStateFlag::NumTrackStateFlags> typeFlags; + TrackStateType typeFlags; IndexType iuncalibrated = kInvalid; IndexType icalibrated = kInvalid; diff --git a/Core/include/Acts/Fitter/KalmanFitter.hpp b/Core/include/Acts/Fitter/KalmanFitter.hpp index d3e601c7ff58f74a89cd1337d2858efa94f75580..42d477847aaf2679db7e7ec12b8c3fe688f83d6d 100644 --- a/Core/include/Acts/Fitter/KalmanFitter.hpp +++ b/Core/include/Acts/Fitter/KalmanFitter.hpp @@ -396,10 +396,13 @@ class KalmanFitter { // We count the processed state ++result.processedStates; } else { - // add a full TrackState entry multi trajectory - // (this allocates storage for all components, we will set them later) + // add a non-measurement TrackState entry multi trajectory + // (this allocates storage for components except measurements, we will + // set them later) result.trackTip = result.fittedStates.addTrackState( - TrackStatePropMask::All, result.trackTip); + ~(TrackStatePropMask::Uncalibrated | + TrackStatePropMask::Calibrated), + result.trackTip); // now get track state proxy back auto trackStateProxy =