Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@ void TrackerACTS<nLayers>::clustersToTracks()

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

// Process each ROF
for (int iROF = 0; iROF < mTimeFrame->getNrof(); ++iROF) {
for (int iROF = 0; iROF < mTimeFrame->getNrof(0); ++iROF) {
LOG(info) << "Processing ROF " << iROF;
// Build space points
mCurState = SpacePointBuilding;
Expand Down
Loading