]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD2.h
Added reading of conditions.csv, the configuration file
[u/mrichter/AliRoot.git] / FMD / AliFMD2.h
1 //
2 // $Id$
3 //
4 #ifndef ALIFMD2_H
5 #define ALIFMD2_H
6 /** @file    AliFMD2.h
7     @author  Christian Holm Christensen <cholm@nbi.dk>
8     @date    Sun Mar 26 18:25:28 2006
9     @brief   Geometry parameters of the FMD2 detector. 
10 */
11 // Geometry parameters of the FMD2 detector. This has two rings.
12 // Other than that it's fairly straight forward.   Needs to make the
13 // full support stuff. 
14 //
15 #ifndef ALIFMDDETECTOR_H
16 # include "AliFMDDetector.h"
17 #endif
18
19 //____________________________________________________________________
20 /** @class AliFMD2 AliFMD2.h <FMD/AliFMD2.h>
21     @brief Geometry parameters of the FMD2 detector. 
22     This has two rings. 
23     @todo Flesh out support once it's defined 
24     @image html FMD2.png 
25     @ingroup FMD_base
26 */
27 class AliFMD2 : public AliFMDDetector 
28 {
29 public: 
30   /** Constructor 
31       @param inner Pointer to inner ring description 
32       @param outer Pointer to outer ring description */
33   AliFMD2(AliFMDRing* inner, AliFMDRing* outer);
34   /** Destructor */
35   virtual ~AliFMD2() {}
36   /** Initialize the geometry */
37   virtual void Init();
38   ClassDef(AliFMD2, 1);
39 };
40
41 #endif
42 //____________________________________________________________________
43 //
44 // Local Variables:
45 //   mode: C++
46 // End:
47 //
48 //
49 // EOF
50 //