]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDDigit.h
Removing extra semicolons (FedoraCore3, gcc 3.4.2)
[u/mrichter/AliRoot.git] / FMD / AliFMDDigit.h
index b150e39b24035077d70c12cc8c4a9198f632429b..42cde9138daa8b8dcd386007a7a6f4527b32c088 100644 (file)
@@ -1,11 +1,9 @@
 #ifndef ALIFMDDIGIT_H
 #define ALIFMDDIGIT_H
-
-//////////////////////////////////////////////////////////////////////
+//___________________________________________________________________
 //
 //  Digits classes for the FMD                
 //
-//////////////////////////////////////////////////////////////////////
 #ifndef ROOT_TObject
 # include <TObject.h>
 #endif
 //____________________________________________________________________
 class AliFMDBaseDigit : public TObject 
 {
-protected:
-  UShort_t fDetector;  // (Sub) Detector # (1,2, or 3)
-  Char_t   fRing;      // Ring ID ('I' or 'O')
-  UShort_t fSector;    // Sector # (phi division)
-  UShort_t fStrip;     // Strip # (radial division)
 public: 
   AliFMDBaseDigit();
   AliFMDBaseDigit(UShort_t detector, 
@@ -30,6 +23,12 @@ public:
   UShort_t     Sector()                   const { return fSector;   }
   UShort_t     Strip()            const { return fStrip;    }
   virtual void Print(Option_t* opt="") const;
+
+protected:
+  UShort_t fDetector;  // (Sub) Detector # (1,2, or 3)
+  Char_t   fRing;      // Ring ID ('I' or 'O')
+  UShort_t fSector;    // Sector # (phi division)
+  UShort_t fStrip;     // Strip # (radial division)
   ClassDef(AliFMDBaseDigit, 1) // Base class for FMD digits 
 };