Methods for Kalman filter linearized wrt reference track#14866
Merged
shahor02 merged 3 commits intoAliceO2Group:devfrom Nov 29, 2025
Merged
Methods for Kalman filter linearized wrt reference track#14866shahor02 merged 3 commits intoAliceO2Group:devfrom
shahor02 merged 3 commits intoAliceO2Group:devfrom
Conversation
Contributor
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
Collaborator
|
Error while checking build/O2/fullCI_slc9 for 7e23409 at 2025-11-28 03:49: Full log here. |
7e23409 to
92adf4a
Compare
92adf4a to
d5f3968
Compare
At the moment reseeding of lin.ref is not done, it is taken from the existing track seed
With scdcalib.refitITS=true (default) the ITS track outer param will be refitted from scratch using stable Kalman filter staring from the inner param (and using it as as linearization point) and imposing PID of the global track (if any). Note that the reconstruction is done with extra syst.errors on the ITS clusters (20 microns): they can be added also for this refit with usual ITSCATrackerParam.sysErrY2... settings (though this is not necessary). The track residuals wrt the PV are added to the unbinned residuals with identified of padrow 190. Note that PV residuals interpretation differs from the rest: they are provided at the PCA of the track to PV, with PV rotated to the frame of the track. The X of the vertex in this frame is stored in the channel slot mapped from [-0.5:0.5] to short; the alpha of the track frame is stored as the angle in [-pi : pi] mapped to short: auto dy = yv - trkAtPCA.getY(), auto dz = zv - trkAtPCA.getZ(); short compXV = static_cast<short>(xv * 0x7fff / param::MaxVtxX); // MaxVtxX = 0.5 cm mClRes.emplace_back(dy, dz, trkAtPCA.getAlpha() / TMath::Pi(), trkWorkITS.getY(), trkWorkITS.getZ(), 190, -1, compXV);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is similar to #14862, but before its overloaded methods compilation was failing on GPU. Reopening to check if #14865 fixes the problem.