-
Notifications
You must be signed in to change notification settings - Fork 485
Add first task of the LUT maker from fullsim #6498
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
njacazio
commented
Jun 22, 2021
- Add single particle QA task
- Add 2D efficiency to efficiency QA task
- Add possibility to select charge depending on PDG code
|
Input for the PR in AliceO2Group/DelphesO2#79 |
a2c384a to
28d9e00
Compare
|
@ddobrigk here it is, what do you think? |
28d9e00 to
64c6224
Compare
- Add single particle QA task - Add 2D efficiency to efficiency QA task - Add possibility to select charge depending on PDG code - Add Y for MC particles
64c6224 to
971a2f3
Compare
jgrosseo
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.
I approve.
@njacazio I think we should consider making expression columns for the MC table as well.
|
FullCI was waiting too long. Rest fine. Fingers crossed :) |
| if (noFakes) { // Selecting tracks with no fake hits | ||
| bool hasFake = false; | ||
| for (int i = 0; i < 10; i++) { // From ITS to TPC | ||
| if (track.mcMask() & 1 << i) { | ||
| hasFake = true; | ||
| break; | ||
| } | ||
| } | ||
| if (hasFake) { | ||
| continue; | ||
| } | ||
| } |
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.
Isn't this the same as just
if (noFakes and (track.mcMask() & 0b11'1111'1111)) { // Selecting tracks with no fake hits from ITS to TPC
continue;
}or you'll want to know the exact bit in the future?
- Add single particle QA task - Add 2D efficiency to efficiency QA task - Add possibility to select charge depending on PDG code - Add Y for MC particles