]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliArrayI.h
Update for coding convensions
[u/mrichter/AliRoot.git] / TPC / 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 //  Manager class generaol Alice segment 
10 //  segment is for example one pad row in TPC //
11 ////////////////////////////////////////////////
12
13 #include "TObject.h"
14 #include "TArrayI.h"
15
16 class AliArrayI: public TObject ,public TArrayI {
17 public:
18   void Expand(Int_t n);
19   ClassDef(AliArrayI,1) 
20 };
21
22 #endif //ALIARRAY_I
23