]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CONTAINERS/AliArrayS.h
added the delete of EMCAL object posted in the folder when new file is opened
[u/mrichter/AliRoot.git] / CONTAINERS / AliArrayS.h
1 #ifndef ALIARRAYS_H
2 #define ALIARRAYS_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 TArrayS              //
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 #include "TObject.h"
19 #include "TArrayS.h"
20
21
22 class AliArrayS:  public TObject,public TArrayS {
23 public:
24   void Expand(Int_t n);
25   ClassDef(AliArrayS,1) // Array handling
26 };
27 #endif //ALIARRAYS_H