]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSclusterTable.cxx
Fix for the bug coming from currend SPD simulation: coupling may mess up the ditis...
[u/mrichter/AliRoot.git] / ITS / AliITSclusterTable.cxx
index 605572e16659fa9d568c711876411ccb07bf0e91..96780d4b50ec09f906ca6555bb6a1d8f603a572e 100644 (file)
 ClassImp(AliITSclusterTable)
 
 //_______________________________________________________________
-AliITSclusterTable::AliITSclusterTable():TObject(){
+AliITSclusterTable::AliITSclusterTable():TObject(),
+fOrInd(0),
+fX(0),
+fY(0),
+fZ(0),
+fSx(0),
+fSy(0),
+fSz(0),
+fPhi(0),
+fLam(0){
   //Default constructor
-  fX = 0;
-  fY = 0;
-  fZ = 0;
-  fSx= 0;
-  fSy= 0;
-  fSz= 0;
-  fPhi=0;
-  fLam=0;
-  fOrInd=0;
+
 }
 //_______________________________________________________________
-AliITSclusterTable::AliITSclusterTable(Float_t x, Float_t y, Float_t z, Float_t sx, Float_t sy, Float_t sz, Double_t phi, Double_t lambda, Int_t index){
+AliITSclusterTable::AliITSclusterTable(Double_t x, Double_t y, Double_t z, Double_t sx, Double_t sy, Double_t sz, Double_t phi, Double_t lambda, Int_t index):
+fOrInd(index),
+fX(x),
+fY(y),
+fZ(z),
+fSx(sx),
+fSy(sy),
+fSz(sz),
+fPhi(phi),
+fLam(lambda){
   //Default constructor
-  fX = x;
-  fY = y;
-  fZ = z;
-  fSx= sx;
-  fSy= sy;
-  fSz= sz;
-  fPhi=phi;
-  fLam=lambda;
-  fOrInd=index;
+
 }