]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDarrayI.h
- Dipole rotated wr to ALICE coordinate system
[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
a6dd11e9 6/* $Id$*/
f7336fa3 7
793ff80c 8#include <TObject.h>
9#include <TArrayI.h>
0a29d0f1 10
11/////////////////////////////////////////////////////////////
12// //
13// Array of integers //
14// Origin M.Ivanov //
15// //
16/////////////////////////////////////////////////////////////
f7336fa3 17
728f2744 18class AliTRDarrayI: public TObject, public TArrayI {
f7336fa3 19
20public:
21
728f2744 22 AliTRDarrayI();
793ff80c 23 virtual ~AliTRDarrayI();
e0d47c25 24 void Copy(TObject &a) const;
f7336fa3 25 void Expand(Int_t n);
26
793ff80c 27 ClassDef(AliTRDarrayI,1) // An array of integers
f7336fa3 28
29};
30
31#endif
32