Skip to content

Commit

Permalink
Updated the maxCellsPerHit threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Stahl committed Aug 25, 2021
1 parent 1ddf537 commit 0b491a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RecoPixelVertexing/PixelTriplets/plugins/CAConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ namespace caConstants {
constexpr uint32_t maxCellsPerHit = 128 / 2;
#else // GPU_SMALL_EVENTS
// tested on MC events with 55-75 pileup events
// and extended for Heavy Ions operations (24k -> 32k tuples, 128 -> 256 cells)
// and extended for Heavy Ions operations (24k -> 32k tuples, 128 -> 212 cells)
constexpr uint32_t maxNumberOfTuples = 32 * 1024;
constexpr uint32_t maxNumberOfDoublets = 512 * 1024;
constexpr uint32_t maxCellsPerHit = 2 * 128;
constexpr uint32_t maxCellsPerHit = 212;
#endif // GPU_SMALL_EVENTS
#endif // ONLY_PHICUT
constexpr uint32_t maxNumOfActiveDoublets = maxNumberOfDoublets / 8;
Expand Down

0 comments on commit 0b491a1

Please sign in to comment.