Project
Loading...
Searching...
No Matches
GPUTPCClusterFilter.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#include "GPUCommonLogger.h"
16#include "GPUTPCClusterFilter.h"
18
19using namespace o2::gpu;
20
22 : mFilterType(filterType)
23{
24 if (filterType == 1) {
25 // Custom filter settings go here
26
27 } else if (filterType == 2) {
28 // PbPb23 filter
29 mClusterStats = std::make_unique<std::vector<int>[]>(MaxStacks);
30 static bool called = false;
31 if (!called) {
32 LOGP(info, "GPUTPCClusterFilter called for PbPb 2023 settings");
33 called = true;
34 }
35
36 for (uint32_t iSector = 0; iSector < GPUCA_NSECTORS; iSector++) {
37 for (uint32_t iRow = 0; iRow < GPUCA_ROW_COUNT; iRow++) {
38 const uint32_t globalStack = getGlobalStack(iSector, iRow);
39 mClusterStats[globalStack].resize(MaxTimeBin);
40
41 for (uint32_t k = 0; k < clusters.nClusters[iSector][iRow]; k++) {
42 const o2::tpc::ClusterNative& cl = clusters.clusters[iSector][iRow][k];
43 const int clTime = static_cast<int>(cl.getTime());
44 const float clQmax = cl.getQmax();
45
46 if (clQmax < 12) {
47 if (clTime >= static_cast<int>(mClusterStats[globalStack].size())) {
48 mClusterStats[globalStack].resize(mClusterStats[globalStack].size() + 445);
49 }
50 ++mClusterStats[globalStack][clTime];
51 }
52 }
53 }
54 }
55 }
56}
57
58bool GPUTPCClusterFilter::filter(uint32_t sector, uint32_t row, o2::tpc::ClusterNative& cl)
59{
60 // Return true to keep the cluster, false to drop it.
61 // May change cluster properties by modifying the cl reference.
62 // Note that this function might be called multiple times for the same cluster, in which case the final modified cl reference goes into the output clusters.
63 if (mFilterType == 2) {
64 const uint32_t globalStack = getGlobalStack(sector, row);
65 const int clTime = static_cast<int>(cl.getTime());
66 const float clQmax = cl.getQmax();
67 if ((mClusterStats[globalStack][clTime] > 40 && clQmax < 12) || (mClusterStats[globalStack][clTime] > 200)) {
68 return false;
69 }
70 }
71
72 return true;
73}
Class of a TPC cluster in TPC-native coordinates (row, time)
#define GPUCA_NSECTORS
#define GPUCA_ROW_COUNT
bool filter(uint32_t sector, uint32_t row, o2::tpc::ClusterNative &cl)
GPUTPCClusterFilter(const o2::tpc::ClusterNativeAccess &clusters, uint8_t filterType)
GLsizeiptr size
Definition glcorearb.h:659
std::vector< Cluster > clusters
std::vector< int > row