Line data Source code
1 : #ifndef ALIFMD1_H
2 : #define ALIFMD1_H
3 : /* $Id$ */
4 : /** @file AliFMD1.h
5 : @author Christian Holm Christensen <cholm@nbi.dk>
6 : @date Sun Mar 26 18:00:56 2006
7 : @brief Declaration of FMD1 declaration
8 : */
9 : // Geometry description and parameters of the FMD1 detector. The FMD1
10 : // has only one ring. Need to flesh out the support once it's
11 : // defined
12 : //
13 : #ifndef ALIFMDDETECTOR_H
14 : # include "AliFMDDetector.h"
15 : #endif
16 : class AliFMDRing;
17 :
18 : //__________________________________________________________________
19 : /** @class AliFMD1 AliFMD1.h <FMD/AliFMD1.h>
20 : @brief Geometry description and parameters of the FMD1 detector.
21 : The FMD1 has only one ring.
22 : @todo Need to flesh out the support once it's defined
23 : @image html FMD1.png
24 : @ingroup FMD_base
25 : */
26 0 : class AliFMD1 : public AliFMDDetector
27 : {
28 : public:
29 : /** Constructor
30 : @param inner Pointer to inner ring description */
31 : AliFMD1(AliFMDRing* inner);
32 : /** Destructor */
33 0 : virtual ~AliFMD1() {}
34 : /** Initialize */
35 : virtual void Init();
36 11271454 : ClassDef(AliFMD1,1)
37 : };
38 :
39 : #endif
40 : //____________________________________________________________________
41 : //
42 : // Local Variables:
43 : // mode: C++
44 : // End:
45 : //
46 : // EOF
47 : //
|