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 @@ -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;
You can’t perform that action at this time.
0 commit comments