Skip to content
Snippets Groups Projects
Commit ecd5cd1b authored by Sergey Gorbunov's avatar Sergey Gorbunov Committed by Administrator
Browse files

Ca: bugfix in the track extender

MR 1609
(cherry picked from commit f51dab55)
parent 8ad2f190
No related branches found
No related tags found
No related merge requests found
......@@ -254,6 +254,9 @@ void TrackExtender::FindMoreHits(ca::Branch& t, TrackParamV& Tout, const bool up
fscal dxm_est = sqrt(pickGather2 * C00)[0] + frAlgo.vGrid[ista].GetMaxRangeX();
if (fabs(d_x) > dxm_est) continue;
fscal dym_est = sqrt(pickGather2 * C11)[0] + frAlgo.vGrid[ista].GetMaxRangeY();
if (fabs(d_y) > dym_est) continue;
r2_best = d2;
iHit_best = ih;
}
......
......@@ -95,7 +95,6 @@ ca:
- name: "AllSec"
base_iteration: "Default"
is_extend_tracks: false
target_pos_sigma_x: 10.
target_pos_sigma_y: 10.
is_primary: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment