]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMD2.cxx
Revived the geometry that Alla did orginally. The code is in the classes
[u/mrichter/AliRoot.git] / FMD / AliFMD2.cxx
CommitLineData
4347b38f 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
b9ced2a3 18//____________________________________________________________________
4347b38f 19//
1a1fdef7 20// Concrete implementation of AliFMDDetector
4347b38f 21//
22// This implements the geometry for FMD2
23//
e802be3e 24#include "AliFMD2.h" // ALIFMD2_H
e802be3e 25#include "AliFMDRing.h" // ALIFMDRING_H
4347b38f 26
1a1fdef7 27//====================================================================
925e6570 28ClassImp(AliFMD2)
1a1fdef7 29#if 0
30 ; // This is here to keep Emacs for indenting the next line
31#endif
4347b38f 32
33//____________________________________________________________________
1a1fdef7 34AliFMD2::AliFMD2(AliFMDRing* inner, AliFMDRing* outer)
35 : AliFMDDetector(2, inner, outer)
b9ced2a3 36{
1a1fdef7 37 SetInnerZ(83.4);
38 SetOuterZ(75.2);
b9ced2a3 39}
40
4347b38f 41
42//____________________________________________________________________
1a1fdef7 43void
44AliFMD2::Init()
4347b38f 45{
1a1fdef7 46 AliFMDDetector::Init();
47 SetInnerHoneyHighR(GetOuterHoneyHighR());
4347b38f 48}
49
4347b38f 50//____________________________________________________________________
51//
52// EOF
53//