73042f01 |
1 | #ifndef ALIARRAYI_H |
2 | #define ALIARRAYI_H |
cc80f89e |
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); |
446ab814 |
19 | ClassDef(AliArrayI,1) // Array handling |
cc80f89e |
20 | }; |
21 | |
22 | #endif //ALIARRAY_I |
23 | |