-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor!: Fitted params to fitted momenta #2402
refactor!: Fitted params to fitted momenta #2402
Conversation
This reverts commit 59a494b.
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
Co-authored-by: Andreas Stefl <[email protected]>
…sso/acts into fitted-params-to-fitted-momenta
…ed-params-to-fitted-momenta
…sso/acts into fitted-params-to-fitted-momenta
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #2402 +/- ##
==========================================
+ Coverage 49.63% 49.69% +0.05%
==========================================
Files 474 471 -3
Lines 26941 26641 -300
Branches 12415 12233 -182
==========================================
- Hits 13372 13238 -134
Misses 4746 4746
+ Partials 8823 8657 -166 ☔ View full report in Codecov by Sentry. |
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
…ed-params-to-fitted-momenta
can you resolve the conflicts @felix-russo ? |
@andiwand I think this became a much wider discussion in the context of ATLAS integration. |
Conflicts are resolved Before I continue working on this (which means preparing a parallel PR in Athena if we stick with our current plan for the ATLAS integration) I would like to get #2544 in (which also needs some more work) |
Closing this due to time constraints 😢 |
reopening #2359
The output of a vertex fitter is
Previously, the track momenta from the vertex fit were saved as
GenericTrackParameters
, where we setd0 = z0 = 0
. For the corresponding covariance matrices, we partly used incorrect values (one cannot, in fact, compute entries likeCov(d0, phi)
orCov(z0, z0)
asd0
andz0
are not part of the vertex fitting model).In this PR,
fittedParams
are replaced byfittedMomenta
(i.e., a 3 vector, its covariance matrix, and its cross-covariance with the vertex). My aim is