]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliArrayI.h
NodeName array dimension enlarged
[u/mrichter/AliRoot.git] / TPC / AliArrayI.h
CommitLineData
cc80f89e 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
16class AliArrayI: public TObject ,public TArrayI {
17public:
18 void Expand(Int_t n);
19 ClassDef(AliArrayI,1)
20};
21
22#endif //ALIARRAY_I
23