]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CONTAINERS/AliArrayI.h
TPC branches now correctly diverted into Digits.TPS.root file
[u/mrichter/AliRoot.git] / CONTAINERS / AliArrayI.h
CommitLineData
a46e9031 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
23class AliArrayI: public TObject ,public TArrayI {
24public:
25 void Expand(Int_t n);
26 ClassDef(AliArrayI,1) // Array handling
27};
28
29#endif //ALIARRAY_I
30