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