]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TPC/AliArrayI.h
New macro "MUONreco.C" for using the event reconstruction package in C++
[u/mrichter/AliRoot.git] / TPC / AliArrayI.h
... / ...
CommitLineData
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