]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD3.cxx
Cache flag initialized to kTRUE. Run number initialized to -1 (A.Colla)
[u/mrichter/AliRoot.git] / FMD / AliFMD3.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    AliFMD3.cxx
17     @author  Christian Holm Christensen <cholm@nbi.dk>
18     @date    Sun Mar 26 18:26:12 2006
19     @brief   Concrete implementation of AliFMDDetector for FMD3
20 */
21 //____________________________________________________________________
22 //                                                                          
23 // Concrete implementation of AliFMDDetector 
24 //
25 // This implements the geometry for FMD3.
26 // This has 2 rings.
27 // The support of the FMD3 is a carbon-fibre cone, attached to the ITS
28 // support via flanges.  The cone also supports the beam-pipe.
29 //
30 #include "AliFMD3.h"            // ALIFMD3_H 
31 #include "AliLog.h"             // ALILOG_H
32 #include "AliFMDRing.h"         // ALIFMDRING_H 
33 #include <TMath.h>              // ROOT_TMath
34
35 //====================================================================
36 ClassImp(AliFMD3)
37 #if 0
38   ; // This is here to keep Emacs for indenting the next line
39 #endif
40
41 //____________________________________________________________________
42 AliFMD3::AliFMD3(AliFMDRing* inner, AliFMDRing* outer) 
43   : AliFMDDetector(3, inner, outer)
44 {
45   // Constructor. 
46   SetInnerZ(-62.8);
47   SetOuterZ(-75.2);
48   SetNoseZ();
49   SetNoseLowR();
50   SetNoseHighR();
51   SetNoseLength();
52   SetBackLowR();
53   SetBackHighR();
54   SetBackLength();
55   SetBeamThickness();
56   SetBeamWidth();
57   SetConeLength();
58   SetFlangeR();
59   SetNBeam();
60   SetNFlange();
61 }
62
63 //____________________________________________________________________
64 void
65 AliFMD3::Init() 
66 {
67   // Initialize 
68   AliFMDDetector::Init();
69   SetInnerHoneyHighR(GetOuterHoneyHighR());
70   Double_t zdist   = fConeLength - fBackLength - fNoseLength;
71   Double_t tdist   = fBackHighR - fNoseHighR;
72   Double_t innerZh = fInnerZ - fInner->GetRingDepth() - fHoneycombThickness;
73   Double_t outerZh = fOuterZ - fOuter->GetRingDepth() - fHoneycombThickness;
74   Double_t minZ    = TMath::Min(fNoseZ - fConeLength, outerZh);
75   fAlpha           = tdist / zdist;
76   fZ               = fNoseZ + (minZ - fNoseZ) / 2;
77   fInnerHoneyHighR = ConeR(innerZh + fHoneycombThickness,"O") - 1;
78   fOuterHoneyHighR = GetBackLowR();
79 }
80
81 //____________________________________________________________________
82 Double_t
83 AliFMD3::ConeR(Double_t z, Option_t* opt) const
84 {
85   // Calculate the cone radius at Z
86   if (fAlpha < 0) {
87     AliWarning(Form("alpha not set: %lf", fAlpha));
88     return -1;
89   }
90   if (z > fNoseZ) {
91     AliWarning(Form("z=%lf is before start of cone %lf", z, fNoseZ));
92     return -1;
93   }
94   if (z < fOuterZ - fOuter->GetRingDepth() - fHoneycombThickness) {
95     AliWarning(Form("z=%lf is after end of cone %lf", z, 
96                     fOuterZ - fOuter->GetRingDepth() - fHoneycombThickness));
97     return -1;
98   }
99   Double_t e = fBeamThickness / TMath::Cos(TMath::ATan(fAlpha));
100   if (opt[0] == 'I' || opt[1] == 'i') e *= -1;
101   if (z > fNoseZ - fNoseLength) return fNoseHighR + e;
102   if (z < fNoseZ - fConeLength + fBackLength) return fBackHighR + e;
103   Double_t r = fNoseHighR + fAlpha * TMath::Abs(z - fNoseZ + fNoseLength) + e;
104   return r;
105 }
106
107
108 //____________________________________________________________________
109 //
110 // EOF
111 //