]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliHit.h
Version number ++
[u/mrichter/AliRoot.git] / STEER / AliHit.h
index 720f07b45250e72674705ea07bbb92b5795724d7..b0e1886e28c55fa576600deba576eb601abb1b4c 100644 (file)
@@ -5,15 +5,13 @@
 
 /* $Id$ */
 
+// Base class for hits
+// This class is used as a base class for 
+// hits in the different detectors
+
 #include "TObject.h"
 
 class AliHit : public TObject {
-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
-
 public:
   AliHit();
   AliHit(Int_t shunt, Int_t track);
@@ -25,6 +23,12 @@ public:
   virtual Float_t Z() const {return fZ;}
   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