]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TRD/AliTRDarrayI.h
Move to numbers of atoms for gas mixture
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.h
... / ...
CommitLineData
1#ifndef ALITRDARRAYI_H
2#define ALITRDARRAYI_H
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
8#include <TObject.h>
9#include <TArrayI.h>
10
11/////////////////////////////////////////////////////////////
12// //
13// Array of integers //
14// Origin M.Ivanov //
15// //
16/////////////////////////////////////////////////////////////
17
18class AliTRDarrayI: public TObject, public TArrayI {
19
20public:
21
22 AliTRDarrayI();
23 virtual ~AliTRDarrayI();
24 void Copy(TObject &a) const;
25 void Expand(Int_t n);
26
27 ClassDef(AliTRDarrayI,1) // An array of integers
28
29};
30
31#endif
32