Project
Loading...
Searching...
No Matches
CfConsts.h
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#ifndef O2_GPU_CF_CONSTS_H
16#define O2_GPU_CF_CONSTS_H
17
18#include "clusterFinderDefs.h"
19
21{
22
23GPUconstexpr() tpccf::Delta2 InnerNeighbors[8] =
24 {
25 {-1, -1},
26
27 {-1, 0},
28
29 {-1, 1},
30
31 {0, -1},
32
33 {0, 1},
34 {1, -1},
35 {1, 0},
36 {1, 1}};
37
38GPUconstexpr() tpccf::Delta2 OuterNeighbors[16] =
39 {
40 {-2, -1},
41 {-2, -2},
42 {-1, -2},
43
44 {-2, 0},
45
46 {-2, 1},
47 {-2, 2},
48 {-1, 2},
49
50 {0, -2},
51
52 {0, 2},
53
54 {2, -1},
55 {2, -2},
56 {1, -2},
57
58 {2, 0},
59
60 {2, 1},
61 {2, 2},
62 {1, 2}};
63
64GPUconstexpr() uint8_t OuterToInner[16] =
65 {
66 0, 0, 0,
67
68 1,
69
70 2, 2, 2,
71
72 3,
73
74 4,
75
76 5, 5, 5,
77
78 6,
79
80 7, 7, 7};
81
82// outer to inner mapping change for the peak counting step,
83// as the other position is the position of the peak
84GPUconstexpr() uint8_t OuterToInnerInv[16] =
85 {
86 1,
87 0,
88 3,
89 1,
90 1,
91 2,
92 4,
93 3,
94 4,
95 6,
96 5,
97 3,
98 6,
99 6,
100 7,
101 4};
102
103#define NOISE_SUPPRESSION_NEIGHBOR_NUM 34
104
105GPUconstexpr() tpccf::Delta2 NoiseSuppressionNeighbors[NOISE_SUPPRESSION_NEIGHBOR_NUM] =
106 {
107 {-2, -3},
108 {-2, -2},
109 {-2, -1},
110 {-2, 0},
111 {-2, 1},
112 {-2, 2},
113 {-2, 3},
114
115 {-1, -3},
116 {-1, -2},
117 {-1, -1},
118 {-1, 0},
119 {-1, 1},
120 {-1, 2},
121 {-1, 3},
122
123 {0, -3},
124 {0, -2},
125 {0, -1},
126
127 {0, 1},
128 {0, 2},
129 {0, 3},
130
131 {1, -3},
132 {1, -2},
133 {1, -1},
134 {1, 0},
135 {1, 1},
136 {1, 2},
137 {1, 3},
138
139 {2, -3},
140 {2, -2},
141 {2, -1},
142 {2, 0},
143 {2, 1},
144 {2, 2},
145 {2, 3}};
146
147GPUconstexpr() uint32_t NoiseSuppressionMinima[NOISE_SUPPRESSION_NEIGHBOR_NUM] =
148 {
149 (1 << 8) | (1 << 9),
150 (1 << 9),
151 (1 << 9),
152 (1 << 10),
153 (1 << 11),
154 (1 << 11),
155 (1 << 11) | (1 << 12),
156 (1 << 8) | (1 << 9),
157 (1 << 9),
158 0,
159 0,
160 0,
161 (1 << 11),
162 (1 << 11) | (1 << 12),
163 (1 << 15) | (1 << 16),
164 (1 << 16),
165 0,
166 0,
167 (1 << 17),
168 (1 << 17) | (1 << 18),
169 (1 << 21) | (1 << 22),
170 (1 << 22),
171 0,
172 0,
173 0,
174 (1 << 24),
175 (1 << 24) | (1 << 25),
176 (1 << 21) | (1 << 22),
177 (1 << 22),
178 (1 << 22),
179 (1 << 23),
180 (1 << 24),
181 (1 << 24),
182 (1 << 24) | (1 << 25)};
183
184} // namespace o2::gpu::cfconsts
185
186#endif
#define NOISE_SUPPRESSION_NEIGHBOR_NUM
Definition CfConsts.h:103
GPUconstexpr() tpccf
Definition CfConsts.h:23