]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDarrayI.h
Merge with TRD-develop
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.h
CommitLineData
8230f242 1#ifndef ALITRDARRAYI_H
2#define ALITRDARRAYI_H
f7336fa3 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTRDarrayI.h,v */
7
793ff80c 8#include <TObject.h>
9#include <TArrayI.h>
f7336fa3 10
11class AliTRDarrayI: public TObject ,public TArrayI {
12
13public:
14
793ff80c 15 virtual ~AliTRDarrayI();
dd9a6ee3 16 void Copy(TObject &a);
f7336fa3 17 void Expand(Int_t n);
18
793ff80c 19 ClassDef(AliTRDarrayI,1) // An array of integers
f7336fa3 20
21};
22
23#endif
24