File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Detectors/ITSMFT/ITS/tracking/src Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments