]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDarrayI.h
New&delete used for array with variable size
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.h
1 #ifndef ALITRDARRAYI_H
2 #define ALITRDARRAYI_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDarrayI.h,v */
7
8 #include <TObject.h>
9 #include <TArrayI.h>
10
11 class AliTRDarrayI: public TObject, public TArrayI {
12
13 public:
14
15   AliTRDarrayI();
16   virtual ~AliTRDarrayI();
17   void Copy(TObject &a);
18   void Expand(Int_t n);  
19
20   ClassDef(AliTRDarrayI,1)  // An array of integers
21
22 };
23
24 #endif 
25