]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliHit.h
Possibility to define the magnetic field in the reconstruction (Yu.Belikov)
[u/mrichter/AliRoot.git] / STEER / AliHit.h
index 9413cea319fc87cbd0fdb97565d5d3fb8e969c83..3985ab4eeb8b031757cf43bd7430b00a2315b5fb 100644 (file)
@@ -8,12 +8,6 @@
 #include "TObject.h"
 
 class AliHit : public TObject {
-public:
-  Int_t     fTrack;  // Track number
-  Float_t   fX;      // X position of the hit
-  Float_t   fY;      // Y position of the hit
-  Float_t   fZ;      // Z position of the hit
-
 public:
   AliHit();
   AliHit(Int_t shunt, Int_t track);
@@ -23,8 +17,14 @@ public:
   virtual Float_t X() const {return fX;}
   virtual Float_t Y() const {return fY;}
   virtual Float_t Z() const {return fZ;}
-  virtual Float_t Track() const {return fTrack;}
+  virtual Int_t Track() const {return fTrack;}
   
+protected:
+  Int_t     fTrack;  // Track number
+  Float_t   fX;      // X position of the hit
+  Float_t   fY;      // Y position of the hit
+  Float_t   fZ;      // Z position of the hit
+
   ClassDef(AliHit,1)  //Base class for all Alice hits
 };
 #endif