From cebf8fbdb288a6200ee9d91140f8583b94f34720 Mon Sep 17 00:00:00 2001 From: Marilena Bandieramonte <marilena.bandieramonte@cern.ch> Date: Fri, 7 Feb 2020 16:53:40 +0100 Subject: [PATCH] Debug messages commented out --- GeoSpecialShapes/src/LArCustomShape.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GeoSpecialShapes/src/LArCustomShape.cxx b/GeoSpecialShapes/src/LArCustomShape.cxx index 86af121..1405875 100644 --- a/GeoSpecialShapes/src/LArCustomShape.cxx +++ b/GeoSpecialShapes/src/LArCustomShape.cxx @@ -100,8 +100,8 @@ LArCustomShape::LArCustomShape(const std::string& a_shapeName) //#endif // XAOD_STANDALONE { //#ifdef XAOD_STANDALONE - std::cout << "LArCustomShape::LArCustomShape()" << std::endl; - std::cout << "Constructor -- Creating the calculator..." << std::endl; + //std::cout << "LArCustomShape::LArCustomShape()" << std::endl; + //std::cout << "Constructor -- Creating the calculator..." << std::endl; if ( createCalculator( s_calculatorTypes.at(a_shapeName) ) == 1 ) { // map.at throws std::out_of_range exception on unknown shape name std::string error = std::string("Can't create LArWheelCalculator for name ") + a_shapeName + " in LArCustomShape constructor"; throw std::runtime_error(error); @@ -134,7 +134,7 @@ LArCustomShape::~LArCustomShape() //#if defined XAOD_STANDALONE int LArCustomShape::createCalculator(const CalcDef_t & cdef) { // LArG4::LArWheelCalculator_t wheelType, int zside - std::cout << "LArCustomShape::createCalculator()" << std::endl; + //std::cout << "LArCustomShape::createCalculator()" << std::endl; LArG4::LArWheelCalculator_t wheelType = cdef.first; int zside = cdef.second; @@ -147,7 +147,7 @@ int LArCustomShape::createCalculator(const CalcDef_t & cdef) { // LArG4::LArWhee return 1; else return 0; - std::cout << "createCalculator() - done." << std::endl; + //std::cout << "createCalculator() - done." << std::endl; } //#else // XAOD_STANDALONE -- GitLab