Skip to content
Snippets Groups Projects
Commit cebf8fbd authored by Marilena Bandieramonte's avatar Marilena Bandieramonte
Browse files

Debug messages commented out

parent 18c309d1
No related branches found
No related tags found
No related merge requests found
Pipeline #1398882 passed
...@@ -100,8 +100,8 @@ LArCustomShape::LArCustomShape(const std::string& a_shapeName) ...@@ -100,8 +100,8 @@ LArCustomShape::LArCustomShape(const std::string& a_shapeName)
//#endif // XAOD_STANDALONE //#endif // XAOD_STANDALONE
{ {
//#ifdef XAOD_STANDALONE //#ifdef XAOD_STANDALONE
std::cout << "LArCustomShape::LArCustomShape()" << std::endl; //std::cout << "LArCustomShape::LArCustomShape()" << std::endl;
std::cout << "Constructor -- Creating the calculator..." << 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 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"; std::string error = std::string("Can't create LArWheelCalculator for name ") + a_shapeName + " in LArCustomShape constructor";
throw std::runtime_error(error); throw std::runtime_error(error);
...@@ -134,7 +134,7 @@ LArCustomShape::~LArCustomShape() ...@@ -134,7 +134,7 @@ LArCustomShape::~LArCustomShape()
//#if defined XAOD_STANDALONE //#if defined XAOD_STANDALONE
int LArCustomShape::createCalculator(const CalcDef_t & cdef) { // LArG4::LArWheelCalculator_t wheelType, int zside 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; LArG4::LArWheelCalculator_t wheelType = cdef.first;
int zside = cdef.second; int zside = cdef.second;
...@@ -147,7 +147,7 @@ int LArCustomShape::createCalculator(const CalcDef_t & cdef) { // LArG4::LArWhee ...@@ -147,7 +147,7 @@ int LArCustomShape::createCalculator(const CalcDef_t & cdef) { // LArG4::LArWhee
return 1; return 1;
else else
return 0; return 0;
std::cout << "createCalculator() - done." << std::endl; //std::cout << "createCalculator() - done." << std::endl;
} }
//#else // XAOD_STANDALONE //#else // XAOD_STANDALONE
......
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