Skip to content

Commit 7864d56

Browse files
committed
remove print
1 parent 6881565 commit 7864d56

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

Detectors/ITSMFT/ITS/tracking/src/TrackerTraits.cxx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -470,11 +470,6 @@ void TrackerTraits<nLayers>::findCellsNeighbours(const int iteration)
470470
template <int nLayers>
471471
void TrackerTraits<nLayers>::processNeighbours(int iLayer, int iLevel, const bounded_vector<CellSeed>& currentCellSeed, const bounded_vector<int>& currentCellId, bounded_vector<CellSeed>& updatedCellSeeds, bounded_vector<int>& updatedCellsIds)
472472
{
473-
bool print = iLayer == 3 && iLevel == 2;
474-
if (iLevel < 2 || iLayer < 1) {
475-
std::cout << "Error: layer " << iLayer << " or level " << iLevel << " cannot be processed by processNeighbours" << std::endl;
476-
exit(1);
477-
}
478473
CA_DEBUGGER(std::cout << "Processing neighbours layer " << iLayer << " level " << iLevel << ", size of the cell seeds: " << currentCellSeed.size() << std::endl);
479474
updatedCellSeeds.reserve(mTimeFrame->getCellsNeighboursLUT()[iLayer - 1].size()); /// This is not the correct value, we could do a loop to count the number of neighbours
480475
updatedCellsIds.reserve(updatedCellSeeds.size());

0 commit comments

Comments
 (0)