Skip to content
Snippets Groups Projects
Commit 7e0694d0 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).


Former-commit-id: 0fc15d65
parent 056a2df3
No related branches found
No related tags found
8 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles
......@@ -34,7 +34,10 @@ CaloCellNeighborsAverageCorr::CaloCellNeighborsAverageCorr(
const std::string& type,
const std::string& name,
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);
declareProperty("testMode",m_testMode=false,"test mode");
......
......@@ -37,7 +37,10 @@ CaloCellPedestalCorr::CaloCellPedestalCorr(
const std::string& name,
const IInterface* 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);
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