Skip to content

Commit

Permalink
bm pn
Browse files Browse the repository at this point in the history
  • Loading branch information
mconcas committed Oct 12, 2024
1 parent 4974923 commit faca892
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Detectors/ITSMFT/ITS/tracking/src/TrackerTraits.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,11 @@ void TrackerTraits::findRoads(const int iteration)
CA_DEBUGGER(std::cout << "\t\t > Starting processing layer " << startLayer << std::endl);
std::vector<int> lastCellId, updatedCellId;
std::vector<CellSeed> lastCellSeed, updatedCellSeed;

TStopwatch timer2;
timer2.Start();
processNeighbours(startLayer, startLevel, mTimeFrame->getCells()[startLayer], lastCellId, updatedCellSeed, updatedCellId);
timer2.Stop();
LOGP(info, "processneigh took: {:2.3} ms", timer2.RealTime() * 1000);

int level = startLevel;
for (int iLayer{startLayer - 1}; iLayer > 0 && level > 2; --iLayer) {
Expand Down

0 comments on commit faca892

Please sign in to comment.