We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acea668 commit 07c3649Copy full SHA for 07c3649
1 file changed
Detectors/ITSMFT/ITS/tracking/include/ITStracking/Road.h
@@ -45,22 +45,22 @@ class Road final
45
GPUhd() void resetRoad()
46
{
47
for (int i = 0; i < maxRoadSize; i++) {
48
- mCellIds[i] = constants::UnusedIndex;
+ mCellIds[i] = constants::its::UnusedIndex;
49
}
50
mRoadSize = 0;
51
52
53
GPUhd() void addCell(int cellLayer, int cellId)
54
55
- if (mCellIds[cellLayer] == constants::UnusedIndex) {
+ if (mCellIds[cellLayer] == constants::its::UnusedIndex) {
56
++mRoadSize;
57
58
59
mCellIds[cellLayer] = cellId;
60
61
62
private:
63
- int mCellIds[maxRoadSize]{constants::UnusedIndex};
+ int mCellIds[maxRoadSize]{constants::its::UnusedIndex};
64
uint8_t mRoadSize{0};
65
bool mIsFakeRoad{false};
66
};
0 commit comments