]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALShishKebabTrd1Module.cxx
56a8b1fbcabeccd05dc162d31464ff44525101cf
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALShishKebabTrd1Module.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-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 // Main class for TRD1 geometry of Shish-Kebab case.
20 // Author: Aleksei Pavlinov(WSU).
21 // Sep 20004.
22 // See web page with description of Shish-Kebab geometries:
23 // http://pdsfweb01.nersc.gov/~pavlinov/ALICE/SHISHKEBAB/RES/shishkebabALICE.html
24 //_________________________________________________________________________
25
26 #include "AliEMCALShishKebabTrd1Module.h"
27 //#include <assert.h>
28 #include "AliEMCALGeometry.h"
29
30 #include <Riostream.h>
31 #include <TMath.h>
32
33 ClassImp(AliEMCALShishKebabTrd1Module)
34
35   AliEMCALGeometry *AliEMCALShishKebabTrd1Module::fgGeometry=0; 
36   Double_t AliEMCALShishKebabTrd1Module::fga=0.; 
37   Double_t AliEMCALShishKebabTrd1Module::fga2=0.; 
38   Double_t AliEMCALShishKebabTrd1Module::fgb=0.; 
39   Double_t AliEMCALShishKebabTrd1Module::fgr=0.; 
40   Double_t AliEMCALShishKebabTrd1Module::fgangle=0.;   // around one degree 
41   Double_t AliEMCALShishKebabTrd1Module::fgtanBetta=0; //
42
43 //_____________________________________________________________________________
44 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(Double_t theta, AliEMCALGeometry *g) 
45   : TNamed(),
46     fOK(),
47     fA(0.),
48     fB(0.),
49     fThetaA(0.),
50     fTheta(theta),
51     fOK1(),
52     fOK2(),
53     fOB(),
54     fOB1(),
55     fOB2()
56
57   // theta in radians ; first object shold be with theta=pi/2.
58   if(fgGeometry==0) {
59     fTheta = TMath::PiOver2();
60     fgGeometry = g;
61     if(GetParameters()) {
62       DefineFirstModule();
63     }
64   } else Warning("AliEMCALShishKebabTrd1Module(theta)","You should call this constractor just once !!");
65   DefineName(fTheta);
66   cout<< "AliEMCALShishKebabTrd1Module - first module:  theta " << fTheta << " geometry " << g << endl;  
67 }
68
69 //_____________________________________________________________________________
70 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(AliEMCALShishKebabTrd1Module &leftNeighbor) 
71   : TNamed(),
72     fOK(),
73     fA(0.),
74     fB(0.),
75     fThetaA(0.),
76     fTheta(0.),
77     fOK1(),
78     fOK2(),
79     fOB(),
80     fOB1(),
81     fOB2()
82
83   //  printf("** Left Neighbor : %s **\n", leftNeighbor.GetName());
84   TObject::SetUniqueID(leftNeighbor.GetUniqueID()+1);
85   fTheta  = leftNeighbor.GetTheta() - fgangle; 
86   Init(leftNeighbor.GetA(),leftNeighbor.GetB());
87 }
88
89 //________________________________________________________________
90 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(const AliEMCALShishKebabTrd1Module& mod) 
91   : TNamed(mod.GetName(),mod.GetTitle()),
92     fOK(mod.fOK),
93     fA(mod.fA),
94     fB(mod.fB),
95     fThetaA(mod.fThetaA),
96     fTheta(mod.fTheta),
97     fOK1(mod.fOK1),
98     fOK2(mod.fOK2),
99     fOB(mod.fOB),
100     fOB1(mod.fOB1),
101     fOB2(mod.fOB2)
102 {
103   //copy ctor
104 }
105
106 //________________________________________________________________
107 void AliEMCALShishKebabTrd1Module::Init(Double_t A, Double_t B)
108
109   // Define parameter module from parameters A,B from previos.
110   Double_t yl = (fgb/2)*TMath::Sin(fTheta) + (fga/2)*TMath::Cos(fTheta) + fgr, y = yl;
111   Double_t xl = (yl - B) / A;     // y=A*x+B
112
113   //  Double_t xp1 = (fga/2. + fgb/2.*fgtanBetta)/(TMath::Sin(fTheta) + fgtanBetta*TMath::Cos(fTheta));
114   //  printf(" xp1 %9.3f \n ", xp1);
115   // xp1 == xp => both methods give the same results - 3-feb-05
116   Double_t alpha = TMath::Pi()/2. + fgangle/2;
117   Double_t xt = (fga+fga2)*TMath::Tan(fTheta)*TMath::Tan(alpha)/(4.*(1.-TMath::Tan(fTheta)*TMath::Tan(alpha)));
118   Double_t yt = xt / TMath::Tan(fTheta), xp = TMath::Sqrt(xt*xt + yt*yt);
119   Double_t x  = xl + xp;
120   fOK.Set(x, y);
121   //  printf(" yl %9.3f | xl %9.3f | xp %9.3f \n", yl, xl, xp);
122
123   // have to define A and B; 
124   Double_t yCprev = fgr + fga*TMath::Cos(fTheta);
125   Double_t xCprev = (yCprev - B) / A;
126   Double_t xA     = xCprev + fga*TMath::Sin(fTheta), yA = fgr;
127
128   fThetaA = fTheta - fgangle/2.;
129   fA = TMath::Tan(fThetaA); // !!
130   fB = yA - fA*xA;
131
132   DefineName(fTheta);
133   // Centers of module
134   Double_t kk1 = (fga+fga2)/(2.*4.); // kk1=kk2 
135
136   Double_t xk1 = fOK.X() - kk1*TMath::Sin(fTheta);
137   Double_t yk1 = fOK.Y() + kk1*TMath::Cos(fTheta) - fgr;
138   fOK1.Set(xk1,yk1);
139
140   Double_t xk2 = fOK.X() + kk1*TMath::Sin(fTheta);
141   Double_t yk2 = fOK.Y() - kk1*TMath::Cos(fTheta) - fgr;
142   fOK2.Set(xk2,yk2);
143
144   // May 15, 2006; position of cell face of cells 
145   fOB.Set(fOK.X()-fgb/2.*TMath::Cos(fTheta),  fOK.Y()-fgb/2.*TMath::Sin(fTheta)-fgr);
146   fOB1.Set(fOB.X()-fga/4.*TMath::Sin(fTheta), fOB.Y()+fga/4.*TMath::Cos(fTheta));
147   fOB2.Set(fOB.X()+fga/4.*TMath::Sin(fTheta), fOB.Y()-fga/4.*TMath::Cos(fTheta));
148 }
149
150 //_____________________________________________________________________________
151 void AliEMCALShishKebabTrd1Module::DefineFirstModule()
152 {
153   // Define first module
154   fOK.Set(fga2/2., fgr + fgb/2.); // position the center of module vs o
155
156   // parameters of right line : y = A*z + B in system where zero point is IP.
157   fThetaA = fTheta - fgangle/2.;
158   fA      = TMath::Tan(fThetaA);
159   Double_t xA = fga/2. + fga2/2., yA = fgr;
160   fB = yA - fA*xA;
161
162   Double_t kk1 = (fga+fga2)/(2.*4.); // kk1=kk2 
163   fOK1.Set(fOK.X() - kk1, fOK.Y()-fgr);
164   fOK2.Set(fOK.X() + kk1, fOK.Y()-fgr);
165
166   fOB.Set(fOK.X(),fOK.Y()-fgb/2.-fgr);
167   fOB1.Set(fOB.X()-fga/4., fOB.Y());
168   fOB2.Set(fOB.X()+fga/4., fOB.Y());
169
170   TObject::SetUniqueID(1); //
171 }
172
173 //_____________________________________________________________________________
174 void AliEMCALShishKebabTrd1Module::DefineName(Double_t theta)
175 {
176   // Define name of object
177   SetName(Form("%2i(%5.2f)", TObject::GetUniqueID(), theta*TMath::RadToDeg()));
178 }
179
180 //_____________________________________________________________________________
181 Bool_t AliEMCALShishKebabTrd1Module::GetParameters()
182 {
183  // Get needing module parameters from EMCAL geometry
184   if(!fgGeometry) fgGeometry = AliEMCALGeometry::GetInstance();
185   TString sn(fgGeometry->GetName()); // 2-Feb-05
186   sn.ToUpper();
187   if(!fgGeometry) {
188     Warning("GetParameters()"," No geometry ");
189     return kFALSE; 
190   }
191
192   fga        = (Double_t)fgGeometry->GetEtaModuleSize();
193   fgb        = (Double_t)fgGeometry->GetLongModuleSize();
194   fgangle    = Double_t(fgGeometry->GetTrd1Angle())*TMath::DegToRad();
195   fgtanBetta = TMath::Tan(fgangle/2.);
196   fgr        = (Double_t)fgGeometry->GetIPDistance();
197   if(!sn.Contains("TRD2")) fgr += fgGeometry->GetSteelFrontThickness();
198   fga2       = Double_t(fgGeometry->Get2Trd1Dx2());
199   //PH  PrintShish(0);
200   return kTRUE;
201 }
202
203 // service methods
204 //_____________________________________________________________________________
205 void AliEMCALShishKebabTrd1Module::PrintShish(int pri) const
206 {
207   // service method
208   if(pri>=0) {
209     printf("PrintShish() \n a %7.3f:%7.3f | b %7.2f | r %7.2f \n TRD1 angle %7.6f(%5.2f) | tanBetta %7.6f", 
210     fga, fga2, fgb, fgr, fgangle, fgangle*TMath::RadToDeg(), fgtanBetta);
211     printf(" fTheta %f : %5.2f : cos(theta) %f\n", 
212     fTheta, GetThetaInDegree(),TMath::Cos(fTheta)); 
213     if(pri>=1) {
214       printf(" %i |%s| theta %f :  fOK.Phi = %f(%5.2f)\n", 
215       GetUniqueID(), GetName(), fTheta, fOK.Phi(),fOK.Phi()*TMath::RadToDeg());
216       printf(" A %f B %f | fThetaA %7.6f(%5.2f)\n", fA,fB, fThetaA,fThetaA*TMath::RadToDeg());
217       printf(" fOK  : X %9.4f: Y %9.4f \n",  fOK.X(), fOK.Y());
218       printf(" fOK1 : X %9.4f: Y %9.4f (local, ieta=2)\n", fOK1.X(), fOK1.Y());
219       printf(" fOK2 : X %9.4f: Y %9.4f (local, ieta=1)\n\n", fOK2.X(), fOK2.Y());
220       printf(" fOB  : X %9.4f: Y %9.4f \n", fOB.X(), fOB.Y());
221       printf(" fOB1 : X %9.4f: Y %9.4f (local, ieta=2)\n", fOB1.X(), fOB1.Y());
222       printf(" fOB2 : X %9.4f: Y %9.4f (local, ieta=1)\n", fOB2.X(), fOB2.Y());
223       //      fOK.Dump();
224     }
225   }
226 }
227
228 //_____________________________________________________________________________
229 Double_t  AliEMCALShishKebabTrd1Module::GetThetaInDegree() const 
230 {
231   return fTheta*TMath::RadToDeg();
232 }
233
234 //_____________________________________________________________________________
235 Double_t  AliEMCALShishKebabTrd1Module::GetEtaOfCenterOfModule() const 
236
237   return -TMath::Log(TMath::Tan(fOK.Phi()/2.));
238 }