Skip to content
Snippets Groups Projects
Commit e5989cb9 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'R22_TauShotVerbose' into 'master'

tauRecTools: decrease TauShotFinder verbosity

See merge request atlas/athena!38089
parents fc2955a3 09a44f4f
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell ...@@ -263,7 +263,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell
// Next cell in phi direction // Next cell in phi direction
m_calo_id->get_neighbours(cell1Hash,LArNeighbours::nextInPhi,neigHashes); m_calo_id->get_neighbours(cell1Hash,LArNeighbours::nextInPhi,neigHashes);
if (neigHashes.size() > 1) { 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()) { if (std::find(neigHashes.begin(), neigHashes.end(), cell2Hash) != neigHashes.end()) {
return true; return true;
...@@ -272,7 +272,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell ...@@ -272,7 +272,7 @@ bool TauShotFinder::isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell
// Previous cell in phi direction // Previous cell in phi direction
m_calo_id->get_neighbours(cell1Hash,LArNeighbours::prevInPhi,neigHashes); m_calo_id->get_neighbours(cell1Hash,LArNeighbours::prevInPhi,neigHashes);
if (neigHashes.size() > 1) { 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()) { if (std::find(neigHashes.begin(), neigHashes.end(), cell2Hash) != neigHashes.end()) {
return true; return true;
...@@ -355,7 +355,7 @@ void TauShotFinder::addEtaNeighbours(const CaloCell& cell, ...@@ -355,7 +355,7 @@ void TauShotFinder::addEtaNeighbours(const CaloCell& cell,
this->addEtaNeighbours(*newCell, cellContainer, cells, depth, maxDepth, next); this->addEtaNeighbours(*newCell, cellContainer, cells, depth, maxDepth, next);
if (neigHashes.size() > 1) { 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; break;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment