Skip to content
Snippets Groups Projects
Commit f0220c73 authored by Jyoti Prakash Biswal's avatar Jyoti Prakash Biswal
Browse files

Fixing of uninitialized member variables (const and int).

Coverity issue# 108887.
parent 8dc988b2
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