]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD1.cxx
98e2040b60f9e21d8daf298336882a476e264eae
[u/mrichter/AliRoot.git] / FMD / AliFMD1.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 FMD1 
23 // FMD1 has only one ring, of type `inner'.  
24 // It is sitting at z=320.
25 // It is the FMD ring with highest eta
26 //
27 #include "AliFMD1.h"            // ALIFMD1_H 
28 #include "AliFMDRing.h"         // ALIFMDRING_H 
29
30
31 //====================================================================
32 ClassImp(AliFMD1)
33 #if 0
34   ; // This is to keep Emacs from indenting the next line 
35 #endif 
36
37 //____________________________________________________________________
38 AliFMD1::AliFMD1(AliFMDRing* inner) 
39   : AliFMDDetector(1, inner, 0)
40 {
41   SetInnerZ(320);
42 }
43
44
45 //____________________________________________________________________
46 //
47 // EOF
48 //