]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD2.cxx
Temporary reverting the changes introduced earlier to store the TGeo geometry. New...
[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
16 /* $Id$ */
17
18 //____________________________________________________________________
19 //                                                                          
20 // Concrete implementation of AliFMDDetector 
21 //
22 // This implements the geometry for FMD2
23 //
24 #include "AliFMD2.h"            // ALIFMD2_H 
25 #include "AliFMDRing.h"         // ALIFMDRING_H 
26
27 //====================================================================
28 ClassImp(AliFMD2)
29 #if 0
30   ; // This is here to keep Emacs for indenting the next line
31 #endif
32
33 //____________________________________________________________________
34 AliFMD2::AliFMD2(AliFMDRing* inner, AliFMDRing* outer) 
35   : AliFMDDetector(2, inner, outer)
36 {
37   SetInnerZ(83.4);
38   SetOuterZ(75.2);
39 }
40
41
42 //____________________________________________________________________
43 void
44 AliFMD2::Init() 
45 {
46   AliFMDDetector::Init();
47   SetInnerHoneyHighR(GetOuterHoneyHighR());
48 }
49
50 //____________________________________________________________________
51 //
52 // EOF
53 //