ROOT logo
//
// $Id$
//
#ifndef ALIFMD2_H
#define ALIFMD2_H
/** @file    AliFMD2.h
    @author  Christian Holm Christensen <cholm@nbi.dk>
    @date    Sun Mar 26 18:25:28 2006
    @brief   Geometry parameters of the FMD2 detector. 
*/
// Geometry parameters of the FMD2 detector. This has two rings.
// Other than that it's fairly straight forward.   Needs to make the
// full support stuff. 
//
#ifndef ALIFMDDETECTOR_H
# include "AliFMDDetector.h"
#endif

//____________________________________________________________________
/** @class AliFMD2 AliFMD2.h <FMD/AliFMD2.h>
    @brief Geometry parameters of the FMD2 detector. 
    This has two rings. 
    @todo Flesh out support once it's defined 
    @image html FMD2.png 
    @ingroup FMD_base
*/
class AliFMD2 : public AliFMDDetector 
{
public: 
  /** Constructor 
      @param inner Pointer to inner ring description 
      @param outer Pointer to outer ring description */
  AliFMD2(AliFMDRing* inner, AliFMDRing* outer);
  /** Destructor */
  virtual ~AliFMD2() {}
  /** Initialize the geometry */
  virtual void Init();
  ClassDef(AliFMD2, 1);
};

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