]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveDet/AliEveTOFDigitsInfo.h
Fix order of public/protected/private sections to conform with coding
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveTOFDigitsInfo.h
index 583a5ae3b2b328bf3169904ae0632b4d5d6ab6c5..d3d3aacffd37bee2d3bb3454c2db4e60a0b71c10 100644 (file)
 
   
 class AliEveTOFDigitsInfo : public TObject, public TEveRefCnt
-  {
-    AliEveTOFDigitsInfo(const AliEveTOFDigitsInfo&);            // Not implemented
-    AliEveTOFDigitsInfo& operator=(const AliEveTOFDigitsInfo&); // Not implemented
+{
+public:
+  TTree*                fTree;
+  TTree*                fNewTree;
+  AliTOFGeometry*       fGeom;
+  AliTOFDigitMap*       fTOFdigitMap;
+
+  AliEveTOFDigitsInfo();
+  virtual ~AliEveTOFDigitsInfo();
     
-  private:
-
-  protected:
-
-    void        SetTOFSegmentation();
-
-  public:
-    TTree*                fTree;
-    TTree*                fNewTree;
-    AliTOFGeometry*       fGeom;
-    AliTOFDigitMap*       fTOFdigitMap;
-
-    AliEveTOFDigitsInfo();
-    virtual ~AliEveTOFDigitsInfo();
-    
-    void SetTree(TTree* tree);
-    void ReadRaw(AliRawReader* rawReader, Int_t nEvent, Bool_t newDecoder=kTRUE);
-    void LoadDigits();
-
-    void GetDigits(Int_t nSector, Int_t nPlate, Int_t nStrip,
-                  Int_t nPadZ, Int_t nPadX,
-                  Int_t indexDigit[3]);
-    TClonesArray* GetDigits(Int_t nSector, Int_t nPlate, Int_t nStrip);
-    TClonesArray* GetDigits(Int_t nSector);
-
-    Int_t IsStripFilled(Int_t iSector, Int_t iPlate, Int_t iStrip);
-    Int_t GetTOFInfos() const;
-    //void GetDigits();
-
-    TTree* GetTree() {return fTree;};
-  
-
-    ClassDef(AliEveTOFDigitsInfo, 1);
-  }; // endclass AliEveTOFDigitsInfo
+  void SetTree(TTree* tree);
+  void ReadRaw(AliRawReader* rawReader, Int_t nEvent, Bool_t newDecoder=kTRUE);
+  void LoadDigits();
+
+  void GetDigits(Int_t nSector, Int_t nPlate, Int_t nStrip,
+                 Int_t nPadZ, Int_t nPadX,
+                 Int_t indexDigit[3]);
+  TClonesArray* GetDigits(Int_t nSector, Int_t nPlate, Int_t nStrip);
+  TClonesArray* GetDigits(Int_t nSector);
+
+  Int_t IsStripFilled(Int_t iSector, Int_t iPlate, Int_t iStrip);
+  Int_t GetTOFInfos() const;
+  //void GetDigits();
+
+  TTree* GetTree() { return fTree; }
+
+protected:
+  void SetTOFSegmentation();
+private:
+  AliEveTOFDigitsInfo(const AliEveTOFDigitsInfo&);            // Not implemented
+  AliEveTOFDigitsInfo& operator=(const AliEveTOFDigitsInfo&); // Not implemented
+
+  ClassDef(AliEveTOFDigitsInfo, 0);
+}; // endclass AliEveTOFDigitsInfo
 
 #endif