]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD1.cxx
Histogram ranges changed to cut off saturation peak and noise
[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 /* $Id$ */
16 /** @file    AliFMD1.cxx
17     @author  Christian Holm Christensen <cholm@nbi.dk>
18     @date    Sun Mar 26 18:00:23 2006
19     @brief   Implementation of FMD1 parameters 
20 */
21 //____________________________________________________________________
22 //                                                                          
23 // Concrete implementation of AliFMDDetector 
24 //
25 // This implements the geometry for FMD1.  
26 // FMD1 has only one ring, of type `inner'.  
27 // It is sitting at z=320.
28 // It is the FMD ring with highest eta.  
29 // FMD1 currently has no support defined. 
30 //
31 #include "AliFMD1.h"            // ALIFMD1_H 
32 // #include "AliFMDRing.h"              // ALIFMDRING_H 
33
34
35 //====================================================================
36 ClassImp(AliFMD1)
37 #if 0
38   ; // This is to keep Emacs from indenting the next line 
39 #endif 
40
41 //____________________________________________________________________
42 AliFMD1::AliFMD1(AliFMDRing* inner) 
43   : AliFMDDetector(1, inner, 0)
44 {
45   SetInnerZ(320);
46 }
47
48
49 //____________________________________________________________________
50 //
51 // EOF
52 //