22 : mFilterType(filterType)
24 if (filterType == 1) {
27 }
else if (filterType == 2) {
29 mClusterStats = std::make_unique<std::vector<int>[]>(MaxStacks);
30 static bool called =
false;
32 LOGP(info,
"GPUTPCClusterFilter called for PbPb 2023 settings");
38 const uint32_t globalStack = getGlobalStack(iSector, iRow);
39 mClusterStats[globalStack].resize(MaxTimeBin);
41 for (uint32_t k = 0; k <
clusters.nClusters[iSector][iRow]; k++) {
43 const int clTime =
static_cast<int>(cl.getTime());
44 const float clQmax = cl.getQmax();
47 if (clTime >=
static_cast<int>(mClusterStats[globalStack].
size())) {
48 mClusterStats[globalStack].resize(mClusterStats[globalStack].
size() + 445);
50 ++mClusterStats[globalStack][clTime];