Skip to content

Commit d712f26

Browse files
authored
Fix getNrof calls to use index in TrackerACTS
1 parent ef2f178 commit d712f26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Detectors/Upgrades/ALICE3/TRK/reconstruction/src/TrackerACTS.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,10 +261,10 @@ void TrackerACTS<nLayers>::clustersToTracks()
261261

262262
double totalTime = 0.;
263263
LOG(info) << "==== TRK ACTS Tracking ====";
264-
LOG(info) << "Processing " << mTimeFrame->getNrof() << " ROFs with B = " << mBz << " T";
264+
LOG(info) << "Processing " << mTimeFrame->getNrof(0) << " ROFs with B = " << mBz << " T";
265265

266266
// Process each ROF
267-
for (int iROF = 0; iROF < mTimeFrame->getNrof(); ++iROF) {
267+
for (int iROF = 0; iROF < mTimeFrame->getNrof(0); ++iROF) {
268268
LOG(info) << "Processing ROF " << iROF;
269269
// Build space points
270270
mCurState = SpacePointBuilding;

0 commit comments

Comments
 (0)