Skip to content
Snippets Groups Projects
Commit 917820e5 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'CID108887_master_fix_uninitialized_pointer_new' into 'master'

Fixing of uninitialized member variables (const and int) [Coverity issue# 108887]

See merge request !4563
parents a9e871d0 f0220c73
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,14 @@ InDet::InDetTrtTrackScoringTool::InDetTrtTrackScoringTool(const std::string& t,
m_summaryTypeScore(Trk::numberOfTrackSummaryTypes),
m_trkSummaryTool("Trk::TrackSummaryTool"),
m_selectortool("InDet::InDetTrtDriftCircleCutTool"),
m_magFieldSvc("AtlasFieldSvc",n)
m_magFieldSvc("AtlasFieldSvc",n),
// Initialization of ID TRT helper
m_trtId(nullptr),
// Initialization of ScoreModifiers variables
m_maxSigmaChi2(-1),
m_maxLogProb(-1),
m_maxTrtRatio(-1),
m_maxTrtFittedRatio(-1)
{
declareInterface<Trk::ITrackScoringTool>(this);
......
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