]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliSegmentArray.h
Removing CONTAINERS. The classes needed by TPC: AliDigits, AliSegmentArray, AliSegmen...
[u/mrichter/AliRoot.git] / TPC / AliSegmentArray.h
similarity index 96%
rename from CONTAINERS/AliSegmentArray.h
rename to TPC/AliSegmentArray.h
index ac081038eccc1035ac09c02ace383a1f064796e3..dd3957360b4cbc786ad36ba973ae15e3de63228a 100644 (file)
@@ -17,7 +17,7 @@
 class TTree;
 class TBranch;
 class TFile;
-class AliArrayI;
+class TArrayI;
 class AliSegmentID;
  
 class AliSegmentArray: public TNamed{
@@ -53,14 +53,14 @@ protected:
   AliSegmentArray(const AliSegmentArray &segment); //copy constructor
   AliSegmentArray &operator = (const AliSegmentArray & segment); //assignment operator
   TObjArray  * fSegment;  //!pointer to array of pointers to segment
-  AliArrayI    * fTreeIndex; //!pointers(index) table in tree
+  TArrayI    * fTreeIndex; //!pointers(index) table in tree
   Int_t      fNSegment; //number of alocated segments   
   TTree    * fTree;   //!tree with segment objects
   Bool_t   fTreeOwner;// flag determing the ownership of the fTree
   TBranch  * fBranch; //!total branch
 private: 
   TClass  *   fClass;    //!class type of included objects 
-  ClassDef(AliSegmentArray,2
+  ClassDef(AliSegmentArray,3
 };