]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD2.cxx
Made copy constructor and assignment operator protected.
[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 // The FMD2 has two ring, one of both types. 
24 // FMD2 is mounted on the space-frame via 4 flanges
25 // Support is not fleshed ot yet. 
26 //
27 #include "AliFMD2.h"            // ALIFMD2_H 
28 #include "AliFMDRing.h"         // ALIFMDRING_H 
29
30 //====================================================================
31 ClassImp(AliFMD2)
32 #if 0
33   ; // This is here to keep Emacs for indenting the next line
34 #endif
35
36 //____________________________________________________________________
37 AliFMD2::AliFMD2(AliFMDRing* inner, AliFMDRing* outer) 
38   : AliFMDDetector(2, inner, outer)
39 {
40   // Constructor 
41   SetInnerZ(83.4);
42   SetOuterZ(75.2);
43 }
44
45
46 //____________________________________________________________________
47 void
48 AliFMD2::Init() 
49 {
50   // Initialize 
51   AliFMDDetector::Init();
52   SetInnerHoneyHighR(GetOuterHoneyHighR());
53 }
54
55 //____________________________________________________________________
56 //
57 // EOF
58 //