]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDarrayS.h
Revision of AliTRDmcmSim + coding rule violations
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayS.h
1 #ifndef ALITRDARRAYS_H
2 #define ALITRDARRAYS_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDarrayS.h,v Exp $*/
7
8 #include <TObject.h>
9 #include <TArrayS.h>
10  
11 /////////////////////////////////////////////////////////////
12 //                                                         //
13 //  Array of shorts                                        //
14 //  Origin M.Ivanov                                        //
15 //                                                         //
16 /////////////////////////////////////////////////////////////                   
17
18 class AliTRDarrayS: public TObject, public TArrayS {
19
20 public:
21
22   AliTRDarrayS();
23   virtual ~AliTRDarrayS();
24   void Copy(TObject &a) const;
25   void Expand(Int_t n);  
26
27   ClassDef(AliTRDarrayS,1)  // An array of shorts
28
29 };
30
31 #endif 
32