|
| | DECLARE_SOA_INDEX_COLUMN_FULL (PosTrack, posTrack, int, Tracks, "_Pos") |
| |
| | DECLARE_SOA_INDEX_COLUMN_FULL (NegTrack, negTrack, int, Tracks, "_Neg") |
| | Positive track.
|
| |
| | DECLARE_SOA_INDEX_COLUMN (Collision, collision) |
| | Negative track.
|
| |
| | DECLARE_SOA_COLUMN (V0Type, v0Type, uint8_t) |
| | Collision index.
|
| |
| | DECLARE_SOA_DYNAMIC_COLUMN (IsStandardV0, isStandardV0, [](uint8_t V0Type) -> bool { return V0Type==1;}) |
| | custom bitmap for various selections (see below)
|
| |
| | DECLARE_SOA_DYNAMIC_COLUMN (IsPhotonV0, isPhotonV0, [](uint8_t V0Type) -> bool { return V0Type &(1<< 1);}) |
| |
| | DECLARE_SOA_DYNAMIC_COLUMN (IsCollinearV0, isCollinearV0, [](uint8_t V0Type) -> bool { return V0Type &(1<< 2);}) |
| |