-
Notifications
You must be signed in to change notification settings - Fork 613
[PWGCF] Modify in FV0 eta calculation and add kIsGoodZvtxFT0vsPV event selection #12597
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: ❌ 4 errors, |
| Filter fMftTrackDca = (nabs(aod::fwdtrack::bestDCAXY) < cfigMftDcaxy); | ||
|
|
||
| double getPhiFT0(int chno, int i) | ||
| double getPhiFT0(UInt_t chno, int i) |
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.
Please, follow linter recommendations and use uint
| } | ||
|
|
||
| double getPhiFV0(int chno) | ||
| double getPhiFV0(UInt_t chno) |
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.
Same here
| } | ||
| histos.fill(HIST("QA/EventHist"), 3); | ||
| if (std::abs(col.posZ()) >= cfgVtxCut) { | ||
| if (isApplyGoodZvtxFT0vsPV && !col.selection_bit(o2::aod::evsel::kIsGoodZvtxFT0vsPV)) { |
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.
Be aware of the usage of kIsGoodZvtxFT0vsPV recommendations at AOT and light ions meetings
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.
Please, have a look at my comments in case you want to consider them for future iterations
No description provided.