mvd: bugfix in the coordinate transformation
A bugfix in the coordinate transformation of MVD hits.
fSensor->TopToPixel(local, indexX, indexY);
is called with the array of size 2 (local[2]
), while it assumes the size of 3:
Because of this bug, MVD hits sometimes get bogus values in Z, for example X -0.0901254 Y -0.86012 Z 1.10751e+19
This MR should fix the problem of the hanging CA tracking in the other MR: !1557 (diffs)
In addition, I'll add an extra check of the input data in the CA tracking later.
Merge request reports
Activity
added BugFix Reconstruction labels
requested review from @f.uhlig
assigned to @f.uhlig
mentioned in merge request !1557 (merged)
Dear @c.muentz, @m.deveaux,
you have been identified as code owner of at least one file which was changed with this merge request.
Please check the changes and approve them or request changes.
added CodeOwners label
thanks for finding the problem.