]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD2.cxx
350c035988d134aab008d73e636367a7b7419bcd
[u/mrichter/AliRoot.git] / FMD / AliFMD2.cxx
1 /**************************************************************************
2  * Copyright(c) 2004, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15 /* $Id$ */
16 /** @file    AliFMD2.cxx
17     @author  Christian Holm Christensen <cholm@nbi.dk>
18     @date    Sun Mar 26 18:25:51 2006
19     @brief   Concrete implementation of AliFMDDetector for FMD2
20 */
21 //____________________________________________________________________
22 //                                                                          
23 // Concrete implementation of AliFMDDetector 
24 //
25 // This implements the geometry for FMD2
26 // The FMD2 has two ring, one of both types. 
27 // FMD2 is mounted on the space-frame via 4 flanges
28 // Support is not fleshed ot yet. 
29 //
30 #include "AliFMD2.h"            // ALIFMD2_H 
31 // #include "AliFMDRing.h"              // ALIFMDRING_H 
32
33 //====================================================================
34 ClassImp(AliFMD2)
35 #if 0
36   ; // This is here to keep Emacs for indenting the next line
37 #endif
38
39 //____________________________________________________________________
40 AliFMD2::AliFMD2(AliFMDRing* inner, AliFMDRing* outer) 
41   : AliFMDDetector(2, inner, outer)
42 {
43   // Constructor 
44   SetInnerZ(83.4);
45   SetOuterZ(75.2);
46 }
47
48
49 //____________________________________________________________________
50 void
51 AliFMD2::Init() 
52 {
53   // Initialize 
54   AliFMDDetector::Init();
55   SetInnerHoneyHighR(GetOuterHoneyHighR());
56 }
57
58 //____________________________________________________________________
59 //
60 // EOF
61 //