File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Detectors/ITSMFT/ITS/tracking/include/ITStracking Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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};
You can’t perform that action at this time.
0 commit comments