Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix cluster sorting, increment MFT TrackLTF ClassDefNV
  • Loading branch information
rpezzi committed Oct 1, 2021
commit fe1e6f3bd95cb3e9f651b113cd2ea67ac7fba7b7
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class TrackLTF : public TrackMFTExt
std::array<Int_t, constants::mft::LayersNumber> mClusterId;
std::array<MCCompLabel, constants::mft::LayersNumber> mMCCompLabels;

ClassDefNV(TrackLTF, 10);
ClassDefNV(TrackLTF, 11);
};

//_________________________________________________________________________________________________
Expand Down
1 change: 1 addition & 0 deletions Detectors/ITSMFT/MFT/tracking/src/Tracker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,7 @@ bool Tracker<T>::fitTracks(ROframe<T>& event)
{
for (auto& track : event.getTracks()) {
T outParam = track;
track.sort();
mTrackFitter->initTrack(track);
mTrackFitter->fit(track);
mTrackFitter->initTrack(outParam, true);
Expand Down