Skip to content

Commit eb39be2

Browse files
committed
Implement modifications from #14432
1 parent 61247c8 commit eb39be2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Detectors/ITSMFT/ITS/tracking/src/Configuration.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ std::vector<TrackingParameters> TrackingMode::getTrackingParameters(TrackingMode
194194
p.DropTFUponFailure = tc.dropTFUponFailure;
195195
p.SaveTimeBenchmarks = tc.saveTimeBenchmarks;
196196
p.FataliseUponFailure = tc.fataliseUponFailure;
197+
p.AllowSharingFirstCluster = tc.allowSharingFirstCluster;
197198

198199
if (tc.useMatCorrTGeo) {
199200
p.CorrType = o2::base::PropagatorImpl<float>::MatCorrType::USEMatCorrTGeo;

Detectors/ITSMFT/ITS/tracking/src/TrackerTraits.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -941,9 +941,9 @@ void TrackerTraits<nLayers>::findRoads(const int iteration)
941941

942942
for (int iROF{0}; iROF < mTimeFrame->getNrof(); ++iROF) {
943943
for (auto& track : mTimeFrame->getTracks(iROF)) {
944-
int firstLayer{mTrkParams[0].NLayers}, firstCluster{constants::its::UnusedIndex};
944+
int firstLayer{mTrkParams[0].NLayers}, firstCluster{constants::UnusedIndex};
945945
for (int iLayer{0}; iLayer < mTrkParams[0].NLayers; ++iLayer) {
946-
if (track.getClusterIndex(iLayer) == constants::its::UnusedIndex) {
946+
if (track.getClusterIndex(iLayer) == constants::UnusedIndex) {
947947
continue;
948948
}
949949
firstLayer = iLayer;

0 commit comments

Comments
 (0)