You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- the number of ITS tracks from other collisions in a time window around a given event. In the analysis it can be retrieved as:
381
+
382
+
A single-value "integrated" occupancy estimator for a given collision can be calculated by summing
383
+
- the number of ITS tracks from other collisions within a defined time window around the given event. In the analysis, it can be accessed as:
383
384
``` c++
384
-
int occupancyByTracks = col.trackOccupancyInTimeRange(); // range is from 0 up to ~15k
385
+
int occupancyByTracks = col.trackOccupancyInTimeRange(); // range: from 0 up to ~15k
385
386
```
386
-
- the alternative occupancy estimator is the summed FT0C amplitude from other collisions:
387
+
- alternatively, we can sum up FT0C amplitudes from other collisions:
387
388
``` c++
388
-
float occupancyByFT0C = col.ft0cOccupancyInTimeRange(); // range is from 0 up to ~150k
389
+
float occupancyByFT0C = col.ft0cOccupancyInTimeRange(); // range: from 0 up to ~150k
389
390
```
390
-
- In the occupancy calculation, multiplicities of nearby collisions are "weighted" according to their time separation from a collision-of-interest.
391
-
Both occupancy estimators are calculated per event in [EventSelectionModule.h](https://github.com/AliceO2Group/O2Physics/blob/daily-20251029-0000/Common/Tools/EventSelectionModule.h#L1361).
392
-
- Estimators return the value of -1 if a collision is close to Time Frame borders (so, not enough information for the occupancy calculation; we need information -40 µs...+100 µs time range wrt a given collision).
391
+
392
+
Notes:
393
+
- Both occupancy estimators are calculated per each collision in the event selection routine, [EventSelectionModule.h](https://github.com/AliceO2Group/O2Physics/blob/daily-20251029-0000/Common/Tools/EventSelectionModule.h#L1361).
394
+
- In the occupancy calculation, multiplicities of nearby collisions are "weighted" according to their time separation from a collision-of-interest.
395
+
- Estimators return the value of `-1` if a given collision is close to Time Frame borders (so, not enough information for the occupancy calculation, while we need information within -40 µs...+100 µs time range wrt a given collision).
393
396
394
397
395
398
### Occupancy selection bits
399
+
396
400
In addition to the occupancy estimators described above, several additional event selection bits are implemented for a better cleanup of various nearby effects from other collisions (related not only to the TPC, but also to the ITS, e.g. to high occupancies in the ITS Readout Frames).
397
401
The following table summarizes the event selection bits used to mitigate occupancy effects in ALICE Run 3.
0 commit comments