Skip to content
Snippets Groups Projects
Commit 196d9d45 authored by Olivier Couet's avatar Olivier Couet
Browse files

- initialize members (coverity)

git-svn-id: http://root.cern.ch/svn/root/trunk@31808 27541ba8-7e3a-0410-8455-c3a389f83636
parent 6f4a68e7
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,13 @@ ClassImp(TRotMatrix) ...@@ -27,6 +27,13 @@ ClassImp(TRotMatrix)
TRotMatrix::TRotMatrix() TRotMatrix::TRotMatrix()
{ {
// RotMatrix default constructor. // RotMatrix default constructor.
for (int i=0;i<9;i++) fMatrix[i] = 0;
fNumber = 0;
fPhi = 0;
fPsi = 0;
fTheta = 0;
fType = 0;
} }
......
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