]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CONTAINERS/AliArrayI.h
MevSim interfaced through AliGenerator, first commit (Sylwester Radomski et al.)
[u/mrichter/AliRoot.git] / CONTAINERS / AliArrayI.h
1 #ifndef ALIARRAYI_H
2 #define ALIARRAYI_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ///////////////////////////////////////////////////////////////////////
9 //   Added additional functionality  to original TArrayI              //
10 //   multiple inheritance from TObject to be possible use automatic   //
11 //   branch mechanism for tree
12 //   function Expand to be possible expand array without deleting     //
13 //   array contents                                                  //
14 //                                                                   //
15 //  Origin:  Marian Ivanov, Uni. of Bratislava, ivanov@fmph.uniba.sk // 
16 //                                                                   //  
17 ///////////////////////////////////////////////////////////////////////
18
19
20 #include "TObject.h"
21 #include "TArrayI.h"
22
23 class AliArrayI: public TObject ,public TArrayI {
24 public:
25   void Expand(Int_t n);
26   ClassDef(AliArrayI,1) // Array handling
27 };
28
29 #endif //ALIARRAY_I
30