[PWGDQ] Add a ppbar pair type in tableReaderwithAssoc - #17241
Open
JifengDeng wants to merge 1 commit into
Open
Conversation
The motivation is to analyse Jpsi->ppbar and gamma gamma->ppbar in DQ framework. Since same event pairing in table reader is designed to analyse leptons, asymmetric pairing is suitable for proton pairing. - Modification in VarManager::FillPair is necessary for complex proton PID - The results of pairing have been proved to be good
JifengDeng
requested review from
XiaozhiBai,
alibuild,
iarsene,
mcoquet642 and
mguilbau
as code owners
July 29, 2026 03:36
|
O2 linter results: ❌ 278 errors, |
iarsene
requested changes
Aug 10, 2026
Comment on lines
+3817
to
+3823
| void processProtonPairSkimmed(MyEventsVtxCovZdcFitSelected const& events, | ||
| soa::Join<aod::ReducedTracksAssoc, aod::BarrelTrackCuts> const& barrelAssocs, | ||
| MyBarrelTracksWithCovWithAmbiguities const& barrelTracks) | ||
| { | ||
| runAsymmetricPairing<false, VarManager::kDecayToPrPr, gkEventFillMapWithCovZdcFit, gkTrackFillMapWithCov>(events, trackAssocsPerCollision, barrelAssocs, barrelTracks); | ||
| } | ||
|
|
Collaborator
There was a problem hiding this comment.
Since this is a decay to proton - antiproton, it should go in the SameEventPairing task. It may work also here, but it can be confusing.
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.
Add a pair type to process ppbar pairing in tableReader_withAssoc
The motivation is to analyse Jpsi->ppbar and gamma gamma->ppbar in DQ framework. Since same event pairing in table reader is designed to analyse leptons, asymmetric pairing is suitable for proton pairing.