diff --git a/Reconstruction/tauRecTools/src/TauShotFinder.cxx b/Reconstruction/tauRecTools/src/TauShotFinder.cxx index 04c9964045d9a5f5f3154ff07d0d98a51f4f0567..b47604d2e3e9d5d9cdfcb410094a149241df6f1f 100644 --- a/Reconstruction/tauRecTools/src/TauShotFinder.cxx +++ b/Reconstruction/tauRecTools/src/TauShotFinder.cxx @@ -263,7 +263,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell // Next cell in phi direction m_calo_id->get_neighbours(cell1Hash,LArNeighbours::nextInPhi,neigHashes); if (neigHashes.size() > 1) { - ATH_MSG_WARNING(cell1Hash << " has " << neigHashes.size() << " neighbours in the next phi direction !"); + ATH_MSG_DEBUG(cell1Hash << " has " << neigHashes.size() << " neighbours in the next phi direction !"); } if (std::find(neigHashes.begin(), neigHashes.end(), cell2Hash) != neigHashes.end()) { return true; @@ -272,7 +272,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell // Previous cell in phi direction m_calo_id->get_neighbours(cell1Hash,LArNeighbours::prevInPhi,neigHashes); if (neigHashes.size() > 1) { - ATH_MSG_WARNING(cell1Hash << " has " << neigHashes.size() << " neighbours in the previous phi direction !"); + ATH_MSG_DEBUG(cell1Hash << " has " << neigHashes.size() << " neighbours in the previous phi direction !"); } if (std::find(neigHashes.begin(), neigHashes.end(), cell2Hash) != neigHashes.end()) { return true; @@ -355,7 +355,7 @@ void TauShotFinder::addEtaNeighbours(const CaloCell& cell, this->addEtaNeighbours(*newCell, cellContainer, cells, depth, maxDepth, next); if (neigHashes.size() > 1) { - ATH_MSG_WARNING(cellHash << " has " << neigHashes.size() << " neighbours in the eta direction !"); + ATH_MSG_DEBUG(cellHash << " has " << neigHashes.size() << " neighbours in the eta direction !"); break; } }