diff --git a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx index c1cf8d2906aac6b44abc050d343ff2e69663819a..c3e84d54cd1c06701f0af7ab207663241871d414 100755 --- a/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArAutoCorrDecoderTool.cxx @@ -18,6 +18,7 @@ LArAutoCorrDecoderTool::LArAutoCorrDecoderTool(const std::string& type, const IInterface* parent) : AthAlgTool(type, name, parent), + m_onlineID(0), m_cablingService("LArCablingService") { declareInterface<ILArAutoCorrDecoderTool>(this); diff --git a/LArCalorimeter/LArCalibUtils/src/LArCalibShortCorrector.cxx b/LArCalorimeter/LArCalibUtils/src/LArCalibShortCorrector.cxx index 55f0ae222d4719339e5ee00817cdf9e2e216da64..43b3ad3532c5f0691c84cea5e4cb82c86a3414fa 100644 --- a/LArCalorimeter/LArCalibUtils/src/LArCalibShortCorrector.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArCalibShortCorrector.cxx @@ -103,7 +103,7 @@ StatusCode LArCalibShortCorrector::findShortedNeighbors() { }//end this channel has a short }//End loop over all identifiers - if (this->outputLevel() <= MSG::INFO) { + if (msgLvl(MSG::INFO)) { ATH_MSG_INFO ( "Found " << m_shortedNeighbors.size() << " pairs of shorted neighbors" ); std::vector<std::pair<HWIdentifier,HWIdentifier> >::const_iterator itm=m_shortedNeighbors.begin(); std::vector<std::pair<HWIdentifier,HWIdentifier> >::const_iterator itm_e=m_shortedNeighbors.end(); diff --git a/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx b/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx index bf3b4c70b08857deefc60672f951bbdda13edc08..213224179cbaf894ac09c70056e040135b521f9f 100755 --- a/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx +++ b/LArCalorimeter/LArCalibUtils/src/LArDigitOscillationCorrTool.cxx @@ -31,7 +31,9 @@ LArDigitOscillationCorrTool::LArDigitOscillationCorrTool(const std::string& type : AthAlgTool(type, name, parent) , m_priority(1400), m_nSigma(3.0), + m_eventPhase(0), m_omega(1.024e6*hertz), + m_emId(0), m_fcalId(0), m_hecId(0), m_lar_on_id(0), m_cablingService("LArCablingService") { declareInterface<ILArDigitOscillationCorrTool>(this);