]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding the forgotten initialization of the misaligned x-coordinate of the clusters...
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 6 Feb 2007 17:11:10 +0000 (17:11 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 6 Feb 2007 17:11:10 +0000 (17:11 +0000)
ITS/AliITSRecPoint.cxx
ITS/AliITSRecPoint.h

index 792ef046ed9ffea6998f8dd437e96746eef2a578..b8d55656a6b810740867324de9181f8d7a2e7462 100644 (file)
@@ -37,6 +37,7 @@ ClassImp(AliITSRecPoint)
 
 //_____________________________________________________________
 AliITSRecPoint::AliITSRecPoint(): AliCluster(),
+fX(0),
 fXloc(0),
 fZloc(0),
 fdEdX(0),
@@ -54,6 +55,7 @@ fGeom(0){
 
 //_____________________________________________________________
 AliITSRecPoint::AliITSRecPoint(AliITSgeom* geom): AliCluster(),
+fX(0),
 fXloc(0),
 fZloc(0),
 fdEdX(0),
@@ -72,6 +74,7 @@ fGeom(geom) {
 
 //________________________________________________________________________
 AliITSRecPoint::AliITSRecPoint(Int_t module,AliITSgeom* geom,Int_t *lab,Float_t *hit, Int_t *info):AliCluster(lab,hit),
+fX(0),
 fXloc(0),
 fZloc(0),
 fdEdX(0),
@@ -103,6 +106,7 @@ fGeom(geom)
 }
 //_______________________________________________________________________
 AliITSRecPoint::AliITSRecPoint(const AliITSRecPoint& pt):AliCluster(pt),
+fX(pt.fX),
 fXloc(pt.fXloc),
 fZloc(pt.fZloc),
 fdEdX(pt.fdEdX),
@@ -131,6 +135,7 @@ AliITSRecPoint& AliITSRecPoint::operator=(const AliITSRecPoint& source){
 
 //________________________________________________________________________
 AliITSRecPoint::AliITSRecPoint(Int_t *lab,Float_t *hit, Int_t *info):AliCluster(lab,hit),
+fX(0),
 fXloc(0),
 fZloc(0),
 fdEdX(0),
index 4bfb17e5a34cc7e5671efbe197c1e1198ff2ef88..56b026068c1e5c30824a614cef104fdf47986b6e 100644 (file)
@@ -119,7 +119,7 @@ class AliITSRecPoint : public AliCluster {
     
   AliITSgeom* fGeom;     //!pointer to ITS geometry
 
-  ClassDef(AliITSRecPoint,2)  // AliITSRecPoint class
+  ClassDef(AliITSRecPoint,3)  // AliITSRecPoint class
 };
 // Input and output function for standard C++ input/output.
 ostream& operator<<(ostream &os,AliITSRecPoint &source);