]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDv0.h
Using double quotes to include header files from the same directory
[u/mrichter/AliRoot.git] / FMD / AliFMDv0.h
1 #ifndef ALIFMDV0_H
2 #define ALIFMDV0_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4  * reserved. 
5  *
6  * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7  *
8  * See cxx source for full Copyright notice                               
9  */
10
11 //____________________________________________________________________
12 //
13 //  Manager class for the FMD - Coarse version. 
14 //
15 #ifndef ALIFMD_H 
16 # include "AliFMD.h"
17 #endif
18
19 //____________________________________________________________________
20 class AliFMDv0 : public AliFMD 
21 {
22 public:
23   AliFMDv0() {}
24   AliFMDv0(const char *name, const char *title="Coarse geometry") 
25     : AliFMD(name, title, false)
26   {}
27   virtual ~AliFMDv0() 
28   {}
29
30   // Required member functions 
31   virtual Int_t  IsVersion() const {return 0;}
32   virtual void   StepManager() {}
33
34   ClassDef(AliFMDv0,1) // Coarse FMD geometry 
35 };
36
37
38 #endif
39 //____________________________________________________________________
40 //
41 // Local Variables:
42 //   mode: C++
43 // End:
44 //
45 // EOF
46 //