Skip to content

Commit 07c3649

Browse files
committed
iroad
1 parent acea668 commit 07c3649

File tree

1 file changed

+3
-3
lines changed
  • Detectors/ITSMFT/ITS/tracking/include/ITStracking

1 file changed

+3
-3
lines changed

Detectors/ITSMFT/ITS/tracking/include/ITStracking/Road.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ class Road final
4545
GPUhd() void resetRoad()
4646
{
4747
for (int i = 0; i < maxRoadSize; i++) {
48-
mCellIds[i] = constants::UnusedIndex;
48+
mCellIds[i] = constants::its::UnusedIndex;
4949
}
5050
mRoadSize = 0;
5151
}
5252

5353
GPUhd() void addCell(int cellLayer, int cellId)
5454
{
55-
if (mCellIds[cellLayer] == constants::UnusedIndex) {
55+
if (mCellIds[cellLayer] == constants::its::UnusedIndex) {
5656
++mRoadSize;
5757
}
5858

5959
mCellIds[cellLayer] = cellId;
6060
}
6161

6262
private:
63-
int mCellIds[maxRoadSize]{constants::UnusedIndex};
63+
int mCellIds[maxRoadSize]{constants::its::UnusedIndex};
6464
uint8_t mRoadSize{0};
6565
bool mIsFakeRoad{false};
6666
};

0 commit comments

Comments
 (0)