X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=RALICE%2FAliObjMatrix.h;h=1af10191642575ce4d785882de0ac0650410b966;hb=f00081c81c76f92dbc145f7ae060d1bf4fa5a701;hp=b60e37e444870846276706ee3a4adb93ff21938c;hpb=261c0cafb78614564d53e4b802440bae991f116f;p=u%2Fmrichter%2FAliRoot.git diff --git a/RALICE/AliObjMatrix.h b/RALICE/AliObjMatrix.h index b60e37e4448..1af10191642 100644 --- a/RALICE/AliObjMatrix.h +++ b/RALICE/AliObjMatrix.h @@ -5,16 +5,17 @@ // $Id$ -#include "TObject.h" +#include "TNamed.h" #include "TObjArray.h" -#include "TRefArray.h" #include "TArrayI.h" -class AliObjMatrix : public TObject +class AliObjMatrix : public TNamed { public: AliObjMatrix(); // Default constructor virtual ~AliObjMatrix(); // Default destructor + AliObjMatrix(const AliObjMatrix& m); // Copy constructor + virtual TObject* Clone(const char* name="") const; // Make a deep copy and provide its pointer virtual void Reset(); // Reset the whole matrix structure virtual void SetOwner(Int_t own=1); // Set the owner flag for the stored objects virtual Int_t GetOwner() const; // Provide the owner flag for the stored objects @@ -42,6 +43,6 @@ class AliObjMatrix : public TObject Int_t fMaxcol; // The maximum column number index TObjArray* fObjects; // Linear reference array for fast looping over the stored objects - ClassDef(AliObjMatrix,5) // Handling of a matrix structure of objects. + ClassDef(AliObjMatrix,7) // Handling of a matrix structure of objects. }; #endif