Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Please consider the following formatting changes
  • Loading branch information
alibuild authored and mpuccio committed Jul 21, 2022
commit 308f5dfc6e2a0f7a1469bfd0c7bb2149d151aa11
6 changes: 3 additions & 3 deletions Detectors/ITSMFT/ITS/tracking/src/Tracker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,11 @@ void Tracker::findTracks()
continue;
}
// temporaryTrack.setROFrame(rof);
#ifdef WITH_OPENMP
#ifdef WITH_OPENMP
int iThread = omp_get_thread_num();
#else
#else
int iThread = 0;
#endif
#endif
tracks[iThread].emplace_back(temporaryTrack);
}

Expand Down