Skip to content

Commit f99167a

Browse files
committed
Implement modifications from #14432
1 parent 7371257 commit f99167a

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
@@ -889,9 +889,9 @@ void TrackerTraits<nLayers>::findRoads(const int iteration)
889889

890890
for (int iROF{0}; iROF < mTimeFrame->getNrof(); ++iROF) {
891891
for (auto& track : mTimeFrame->getTracks(iROF)) {
892-
int firstLayer{mTrkParams[0].NLayers}, firstCluster{constants::its::UnusedIndex};
892+
int firstLayer{mTrkParams[0].NLayers}, firstCluster{constants::UnusedIndex};
893893
for (int iLayer{0}; iLayer < mTrkParams[0].NLayers; ++iLayer) {
894-
if (track.getClusterIndex(iLayer) == constants::its::UnusedIndex) {
894+
if (track.getClusterIndex(iLayer) == constants::UnusedIndex) {
895895
continue;
896896
}
897897
firstLayer = iLayer;

0 commit comments

Comments
 (0)