]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDigit.h
Corrections to obey the coding conventions
[u/mrichter/AliRoot.git] / STEER / AliDigit.h
index d32afa8e6e6b0087f9923f30c43a09e385806ca6..9c33568b80e2ba34bb95101b9f0398b1d926f18b 100644 (file)
@@ -13,9 +13,6 @@
 #include "TObject.h"
 
 class AliDigit : public TObject {
-protected:
-  Int_t     fTracks[3];   //tracks number making this digit (up to 3)
-
 public:
   AliDigit();
   AliDigit(Int_t *track);
@@ -24,6 +21,9 @@ public:
   virtual Int_t GetTrack(Int_t i) const 
   {assert(0<=i&&i<=2); return fTracks[i];}
   
+protected:
+  Int_t     fTracks[3];   //tracks number making this digit (up to 3)
+
   ClassDef(AliDigit,1)  //Base class for all Alice digits
 };
 #endif