-
Notifications
You must be signed in to change notification settings - Fork 613
[PWGCF] Fix indexing between track and collision tables + dimension of THn histogram #13793
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
Conversation
|
O2 linter results: ❌ 0 errors, |
| using CollTable = aod::CollLRTables; | ||
| using TrkTable = aod::TrkLRTables; | ||
| using MftTrkTable = aod::MftTrkLRTables; | ||
| using Ft0aTrkTable = aod::Ft0aLRTables; | ||
| using Ft0cTrkTable = aod::Ft0cLRTables; | ||
| using MftbestTrkTable = aod::MftBestTrkLRTables; | ||
| using V0TrkTable = aod::V0TrkLRTables; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would keep the plurals because they are not iterators
But not in the same way as in LR
Is Colls what should be plural and not Tables
The same for the others
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
It is done
| void processTpcft0aME(CollTable const& col, TrkTable const& tracks, Ft0aTrkTable const& ft0as) | ||
| { | ||
| processMixed(col, tracks, ft0as); | ||
| } | ||
|
|
||
| void processTpcft0cME(aod::CollLRTables const& col, aod::TrkLRTables const& tracks, aod::Ft0cLRTables const& ft0cs) | ||
| void processTpcft0cME(CollTable const& col, TrkTable const& tracks, Ft0cTrkTable const& ft0cs) | ||
| { | ||
| processMixed(col, tracks, ft0cs); | ||
| } | ||
|
|
||
| void processTpcmftME(aod::CollLRTables const& col, aod::TrkLRTables const& tracks, aod::MftTrkLRTables const& mfts) | ||
| void processTpcmftME(CollTable const& col, TrkTable const& tracks, MftTrkTable const& mfts) | ||
| { | ||
| processMixed(col, tracks, mfts); | ||
| } | ||
|
|
||
| void processMftft0aME(aod::CollLRTables const& col, aod::MftTrkLRTables const& mfts, aod::Ft0aLRTables const& ft0as) | ||
| void processMftft0aME(CollTable const& col, MftTrkTable const& mfts, Ft0aTrkTable const& ft0as) | ||
| { | ||
| processMixed(col, mfts, ft0as); | ||
| } | ||
|
|
||
| void processV0ft0aME(aod::CollLRTables const& col, aod::V0TrkLRTables const& tracks, aod::Ft0aLRTables const& ft0as) | ||
| void processV0ft0aME(CollTable const& col, V0TrkTable const& tracks, Ft0aTrkTable const& ft0as) | ||
| { | ||
| processMixed(col, tracks, ft0as); | ||
| } | ||
|
|
||
| void processV0mftME(aod::CollLRTables const& col, aod::V0TrkLRTables const& tracks, aod::MftTrkLRTables const& mfts) | ||
| void processV0mftME(CollTable const& col, V0TrkTable const& tracks, MftTrkTable const& mfts) | ||
| { | ||
| processMixed(col, tracks, mfts); | ||
| } | ||
|
|
||
| void processTpcmftbestME(aod::CollLRTables const& col, aod::TrkLRTables const& tracks, aod::MftBestTrkLRTables const& mfts) | ||
| void processTpcmftbestME(CollTable const& col, TrkTable const& tracks, MftbestTrkTable const& mfts) | ||
| { | ||
| processMixed(col, tracks, mfts); | ||
| } | ||
|
|
||
| void processMftbestft0aME(aod::CollLRTables const& col, aod::MftBestTrkLRTables const& mfts, aod::Ft0aLRTables const& ft0as) | ||
| void processMftbestft0aME(CollTable const& col, MftbestTrkTable const& mfts, Ft0aTrkTable const& ft0as) | ||
| { | ||
| processMixed(col, mfts, ft0as); | ||
| } | ||
|
|
||
| void processV0mftbestME(aod::CollLRTables const& col, aod::V0TrkLRTables const& tracks, aod::MftBestTrkLRTables const& mfts) | ||
| void processV0mftbestME(CollTable const& col, V0TrkTable const& tracks, MftbestTrkTable const& mfts) | ||
| { | ||
| processMixed(col, tracks, mfts); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also in here col should be cols
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! It is done.
victor-gonzalez
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the PR title if what is being fixed are the dimensions of the THn histograms?
|
Hi @victor-gonzalez, your comments are implemented. Can you please approve the PR? Thanks! |
No description provided.