-
Notifications
You must be signed in to change notification settings - Fork 622
[PWGLF] Modification in event selection cuts #11791
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: ❌ 68 errors, |
Please consider the following formatting changes to #11791
| } | ||
| registry.fill(HIST("EventSelection"), 3.); | ||
| if (!useEvSel || (useEvSel && collision.selection_bit(aod::evsel::kIsTriggerTVX) && collision.selection_bit(aod::evsel::kNoTimeFrameBorder))) { | ||
| registry.fill(HIST("EventSelection"), 4.); |
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 also separate out kNoTimeFrameBorder cut like you did for kNoITSROFrameBorder
| { | ||
| return; | ||
| } | ||
| if (!useEvSel || (useEvSel && collision.selection_bit(aod::evsel::kIsTriggerTVX) && collision.selection_bit(aod::evsel::kNoTimeFrameBorder))) { |
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 also separate out kNoTimeFrameBorder cut like you did for kNoITSROFrameBorder
abmodak
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.
Dear @tutripat,
It would be good if you separate out all 3 conditions of sel8. In future, whenever you need, you can switch them on/off.
There are also many O2 linter errors; at least you can consider some of them.
e.g. M_PI => o2::constants::math::PI
Thanks,
Abhi
No description provided.