Skip to content
Snippets Groups Projects
Commit 3ee4d19b authored by Kilian Rosbach's avatar Kilian Rosbach
Browse files

Fix for CID 12127 'Uninitialized scalar field'

Former-commit-id: ca2abe33
parent 7d13c496
No related branches found
No related tags found
No related merge requests found
......@@ -10,13 +10,12 @@
AlignSiHit::AlignSiHit() :
m_index(-1), m_chan1(0), m_chan2(0), m_clusw(0), m_clusl(0), m_cluss(0),
m_status(0),
//new variables to AlignSiHit - in progres
//new variables to AlignSiHit - in progress
m_isOverlap(false),
m_stereo(0.), m_rphi_resid(0.), m_z_resid(0.), m_erphi_resid(0.),
m_ez_resid(0.), m_r(0.), m_phi(0.), m_z(0.), m_delzr(0.), m_sinlocal(0.),
m_trklen(0.)
m_ez_resid(0.), m_trkExtrapLocalXError(0.), m_trkExtrapLocalYError(0.),
m_r(0.), m_phi(0.), m_z(0.), m_delzr(0.), m_sinlocal(0.), m_trklen(0.)
{
// default constructor - set all to safe values via init list except arrays
for (int i=0;i<2;++i) {
......
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