Skip to content

Commit f58f435

Browse files
committed
GPU Standalone: Fix TPC_MAX_TIME_BIN_TRIGGERED for Run2 data
1 parent 476ff64 commit f58f435

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

GPU/GPUTracking/Definitions/GPUDefConstantsAndSettings.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ static constexpr float MAX_SIN_PHI = 0.999f; // Must be preproces
3939
static constexpr float GRID_MIN_BIN_SIZE = 2.f; // Minimum bin size in TPC fast access grid
4040
static constexpr float GRID_MAX_BIN_SIZE = 1000.f; // Maximum bin size in TPC fast access grid
4141
static constexpr uint32_t TPC_COMP_CHUNK_SIZE = 1024; // Chunk size of sorted unattached TPC cluster in compression
42+
#ifdef GPUCA_RUN2
43+
static constexpr uint32_t TPC_MAX_TIME_BIN_TRIGGERED = 1024;
44+
#else
4245
static constexpr uint32_t TPC_MAX_TIME_BIN_TRIGGERED = 600;
46+
#endif
4347
} // namespace o2::gpu::constants
4448

4549
//#define GPUCA_MERGER_BY_MC_LABEL // Use MC labels for TPC track merging - for performance studies // TODO: Cleanup unneeded options

0 commit comments

Comments
 (0)