@@ -168,7 +168,6 @@ std::vector<RecoIteration> TrackingMode::getRecoIterations(TrackingMode::Type mo
168168 p.PhiBins = tc.LUTbinsPhi > 0 ? tc.LUTbinsPhi : p.PhiBins ;
169169 p.ZBins = tc.LUTbinsZ > 0 ? tc.LUTbinsZ : p.ZBins ;
170170 p.NSigmaCut *= tc.nSigmaCut > 0 ? tc.nSigmaCut : 1 .f ;
171- p.CellDeltaTanLambdaSigma *= tc.deltaTanLres > 0 ? tc.deltaTanLres : 1 .f ;
172171 p.TrackletMinPt *= tc.minPt > 0 ? tc.minPt : 1 .f ;
173172 p.PerPrimaryVertexProcessing = tc.perPrimaryVertexProcessing ;
174173 for (int iD{0 }; iD < 3 ; ++iD) {
@@ -197,8 +196,9 @@ std::vector<RecoIteration> TrackingMode::getRecoIterations(TrackingMode::Type mo
197196
198197 // standards steps to configure seeding
199198 recoIterations[0 ].steps .set (kRunTrackleting , kRunCellFinding , kRunCellSeeding , kUpdateClusters );
200- recoIterations[0 ].params .NLayers = 3 ; // only do cell finding up until the third layer
201- recoIterations[0 ].params .UseDiamond = true ; // use the blown up diamond constrain to (e.g. luminous region)
199+ recoIterations[0 ].params .NLayers = 3 ; // only do cell finding up until the third layer
200+ recoIterations[0 ].params .UseDiamond = true ; // use the blown up diamond constrain to (e.g. luminous region)
201+ recoIterations[0 ].params .NSigmaCut = 3 .f ;
202202 recoIterations[0 ].params .CorrType = o2::base::PropagatorF::MatCorrType::USEMatCorrNONE; // do not use material
203203 recoIterations[0 ].params .SeedingDCATolerance = tc.seedingDCATolerance ;
204204 recoIterations[0 ].params .SeedingDCAMaxPull = tc.seedingDCAMaxPull ;
@@ -221,9 +221,7 @@ std::vector<RecoIteration> TrackingMode::getRecoIterations(TrackingMode::Type mo
221221
222222 if (mode == TrackingMode::Async) {
223223 recoIterations[2 ].params .TrackletMinPt = 0 .2f ;
224- recoIterations[2 ].params .CellDeltaTanLambdaSigma *= 2 .;
225224 recoIterations[3 ].params .TrackletMinPt = 0 .1f ;
226- recoIterations[3 ].params .CellDeltaTanLambdaSigma *= 4 .;
227225
228226 recoIterations[1 ].params .MinPt [0 ] = 1 .f / 12 ; // 7cl
229227 recoIterations[2 ].params .MinPt [0 ] = 1 .f / 12 ; // 7cl
@@ -239,7 +237,6 @@ std::vector<RecoIteration> TrackingMode::getRecoIterations(TrackingMode::Type mo
239237 if (tc.doUPCIteration ) {
240238 recoIterations[4 ].params .MinTrackLength = 4 ;
241239 recoIterations[4 ].params .TrackletMinPt = 0 .1f ;
242- recoIterations[4 ].params .CellDeltaTanLambdaSigma *= 4 .;
243240 }
244241 for (size_t ip = 0 ; ip < recoIterations.size (); ip++) {
245242 // the seeding step is configured outside of this loop beforehand
@@ -273,7 +270,6 @@ std::vector<RecoIteration> TrackingMode::getRecoIterations(TrackingMode::Type mo
273270 recoIterations[0 ].params .MinTrackLength = 4 ;
274271 } else if (mode == TrackingMode::Cosmics) {
275272 recoIterations[0 ].params .MinTrackLength = 4 ;
276- recoIterations[0 ].params .CellDeltaTanLambdaSigma *= 10 ;
277273 recoIterations[0 ].params .PhiBins = 4 ;
278274 recoIterations[0 ].params .ZBins = 16 ;
279275 recoIterations[0 ].params .MaxChi2ClusterAttachment = 60 .;
0 commit comments