ROOT logo
#ifndef ALIFMD1_H
#define ALIFMD1_H
/* $Id$ */
/** @file    AliFMD1.h
    @author  Christian Holm Christensen <cholm@nbi.dk>
    @date    Sun Mar 26 18:00:56 2006
    @brief   Declaration of FMD1 declaration     
*/
// Geometry description and parameters of the FMD1 detector. The FMD1
// has only one ring.     Need to flesh out the support once it's
// defined 
//
#ifndef ALIFMDDETECTOR_H
# include "AliFMDDetector.h"
#endif
class AliFMDRing;

//__________________________________________________________________
/** @class AliFMD1 AliFMD1.h <FMD/AliFMD1.h>
    @brief Geometry description and parameters of the FMD1 detector. 
    The FMD1 has only one ring.     
    @todo Need to flesh out the support once it's defined 
    @image html FMD1.png 
    @ingroup FMD_base
*/
class AliFMD1 : public AliFMDDetector 
{
public:
  /** Constructor 
      @param inner Pointer to inner ring description  */
  AliFMD1(AliFMDRing* inner);
  /** Destructor */
  virtual ~AliFMD1() {}
  /** Initialize */
  virtual void Init();
  ClassDef(AliFMD1,1)
};

#endif
//____________________________________________________________________
//
// Local Variables:
//   mode: C++
// End:
//
// EOF
//
 AliFMD1.h:1
 AliFMD1.h:2
 AliFMD1.h:3
 AliFMD1.h:4
 AliFMD1.h:5
 AliFMD1.h:6
 AliFMD1.h:7
 AliFMD1.h:8
 AliFMD1.h:9
 AliFMD1.h:10
 AliFMD1.h:11
 AliFMD1.h:12
 AliFMD1.h:13
 AliFMD1.h:14
 AliFMD1.h:15
 AliFMD1.h:16
 AliFMD1.h:17
 AliFMD1.h:18
 AliFMD1.h:19
 AliFMD1.h:20
 AliFMD1.h:21
 AliFMD1.h:22
 AliFMD1.h:23
 AliFMD1.h:24
 AliFMD1.h:25
 AliFMD1.h:26
 AliFMD1.h:27
 AliFMD1.h:28
 AliFMD1.h:29
 AliFMD1.h:30
 AliFMD1.h:31
 AliFMD1.h:32
 AliFMD1.h:33
 AliFMD1.h:34
 AliFMD1.h:35
 AliFMD1.h:36
 AliFMD1.h:37
 AliFMD1.h:38
 AliFMD1.h:39
 AliFMD1.h:40
 AliFMD1.h:41
 AliFMD1.h:42
 AliFMD1.h:43
 AliFMD1.h:44
 AliFMD1.h:45
 AliFMD1.h:46
 AliFMD1.h:47