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

'Fix coverity warnings 108495-108498 (uninitialized members).' (LArRecUtils-00-14-46)

	* Tagging LArRecUtils-00-14-46.
	* Fix coverity warnings 108495-108498 (uninitialized members).


Former-commit-id: 66612eb2e5e8c8b4fa8b2e2247652a2193dca72e
parent 127857e9
No related merge requests found
......@@ -21,7 +21,8 @@ LArADC2MeVTool::LArADC2MeVTool(const std::string& type,
const IInterface* parent)
:
AthAlgTool(type, name, parent) ,
m_cablingService(NULL),
m_lar_on_id(nullptr),
m_cablingService(nullptr),
m_larmcsym("LArMCSymTool"),
m_IOVDbSvc("IOVDbSvc",name),
m_keyADC2DAC("LArRamp"),
......
......@@ -18,6 +18,8 @@ LArAutoCorrNoiseTool::LArAutoCorrNoiseTool(const std::string& type,
const IInterface* parent)
: AthAlgTool(type, name, parent),
m_Nsampl(5),m_MCSym(true),
m_lar_on_id(nullptr),
m_lar_scon_id(nullptr),
m_cablingService("LArCablingService"),
m_larmcsym("LArMCSymTool"),
m_keyAutoCorr("LArAutoCorr"),
......
......@@ -20,14 +20,22 @@ LArAutoCorrTotalTool::LArAutoCorrTotalTool(const std::string& type,
const std::string& name,
const IInterface* parent)
: AthAlgTool(type, name, parent),
m_Nminbias(0),m_MCSym(false),
m_Nminbias(0),
m_NoPile(0),
m_MCSym(false),
m_useMixedOFCOpt(false),
m_cablingService(NULL),
m_lar_on_id(nullptr),
m_cablingService(nullptr),
m_larmcsym("LArMCSymTool"),m_adc2mevTool("LArADC2MeVTool"),
m_calo_id_man(nullptr),
m_lar_em_id(nullptr),
m_lar_hec_id(nullptr),
m_lar_fcal_id(nullptr),
m_keyShape("LArShape"), m_keyAutoCorr("LArAutoCorr"),
m_keyNoise("LArNoise"), m_keyfSampl("LArfSampl"),
m_keyMinBias("LArMinBias"), m_keyPedestal("LArPedestal"),
m_isMC(true),
m_nsamples_AC_OFC(0),
m_cacheValid(false),m_loadAtBegin(true),m_deltaBunch(1),m_nsamples(5),m_firstSample(0),m_isSC(false)
{
declareInterface<ILArAutoCorrTotalTool>(this);
......
......@@ -43,7 +43,10 @@ LArCellFakeProbElectronics::LArCellFakeProbElectronics(
const std::string& type,
const std::string& name,
const IInterface* parent)
: AthAlgTool(type, name, parent)
: AthAlgTool(type, name, parent),
m_idHelper(nullptr),
m_cablingService(nullptr),
m_onlineHelper(nullptr)
{
declareInterface<ICellWeightTool>(this);
declareProperty("Dead_FEC_FEB_CHAN", m_inputStringIDs);
......
......@@ -32,7 +32,14 @@ LArOFCTool::LArOFCTool(const std::string& type,
const std::string& name,
const IInterface* parent)
: AthAlgTool(type, name, parent),
m_lar_on_id(nullptr),
m_cablingService(nullptr),
m_larmcsym("LArMCSymTool"),
m_calo_id_man(nullptr),
m_lar_em_id(nullptr),
m_lar_hec_id(nullptr),
m_lar_fcal_id(nullptr),
m_calo_dd_man(nullptr),
m_keyShape("LArShape"), m_keyOFC("LArOFC"),
m_keyNoise("LArNoise"), m_keyPedestal("LArPedestal"),
m_autocorrTool("LArAutoCorrTotalTool"),
......
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