Skip to content
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

Adapt CAConstants for HIon #35017

Merged
merged 1 commit into from Sep 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions RecoPixelVertexing/PixelTriplets/plugins/CAConstants.h
Expand Up @@ -32,9 +32,10 @@ namespace caConstants {
constexpr uint32_t maxCellsPerHit = 128 / 2;
#else // GPU_SMALL_EVENTS
// tested on MC events with 55-75 pileup events
constexpr uint32_t maxNumberOfTuples = 24 * 1024;
// and extended for Heavy Ions operations (24k -> 32k tuples, 128 -> 256 cells)
constexpr uint32_t maxNumberOfTuples = 32 * 1024;
constexpr uint32_t maxNumberOfDoublets = 512 * 1024;
constexpr uint32_t maxCellsPerHit = 128;
constexpr uint32_t maxCellsPerHit = 256;
#endif // GPU_SMALL_EVENTS
#endif // ONLY_PHICUT
constexpr uint32_t maxNumOfActiveDoublets = maxNumberOfDoublets / 8;
Expand Down