]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSsegmentation.cxx
Fixing coding violations and getting rid of warnings.
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentation.cxx
index d5b1b75fb7b6a2f4677efca11a707429df37dd8c..10abd1c45556f4278da63f1edd7ea49edbbac152 100644 (file)
 ClassImp(AliITSsegmentation)
 
 //_____________________________________________________________
-AliITSsegmentation::AliITSsegmentation(){
+AliITSsegmentation::AliITSsegmentation():
+fDx(0),
+fDz(0),
+fDy(0),
+fGeom(0),
+fCorr(0){
   // Default constructor
-  SetDetSize(0.,0.,0.);
-  fGeom = 0;
-  fCorr = 0;
 }
 
 //_____________________________________________________________
@@ -52,7 +55,12 @@ AliITSsegmentation& AliITSsegmentation::operator=(
 }
 //______________________________________________________________________
 AliITSsegmentation::AliITSsegmentation(const AliITSsegmentation &source):
-    TObject(source){
+    TObject(source),
+fDx(0),
+fDz(0),
+fDy(0),
+fGeom(0),
+fCorr(0){
     // copy constructor
   source.Copy(*this);
 }