There was an error while loading. Please reload this page.
1 parent 2152195 commit f049107Copy full SHA for f049107
1 file changed
Detectors/ITSMFT/ITS/tracking/include/ITStracking/Road.h
@@ -44,9 +44,15 @@ class Road final
44
45
GPUhd() void resetRoad()
46
{
47
+#ifndef ENABLE_ITS3_4L
48
for (int i = 0; i < maxRoadSize; i++) {
49
mCellIds[i] = constants::its::UnusedIndex;
50
}
51
+#else
52
+ for (int i = 0; i < maxRoadSize + 1; i++) {
53
+ mCellIds[i] = constants::its::UnusedIndex;
54
+ }
55
+#endif
56
mRoadSize = 0;
57
58
0 commit comments