1 /**************************************************************************
2 * Copyright(c) 1998-2004, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 //_________________________________________________________________________
19 // Main class for TRD1 geometry of Shish-Kebab case.
20 // Author: Aleksei Pavlinov(WSU).
21 // Sep 20004 - Nov 2006
22 // See web page with description of Shish-Kebab geometries:
23 // http://pdsfweb01.nersc.gov/~pavlinov/ALICE/SHISHKEBAB/RES/shishkebabALICE.html
24 // Nov 9,2006 - added case of 3X3
25 //_________________________________________________________________________
28 #include "AliEMCALShishKebabTrd1Module.h"
30 #include "AliEMCALGeometry.h"
32 #include <Riostream.h>
34 ClassImp(AliEMCALShishKebabTrd1Module)
36 AliEMCALGeometry *AliEMCALShishKebabTrd1Module::fgGeometry=0;
37 Double_t AliEMCALShishKebabTrd1Module::fga=0.;
38 Double_t AliEMCALShishKebabTrd1Module::fga2=0.;
39 Double_t AliEMCALShishKebabTrd1Module::fgb=0.;
40 Double_t AliEMCALShishKebabTrd1Module::fgr=0.;
41 Double_t AliEMCALShishKebabTrd1Module::fgangle=0.; // around one degree
42 Double_t AliEMCALShishKebabTrd1Module::fgtanBetta=0; //
44 //_____________________________________________________________________________
45 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(Double_t theta, AliEMCALGeometry *g)
61 // theta in radians ; first object shold be with theta=pi/2.
63 fTheta = TMath::PiOver2();
68 } else Warning("AliEMCALShishKebabTrd1Module(theta)","You should call this constractor just once !!");
70 AliInfo(Form("AliEMCALShishKebabTrd1Module - first module: theta %1.4f geometry %s",fTheta,g->GetName()));
73 //_____________________________________________________________________________
74 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(AliEMCALShishKebabTrd1Module &leftNeighbor)
90 // printf("** Left Neighbor : %s **\n", leftNeighbor.GetName());
91 fTheta = leftNeighbor.GetTheta() - fgangle;
93 TObject::SetUniqueID(leftNeighbor.GetUniqueID()+1);
95 Init(leftNeighbor.GetA(),leftNeighbor.GetB());
98 //________________________________________________________________
99 AliEMCALShishKebabTrd1Module::AliEMCALShishKebabTrd1Module(const AliEMCALShishKebabTrd1Module& mod)
100 : TNamed(mod.GetName(),mod.GetTitle()),
104 fThetaA(mod.fThetaA),
113 for (Int_t i=0; i<3; i++) fOK3X3[i] = mod.fOK3X3[i];
116 //________________________________________________________________
117 void AliEMCALShishKebabTrd1Module::Init(Double_t A, Double_t B)
119 // Define parameter module from parameters A,B from previos.
120 Double_t yl = (fgb/2)*TMath::Sin(fTheta) + (fga/2)*TMath::Cos(fTheta) + fgr, y = yl;
121 Double_t xl = (yl - B) / A; // y=A*x+B
123 // Double_t xp1 = (fga/2. + fgb/2.*fgtanBetta)/(TMath::Sin(fTheta) + fgtanBetta*TMath::Cos(fTheta));
124 // printf(" xp1 %9.3f \n ", xp1);
125 // xp1 == xp => both methods give the same results - 3-feb-05
126 Double_t alpha = TMath::Pi()/2. + fgangle/2;
127 Double_t xt = (fga+fga2)*TMath::Tan(fTheta)*TMath::Tan(alpha)/(4.*(1.-TMath::Tan(fTheta)*TMath::Tan(alpha)));
128 Double_t yt = xt / TMath::Tan(fTheta), xp = TMath::Sqrt(xt*xt + yt*yt);
129 Double_t x = xl + xp;
131 // printf(" yl %9.3f | xl %9.3f | xp %9.3f \n", yl, xl, xp);
133 // have to define A and B;
134 Double_t yCprev = fgr + fga*TMath::Cos(fTheta);
135 Double_t xCprev = (yCprev - B) / A;
136 Double_t xA = xCprev + fga*TMath::Sin(fTheta), yA = fgr;
138 fThetaA = fTheta - fgangle/2.;
139 fA = TMath::Tan(fThetaA); // !!
145 void AliEMCALShishKebabTrd1Module::DefineAllStaff()
148 // Centers of cells - 2X2 case
149 Double_t kk1 = (fga+fga2)/(2.*4.); // kk1=kk2
151 Double_t xk1 = fOK.X() - kk1*TMath::Sin(fTheta);
152 Double_t yk1 = fOK.Y() + kk1*TMath::Cos(fTheta) - fgr;
155 Double_t xk2 = fOK.X() + kk1*TMath::Sin(fTheta);
156 Double_t yk2 = fOK.Y() - kk1*TMath::Cos(fTheta) - fgr;
159 // Centers of cells - 3X3 case; Nov 9,2006
160 fOK3X3[1].Set(fOK.X(), fOK.Y()-fgr); // coincide with module center
162 kk1 = ((fga+fga2)/4. + fga/6.)/2.;
164 xk1 = fOK.X() - kk1*TMath::Sin(fTheta);
165 yk1 = fOK.Y() + kk1*TMath::Cos(fTheta) - fgr;
166 fOK3X3[0].Set(xk1,yk1);
168 xk2 = fOK.X() + kk1*TMath::Sin(fTheta);
169 yk2 = fOK.Y() - kk1*TMath::Cos(fTheta) - fgr;
170 fOK3X3[2].Set(xk2,yk2);
172 // May 15, 2006; position of module(cells) center face
173 fOB.Set(fOK.X()-fgb/2.*TMath::Cos(fTheta), fOK.Y()-fgb/2.*TMath::Sin(fTheta)-fgr);
174 fOB1.Set(fOB.X()-fga/4.*TMath::Sin(fTheta), fOB.Y()+fga/4.*TMath::Cos(fTheta));
175 fOB2.Set(fOB.X()+fga/4.*TMath::Sin(fTheta), fOB.Y()-fga/4.*TMath::Cos(fTheta));
176 // Jul 30, 2007 - for taking into account a position of shower maximum
177 fThetaOB1 = fTheta - fgangle/4.; // ??
178 fThetaOB2 = fTheta + fgangle/4.;
181 //_____________________________________________________________________________
182 void AliEMCALShishKebabTrd1Module::DefineFirstModule()
184 // Define first module
185 fOK.Set(fga2/2., fgr + fgb/2.); // position the center of module vs o
187 // parameters of right line : y = A*z + B in system where zero point is IP.
188 fThetaA = fTheta - fgangle/2.;
189 fA = TMath::Tan(fThetaA);
190 Double_t xA = fga/2. + fga2/2., yA = fgr;
193 TObject::SetUniqueID(1); //
198 //_____________________________________________________________________________
199 void AliEMCALShishKebabTrd1Module::DefineName(Double_t theta)
201 // Define name of object
202 SetName(Form("%2i(%5.2f)", TObject::GetUniqueID(), theta*TMath::RadToDeg()));
205 //_____________________________________________________________________________
206 Bool_t AliEMCALShishKebabTrd1Module::GetParameters()
208 // Get needing module parameters from EMCAL geometry
209 if(!fgGeometry) fgGeometry = AliEMCALGeometry::GetInstance();
210 TString sn(fgGeometry->GetName()); // 2-Feb-05
213 Warning("GetParameters()"," No geometry ");
217 fga = (Double_t)fgGeometry->GetEtaModuleSize();
218 fgb = (Double_t)fgGeometry->GetLongModuleSize();
219 fgangle = Double_t(fgGeometry->GetTrd1Angle())*TMath::DegToRad();
220 fgtanBetta = TMath::Tan(fgangle/2.);
221 fgr = (Double_t)fgGeometry->GetIPDistance();
223 if(!sn.Contains("TRD2")) fgr += fgGeometry->GetSteelFrontThickness();
225 fga2 = Double_t(fgGeometry->Get2Trd1Dx2());
231 //_____________________________________________________________________________
232 void AliEMCALShishKebabTrd1Module::PrintShish(int pri) const
236 printf("PrintShish() \n a %7.3f:%7.3f | b %7.2f | r %7.2f \n TRD1 angle %7.6f(%5.2f) | tanBetta %7.6f",
237 fga, fga2, fgb, fgr, fgangle, fgangle*TMath::RadToDeg(), fgtanBetta);
238 printf(" fTheta %f : %5.2f : cos(theta) %f\n",
239 fTheta, GetThetaInDegree(),TMath::Cos(fTheta));
241 printf(" %i |%s| theta %f : fOK.Phi = %f(%5.2f)\n",
242 GetUniqueID(), GetName(), fTheta, fOK.Phi(),fOK.Phi()*TMath::RadToDeg());
243 printf(" A %f B %f | fThetaA %7.6f(%5.2f)\n", fA,fB, fThetaA,fThetaA*TMath::RadToDeg());
244 printf(" fOK : X %9.4f: Y %9.4f : eta %5.3f\n", fOK.X(), fOK.Y(), GetEtaOfCenterOfModule());
245 printf(" fOK1 : X %9.4f: Y %9.4f : (local, ieta=2)\n", fOK1.X(), fOK1.Y());
246 printf(" fOK2 : X %9.4f: Y %9.4f : (local, ieta=1)\n\n", fOK2.X(), fOK2.Y());
247 printf(" fOB : X %9.4f: Y %9.4f \n", fOB.X(), fOB.Y());
248 printf(" fOB1 : X %9.4f: Y %9.4f (local, ieta=2)\n", fOB1.X(), fOB1.Y());
249 printf(" fOB2 : X %9.4f: Y %9.4f (local, ieta=1)\n", fOB2.X(), fOB2.Y());
252 for(int ieta=0; ieta<3; ieta++) {
253 printf(" fOK3X3[%i] : X %9.4f: Y %9.4f (local) \n", ieta, fOK3X3[ieta].X(), fOK3X3[ieta].Y());
256 GetMaxEtaOfModule(pri);
261 //_____________________________________________________________________________
262 Double_t AliEMCALShishKebabTrd1Module::GetThetaInDegree() const
264 return fTheta*TMath::RadToDeg();
267 //_____________________________________________________________________________
268 Double_t AliEMCALShishKebabTrd1Module::GetEtaOfCenterOfModule() const
270 return -TMath::Log(TMath::Tan(fOK.Phi()/2.));
273 void AliEMCALShishKebabTrd1Module::GetPositionAtCenterCellLine(Int_t ieta, Double_t dist, TVector2 &v)
276 static Double_t theta=0., x=0., y=0.;
286 x = v.X() + TMath::Cos(theta) * dist;
287 y = v.Y() + TMath::Sin(theta) * dist;
289 //printf(" GetPositionAtCenterCellLine() : dist %f : ieta %i : x %f | y %f \n", dist, ieta, x, y);
293 //_____________________________________________________________________________
294 Double_t AliEMCALShishKebabTrd1Module::GetMaxEtaOfModule(int pri) const
296 // Right bottom point of module
297 Double_t xBottom = (fgr - fB) / fA;
298 Double_t thetaBottom = TMath::ATan2(fgr, xBottom);
299 Double_t etaBottom = ThetaToEta(thetaBottom);
300 // Right top point of module
301 Double_t l = fgb / TMath::Cos(fgangle/2.); // length of lateral module side
302 Double_t xTop = xBottom + l*TMath::Cos(TMath::ATan(fA));
303 Double_t yTop = fA*xTop + fB;
304 Double_t thetaTop = TMath::ATan2(yTop, xTop);
305 Double_t etaTop = ThetaToEta(thetaTop);
308 printf(" Right bottom point of module : eta %5.4f : theta %6.4f (%6.2f) \n",
309 etaBottom, thetaBottom, thetaBottom * TMath::RadToDeg());
310 printf(" Right top point of module : eta %5.4f : theta %6.4f (%6.2f) \n",
311 etaTop, thetaTop, thetaTop * TMath::RadToDeg());
313 return etaBottom>etaTop ? etaBottom : etaTop;