]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMD2.cxx
Now the full chain includes raw data.
[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
088f8e79 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.
4347b38f 26//
e802be3e 27#include "AliFMD2.h" // ALIFMD2_H
e802be3e 28#include "AliFMDRing.h" // ALIFMDRING_H
4347b38f 29
1a1fdef7 30//====================================================================
925e6570 31ClassImp(AliFMD2)
1a1fdef7 32#if 0
33 ; // This is here to keep Emacs for indenting the next line
34#endif
4347b38f 35
36//____________________________________________________________________
1a1fdef7 37AliFMD2::AliFMD2(AliFMDRing* inner, AliFMDRing* outer)
38 : AliFMDDetector(2, inner, outer)
b9ced2a3 39{
1a1fdef7 40 SetInnerZ(83.4);
41 SetOuterZ(75.2);
b9ced2a3 42}
43
4347b38f 44
45//____________________________________________________________________
1a1fdef7 46void
47AliFMD2::Init()
4347b38f 48{
1a1fdef7 49 AliFMDDetector::Init();
50 SetInnerHoneyHighR(GetOuterHoneyHighR());
4347b38f 51}
52
4347b38f 53//____________________________________________________________________
54//
55// EOF
56//