Skip to content
Snippets Groups Projects
Commit fe69ce7f authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

'Fix coverity warnings 108847, 108851 (uninitialized members).' (CaloCellCorrection-00-00-39)

	* Tagging CaloCellCorrection-00-00-39.
	* Fix coverity warnings 108847, 108851 (uninitialized members).
parent d3eec41b
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,10 @@ CaloCellNeighborsAverageCorr::CaloCellNeighborsAverageCorr( ...@@ -34,7 +34,10 @@ CaloCellNeighborsAverageCorr::CaloCellNeighborsAverageCorr(
const std::string& type, const std::string& type,
const std::string& name, const std::string& name,
const IInterface* parent) const IInterface* parent)
:AthAlgTool(type, name, parent) :AthAlgTool(type, name, parent),
m_calo_dd_man(nullptr),
m_calo_id(nullptr),
m_tile_id(nullptr)
{ {
declareInterface<ICaloCellMakerTool>(this); declareInterface<ICaloCellMakerTool>(this);
declareProperty("testMode",m_testMode=false,"test mode"); declareProperty("testMode",m_testMode=false,"test mode");
......
...@@ -37,7 +37,10 @@ CaloCellPedestalCorr::CaloCellPedestalCorr( ...@@ -37,7 +37,10 @@ CaloCellPedestalCorr::CaloCellPedestalCorr(
const std::string& name, const std::string& name,
const IInterface* parent) const IInterface* parent)
: CaloCellCorrection(type, name, parent), : CaloCellCorrection(type, name, parent),
m_caloCoolIdTool("CaloCoolIdTool"),m_caloLumiBCIDTool(""),m_isMC(false) m_caloCoolIdTool("CaloCoolIdTool"),
m_cellId(nullptr),
m_caloLumiBCIDTool(""),
m_isMC(false)
{ {
declareInterface<CaloCellCorrection>(this); declareInterface<CaloCellCorrection>(this);
declareProperty("Luminosity",m_lumi0=0,"Luminosity in 10**33 units"); declareProperty("Luminosity",m_lumi0=0,"Luminosity in 10**33 units");
......
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