]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALGeoUtils.cxx
split parts of CalibAbs off into new class CalibReference
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGeoUtils.cxx
CommitLineData
0c5b726e 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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: AliEMCALGeoUtils.cxx 25590 2008-05-06 07:09:11Z prsnko $ */
17
18//_________________________________________________________________________
19// Geometry class for EMCAL : singleton
20//
21// -- Author: Magali Estienne (magali.estienne@subatech.in2p3.fr)
22
23//
24// Usage:
25// You can create the AliEMCALGeoUtils object independently from anything.
26// You have to use just the correct name of geometry. If name is empty string the
27// default name of geometry will be used.
28//
29// AliEMCALGeoUtils* geom = new AliEMCALGeoUtils("EMCAL_COMPLETE","EMCAL");
30// TGeoManager::Import("geometry.root");
31//
32// MC: If you work with MC data you have to get geometry the next way:
33// == =============================
34// !!!!!!!!! This part has to be modified
35// AliRunLoader *rl = AliRunLoader::GetRunLoader();
36// AliEMCALEMCGeometry *geom = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
37// TGeoManager::Import("geometry.root");
38
39
40// --- ROOT system ---
41
42#include <TParticle.h>
43#include <TGeoManager.h>
44#include <TGeoMatrix.h>
45#include <TList.h>
46#include <TBrowser.h>
47
48// --- Standard library ---
49//#include <Riostream.h>
50
51// --- AliRoot header files ---
52#include "AliEMCALGeoUtils.h"
53#include "AliEMCALShishKebabTrd1Module.h"
54
55ClassImp(AliEMCALGeoUtils)
56
57//____________________________________________________________________________
58AliEMCALGeoUtils::AliEMCALGeoUtils():
59 fEMCGeometry(0x0),fGeoName(0),
60 fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
61 fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
62 fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
63 fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
64 fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
65 fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
66 fShishKebabTrd1Modules(0),fParSM(0x0),fPhiModuleSize(0.),
67 fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
68 fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
69 fZLength(0.),fSampling(0.)
70{
71 // default ctor
72 // must be kept public for root persistency purposes, but should never be called by the outside world
73 fEnvelop[0] = 0.;
74 fEnvelop[1] = 0.;
75 fEnvelop[2] = 0.;
76
77}
78
79//____________________________________________________________________________
80AliEMCALGeoUtils::AliEMCALGeoUtils(const AliEMCALGeoUtils & geo)
81 : TNamed(geo),
82 fEMCGeometry(geo.fEMCGeometry),fGeoName(geo.fGeoName),
83 fKey110DEG(geo.fKey110DEG),fNCellsInSupMod(geo.fNCellsInSupMod),fNETAdiv(geo.fNETAdiv),fNPHIdiv(geo.fNPHIdiv),
84 fNCellsInModule(geo.fNCellsInModule),fPhiBoundariesOfSM(geo.fPhiBoundariesOfSM),fPhiCentersOfSM(geo.fPhiCentersOfSM),
85 fPhiCentersOfCells(geo.fPhiCentersOfCells),fCentersOfCellsEtaDir(geo.fCentersOfCellsEtaDir),
86 fCentersOfCellsPhiDir(geo.fCentersOfCellsPhiDir),fEtaCentersOfCells(geo.fEtaCentersOfCells),
87 fNCells(geo.fNCells),fNPhi(geo.fNPhi),fCentersOfCellsXDir(geo.fCentersOfCellsXDir),fArm1EtaMin(geo.fArm1EtaMin),
88 fArm1EtaMax(geo.fArm1EtaMax),fArm1PhiMin(geo.fArm1PhiMin),fArm1PhiMax(geo.fArm1PhiMax),fEtaMaxOfTRD1(geo.fEtaMaxOfTRD1),
89 fShishKebabTrd1Modules(geo.fShishKebabTrd1Modules),fParSM(geo.fParSM),fPhiModuleSize(geo.fPhiModuleSize),
90 fEtaModuleSize(geo.fEtaModuleSize),fPhiTileSize(geo.fPhiTileSize),fEtaTileSize(geo.fEtaTileSize),fNZ(geo.fNZ),
91 fIPDistance(geo.fIPDistance),fLongModuleSize(geo.fLongModuleSize),fShellThickness(geo.fShellThickness),
92 fZLength(geo.fZLength),fSampling(geo.fSampling)
93{
94 fEnvelop[0] = geo.fEnvelop[0];
95 fEnvelop[1] = geo.fEnvelop[1];
96 fEnvelop[2] = geo.fEnvelop[2];
97}
98
99//____________________________________________________________________________
100AliEMCALGeoUtils::AliEMCALGeoUtils(const Text_t* name, const Text_t* title)
101 : TNamed(name, title),
102 fEMCGeometry(0x0),fGeoName(0),
103 fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
104 fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
105 fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
106 fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
107 fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
108 fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
109 fShishKebabTrd1Modules(0),fParSM(0x0),fPhiModuleSize(0.),
110 fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
111 fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
112 fZLength(0.),fSampling(0.)
113{
114
115 // ctor only for normal usage
116
117 fEMCGeometry = new AliEMCALEMCGeometry(name,title);
118
119 fGeoName = fEMCGeometry->GetGeoName();
120 fKey110DEG = fEMCGeometry->GetKey110DEG();
121 fNCellsInSupMod = fEMCGeometry->GetNCellsInSupMod();
122 fNETAdiv = fEMCGeometry->GetNETAdiv();
123 fNPHIdiv = fEMCGeometry->GetNPHIdiv();
124 fNCellsInModule = fNPHIdiv*fNETAdiv;
125 static int i;
126 Int_t nSMod = fEMCGeometry->GetNumberOfSuperModules();
127 fPhiBoundariesOfSM.Set(nSMod);
128 fPhiCentersOfSM.Set(nSMod/2);
129 for(Int_t sm=0; sm<nSMod; sm++) {
130 i = sm/2;
131 fEMCGeometry->GetPhiBoundariesOfSM(sm,fPhiBoundariesOfSM[2*i],fPhiBoundariesOfSM[2*i+1]);
132 }
133
134 Double_t phiMin = 0.;
135 Double_t phiMax = 0.;
136 for(Int_t sm=0; sm<nSMod; sm++) {
137 fEMCGeometry->GetPhiBoundariesOfSM(sm,phiMin,phiMax);
138 i=sm/2;
139 fPhiCentersOfSM[i] = fEMCGeometry->GetPhiCenterOfSM(sm);
140 }
141 fNCells = fEMCGeometry->GetNCells();
142 fNPhi = fEMCGeometry->GetNPhi();
143 fEnvelop[0] = fEMCGeometry->GetEnvelop(0);
144 fEnvelop[1] = fEMCGeometry->GetEnvelop(1);
145 fEnvelop[2] = fEMCGeometry->GetEnvelop(2);
146 fArm1EtaMin = fEMCGeometry->GetArm1EtaMin();
147 fArm1EtaMax = fEMCGeometry->GetArm1EtaMax();
148 fArm1PhiMin = fEMCGeometry->GetArm1PhiMin();
149 fArm1PhiMax = fEMCGeometry->GetArm1PhiMax();
150 fShellThickness = fEMCGeometry->GetShellThickness();
151 fZLength = fEMCGeometry->GetZLength();
152 fSampling = fEMCGeometry->GetSampling();
153 fParSM = fEMCGeometry->GetSuperModulesPars();
154 fEtaModuleSize = fEMCGeometry->GetEtaModuleSize();
155 fPhiModuleSize = fEMCGeometry->GetPhiModuleSize();
156 fEtaTileSize = fEMCGeometry->GetEtaTileSize();
157 fPhiTileSize = fEMCGeometry->GetPhiTileSize();
158 fNZ = fEMCGeometry->GetNZ();
159 fIPDistance = fEMCGeometry->GetIPDistance();
160 fLongModuleSize = fEMCGeometry->GetLongModuleSize();
161
162 CreateListOfTrd1Modules();
163
164 for(Int_t smod=0; smod < fEMCGeometry->GetNumberOfSuperModules(); smod++)
165 fkSModuleMatrix[smod]=0 ;
166
167 if (AliDebugLevel()>=2) {
168 fEMCGeometry->Print();
169 PrintGeometry();
170 }
171
172}
173
174//____________________________________________________________________________
175AliEMCALGeoUtils & AliEMCALGeoUtils::operator = (const AliEMCALGeoUtils & /*rvalue*/) {
176
177 Fatal("assignment operator", "not implemented") ;
178 return *this ;
179}
180
181//____________________________________________________________________________
182AliEMCALGeoUtils::~AliEMCALGeoUtils(void)
183{
184 // dtor
185 if(fEMCGeometry){
186 delete fEMCGeometry; fEMCGeometry = 0 ;
187 }
188}
189
190
191//________________________________________________________________________________________________
192void AliEMCALGeoUtils::Browse(TBrowser* b)
193{
194 //Browse the modules
195 if(fShishKebabTrd1Modules) b->Add(fShishKebabTrd1Modules);
196}
197
198//________________________________________________________________________________________________
199Bool_t AliEMCALGeoUtils::IsFolder() const
200{
201 //Check if fShishKebabTrd1Modules is in folder
202 if(fShishKebabTrd1Modules) return kTRUE;
203 else return kFALSE;
204}
205
206//________________________________________________________________________________________________
207void AliEMCALGeoUtils::GetGlobal(const Double_t *loc, Double_t *glob, int ind) const
208{
209 // Figure out the global numbering
210 // of a given supermodule from the
211 // local numbering and the transformation
212 // matrix stored by the geometry manager (allows for misaligned
213 // geometry)
214
215// if(ind>=0 && ind < fEMCGeometry->GetNumberOfSuperModules()) {
216// TString volpath = "ALIC_1/XEN1_1/SMOD_";
217// volpath += ind+1;
218//
219// if(fKey110DEG && ind>=10) {
220// volpath = "ALIC_1/XEN1_1/SM10_";
221// volpath += ind-10+1;
222// }
223//
224// if(!gGeoManager->cd(volpath.Data()))
225// AliFatal(Form("AliEMCALGeometry::GeoManager cannot find path %s!",volpath.Data()));
226//
227// TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
228
229 const TGeoHMatrix* m = GetMatrixForSuperModule(ind);
230 if(m) {
231 m->LocalToMaster(loc, glob);
232 } else {
233 AliFatal("Geo matrixes are not loaded \n") ;
234 }
235// }
236}
237
238//________________________________________________________________________________________________
239void AliEMCALGeoUtils::GetGlobal(const TVector3 &vloc, TVector3 &vglob, int ind) const
240{
241 //Figure out the global numbering
242 //of a given supermodule from the
243 //local numbering given a 3-vector location
244
245 static Double_t tglob[3], tloc[3];
246 vloc.GetXYZ(tloc);
247 GetGlobal(tloc, tglob, ind);
248 vglob.SetXYZ(tglob[0], tglob[1], tglob[2]);
249}
250
251//________________________________________________________________________________________________
252void AliEMCALGeoUtils::GetGlobal(Int_t absId , double glob[3]) const
253{
254 // Alice numbering scheme - Jun 03, 2006
255 static Int_t nSupMod, nModule, nIphi, nIeta;
256 static double loc[3];
257
258 if (!gGeoManager || !gGeoManager->IsClosed()) {
259 AliError("Can't get the global coordinates! gGeoManager doesn't exist or it is still open!");
260 return;
261 }
262
263 glob[0]=glob[1]=glob[2]=0.0; // bad case
264 if(RelPosCellInSModule(absId, loc)) {
265 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
266
267// TString volpath = "ALIC_1/XEN1_1/SMOD_";
268// volpath += (nSupMod+1);
269//
270// if(fKey110DEG && nSupMod>=10) {
271// volpath = "ALIC_1/XEN1_1/SM10_";
272// volpath += (nSupMod-10+1);
273// }
274// if(!gGeoManager->cd(volpath.Data()))
275// AliFatal(Form("GeoManager cannot find path %s!",volpath.Data()));
276//
277// TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
278 const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
279 if(m) {
280 m->LocalToMaster(loc, glob);
281 } else {
282 AliFatal("Geo matrixes are not loaded \n") ;
283 }
284 }
285}
286
287//___________________________________________________________________
288void AliEMCALGeoUtils::GetGlobal(Int_t absId , TVector3 &vglob) const
289{
290 // Alice numbering scheme - Jun 03, 2006
291 static Double_t glob[3];
292
293 GetGlobal(absId, glob);
294 vglob.SetXYZ(glob[0], glob[1], glob[2]);
295
296}
297
298
299//______________________________________________________________________
300void AliEMCALGeoUtils::PrintCellIndexes(Int_t absId, int pri, const char *tit) const
301{
302 // Service methods
303 Int_t nSupMod, nModule, nIphi, nIeta;
304 Int_t iphi, ieta;
305 TVector3 vg;
306
307 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
308 printf(" %s | absId : %i -> nSupMod %i nModule %i nIphi %i nIeta %i \n", tit, absId, nSupMod, nModule, nIphi, nIeta);
309 if(pri>0) {
310 GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi,ieta);
311 printf(" local SM index : iphi %i : ieta %i \n", iphi,ieta);
312 GetGlobal(absId, vg);
313 printf(" vglob : mag %7.2f : perp %7.2f : z %7.2f : eta %6.4f : phi %6.4f(%6.2f) \n",
314 vg.Mag(), vg.Perp(), vg.Z(), vg.Eta(), vg.Phi(), vg.Phi()*TMath::RadToDeg());
315 }
316}
317
318//________________________________________________________________________________________________
319void AliEMCALGeoUtils::EtaPhiFromIndex(Int_t absId,Double_t &eta,Double_t &phi) const
320{
321 // Nov 16, 2006- float to double
322 // version for TRD1 only
323 static TVector3 vglob;
324 GetGlobal(absId, vglob);
325 eta = vglob.Eta();
326 phi = vglob.Phi();
327}
328
329//________________________________________________________________________________________________
330void AliEMCALGeoUtils::EtaPhiFromIndex(Int_t absId,Float_t &eta,Float_t &phi) const
331{
332 // Nov 16,2006 - should be discard in future
333 static TVector3 vglob;
334 GetGlobal(absId, vglob);
335 eta = float(vglob.Eta());
336 phi = float(vglob.Phi());
337}
338
339//
340// == Shish-kebab cases ==
341//
342//________________________________________________________________________________________________
343Int_t AliEMCALGeoUtils::GetAbsCellId(Int_t nSupMod, Int_t nModule, Int_t nIphi, Int_t nIeta) const
344{
345 // 27-aug-04;
346 // corr. 21-sep-04;
347 // 13-oct-05; 110 degree case
348 // May 31, 2006; ALICE numbering scheme:
349 // 0 <= nSupMod < fNumberOfSuperModules
350 // 0 <= nModule < fNPHI * fNZ ( fNPHI * fNZ/2 for fKey110DEG=1)
351 // 0 <= nIphi < fNPHIdiv
352 // 0 <= nIeta < fNETAdiv
353 // 0 <= absid < fNCells
354 static Int_t id=0; // have to change from 0 to fNCells-1
355 if(fKey110DEG == 1 && nSupMod >= 10) { // 110 degree case; last two supermodules
356 id = fNCellsInSupMod*10 + (fNCellsInSupMod/2)*(nSupMod-10);
357 } else {
358 id = fNCellsInSupMod*nSupMod;
359 }
360 id += fNCellsInModule *nModule;
361 id += fNPHIdiv *nIphi;
362 id += nIeta;
363 if(id<0 || id >= fNCells) {
364// printf(" wrong numerations !!\n");
365// printf(" id %6i(will be force to -1)\n", id);
366// printf(" fNCells %6i\n", fNCells);
367// printf(" nSupMod %6i\n", nSupMod);
368// printf(" nModule %6i\n", nModule);
369// printf(" nIphi %6i\n", nIphi);
370// printf(" nIeta %6i\n", nIeta);
371 id = -TMath::Abs(id); // if negative something wrong
372 }
373 return id;
374}
375
376//________________________________________________________________________________________________
377void AliEMCALGeoUtils::GetModuleIndexesFromCellIndexesInSModule(Int_t nSupMod, Int_t iphi, Int_t ieta,
378 Int_t &iphim, Int_t &ietam, Int_t &nModule) const
379{
380 // Transition from cell indexes (ieta,iphi) to module indexes (ietam,iphim, nModule)
381 static Int_t nphi;
382 nphi = GetNumberOfModuleInPhiDirection(nSupMod);
383
384 ietam = ieta/fNETAdiv;
385 iphim = iphi/fNPHIdiv;
386 nModule = ietam * nphi + iphim;
387}
388
389//________________________________________________________________________________________________
390Int_t AliEMCALGeoUtils::GetAbsCellIdFromCellIndexes(Int_t nSupMod, Int_t iphi, Int_t ieta) const
391{
392 // Transition from super module number(nSupMod) and cell indexes (ieta,iphi) to absId
393 static Int_t ietam, iphim, nModule;
394 static Int_t nIeta, nIphi; // cell indexes in module
395
396 GetModuleIndexesFromCellIndexesInSModule(nSupMod, iphi, ieta, ietam, iphim, nModule);
397
398 nIeta = ieta%fNETAdiv;
399 nIeta = fNETAdiv - 1 - nIeta;
400 nIphi = iphi%fNPHIdiv;
401
402 return GetAbsCellId(nSupMod, nModule, nIphi, nIeta);
403}
404
405//________________________________________________________________________________________________
406Bool_t AliEMCALGeoUtils::SuperModuleNumberFromEtaPhi(Double_t eta, Double_t phi, Int_t &nSupMod) const
407{
408 // Return false if phi belongs a phi cracks between SM
409
410 static Int_t i;
411
412 if(TMath::Abs(eta) > fEtaMaxOfTRD1) return kFALSE;
413
414 phi = TVector2::Phi_0_2pi(phi); // move phi to (0,2pi) boundaries
415 for(i=0; i<6; i++) {
416 if(phi>=fPhiBoundariesOfSM[2*i] && phi<=fPhiBoundariesOfSM[2*i+1]) {
417 nSupMod = 2*i;
418 if(eta < 0.0) nSupMod++;
419 AliDebug(1,Form("eta %f phi %f(%5.2f) : nSupMod %i : #bound %i", eta,phi,phi*TMath::RadToDeg(), nSupMod,i));
420 return kTRUE;
421 }
422 }
423 return kFALSE;
424}
425
426
427//________________________________________________________________________________________________
428Bool_t AliEMCALGeoUtils::GetAbsCellIdFromEtaPhi(Double_t eta, Double_t phi, Int_t &absId) const
429{
430 // Nov 17,2006
431 // stay here - phi problem as usual
432 static Int_t nSupMod, i, ieta, iphi, etaShift, nphi;
433 static Double_t absEta=0.0, d=0.0, dmin=0.0, phiLoc;
434 absId = nSupMod = - 1;
435 if(SuperModuleNumberFromEtaPhi(eta, phi, nSupMod)) {
436 // phi index first
437 phi = TVector2::Phi_0_2pi(phi);
438 phiLoc = phi - fPhiCentersOfSM[nSupMod/2];
439 nphi = fPhiCentersOfCells.GetSize();
440 if(nSupMod>=10) {
441 phiLoc = phi - 190.*TMath::DegToRad();
442 nphi /= 2;
443 }
444
445 dmin = TMath::Abs(fPhiCentersOfCells[0]-phiLoc);
446 iphi = 0;
447 for(i=1; i<nphi; i++) {
448 d = TMath::Abs(fPhiCentersOfCells[i] - phiLoc);
449 if(d < dmin) {
450 dmin = d;
451 iphi = i;
452 }
453 // printf(" i %i : d %f : dmin %f : fPhiCentersOfCells[i] %f \n", i, d, dmin, fPhiCentersOfCells[i]);
454 }
455 // odd SM are turned with respect of even SM - reverse indexes
456 AliDebug(2,Form(" iphi %i : dmin %f (phi %f, phiLoc %f ) ", iphi, dmin, phi, phiLoc));
457 // eta index
458 absEta = TMath::Abs(eta);
459 etaShift = iphi*fCentersOfCellsEtaDir.GetSize();
460 dmin = TMath::Abs(fEtaCentersOfCells[etaShift]-absEta);
461 ieta = 0;
462 for(i=1; i<fCentersOfCellsEtaDir.GetSize(); i++) {
463 d = TMath::Abs(fEtaCentersOfCells[i+etaShift] - absEta);
464 if(d < dmin) {
465 dmin = d;
466 ieta = i;
467 }
468 }
469 AliDebug(2,Form(" ieta %i : dmin %f (eta=%f) : nSupMod %i ", ieta, dmin, eta, nSupMod));
470
471 if(eta<0) iphi = (nphi-1) - iphi;
472 absId = GetAbsCellIdFromCellIndexes(nSupMod, iphi, ieta);
473
474 return kTRUE;
475 }
476 return kFALSE;
477}
478
479//________________________________________________________________________________________________
480Bool_t AliEMCALGeoUtils::CheckAbsCellId(Int_t absId) const
481{
482 // May 31, 2006; only trd1 now
483 if(absId<0 || absId >= fNCells) return kFALSE;
484 else return kTRUE;
485}
486
487//________________________________________________________________________________________________
488Bool_t AliEMCALGeoUtils::GetCellIndex(Int_t absId,Int_t &nSupMod,Int_t &nModule,Int_t &nIphi,Int_t &nIeta) const
489{
490 // 21-sep-04; 19-oct-05;
491 // May 31, 2006; ALICE numbering scheme:
492 //
493 // In:
494 // absId - cell is as in Geant, 0<= absId < fNCells;
495 // Out:
496 // nSupMod - super module(SM) number, 0<= nSupMod < fNumberOfSuperModules;
497 // nModule - module number in SM, 0<= nModule < fNCellsInSupMod/fNCellsInSupMod or(/2) for tow last SM (10th and 11th);
498 // nIphi - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv;
499 // nIeta - cell number in eta driection inside module; 0<= nIeta < fNETAdiv;
500 //
501 static Int_t tmp=0, sm10=0;
502 if(!CheckAbsCellId(absId)) return kFALSE;
503
504 sm10 = fNCellsInSupMod*10;
505 if(fKey110DEG == 1 && absId >= sm10) { // 110 degree case; last two supermodules
506 nSupMod = (absId-sm10) / (fNCellsInSupMod/2) + 10;
507 tmp = (absId-sm10) % (fNCellsInSupMod/2);
508 } else {
509 nSupMod = absId / fNCellsInSupMod;
510 tmp = absId % fNCellsInSupMod;
511 }
512
513 nModule = tmp / fNCellsInModule;
514 tmp = tmp % fNCellsInModule;
515 nIphi = tmp / fNPHIdiv;
516 nIeta = tmp % fNPHIdiv;
517
518 return kTRUE;
519}
520
521//________________________________________________________________________________________________
522Int_t AliEMCALGeoUtils::GetSuperModuleNumber(Int_t absId) const
523{
524 // Return the number of the supermodule given the absolute
525 // ALICE numbering id
526
527 static Int_t nSupMod, nModule, nIphi, nIeta;
528 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
529 return nSupMod;
530}
531
532//________________________________________________________________________________________________
533void AliEMCALGeoUtils::GetModulePhiEtaIndexInSModule(Int_t nSupMod, Int_t nModule, int &iphim, int &ietam) const
534{
535 // added nSupMod; - 19-oct-05 !
536 // Alice numbering scheme - Jun 01,2006
537 // ietam, iphi - indexes of module in two dimensional grid of SM
538 // ietam - have to change from 0 to fNZ-1
539 // iphim - have to change from 0 to nphi-1 (fNPhi-1 or fNPhi/2-1)
540 static Int_t nphi;
541
542 if(fKey110DEG == 1 && nSupMod>=10) nphi = fNPhi/2;
543 else nphi = fNPhi;
544
545 ietam = nModule/nphi;
546 iphim = nModule%nphi;
547}
548
549//________________________________________________________________________________________________
550void AliEMCALGeoUtils::GetCellPhiEtaIndexInSModule(Int_t nSupMod, Int_t nModule, Int_t nIphi, Int_t nIeta,
551int &iphi, int &ieta) const
552{
553 //
554 // Added nSupMod; Nov 25, 05
555 // Alice numbering scheme - Jun 01,2006
556 // IN:
557 // nSupMod - super module(SM) number, 0<= nSupMod < fNumberOfSuperModules;
558 // nModule - module number in SM, 0<= nModule < fNCellsInSupMod/fNCellsInSupMod or(/2) for tow last SM (10th and 11th);
559 // nIphi - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv;
560 // nIeta - cell number in eta driection inside module; 0<= nIeta < fNETAdiv;
561 //
562 // OUT:
563 // ieta, iphi - indexes of cell(tower) in two dimensional grid of SM
564 // ieta - have to change from 0 to (fNZ*fNETAdiv-1)
565 // iphi - have to change from 0 to (fNPhi*fNPHIdiv-1 or fNPhi*fNPHIdiv/2-1)
566 //
567 static Int_t iphim, ietam;
568
569 GetModulePhiEtaIndexInSModule(nSupMod,nModule, iphim, ietam);
570 // ieta = ietam*fNETAdiv + (1-nIeta); // x(module) = -z(SM)
571 ieta = ietam*fNETAdiv + (fNETAdiv - 1 - nIeta); // x(module) = -z(SM)
572 iphi = iphim*fNPHIdiv + nIphi; // y(module) = y(SM)
573
574 if(iphi<0 || ieta<0)
575 AliDebug(1,Form(" nSupMod %i nModule %i nIphi %i nIeta %i => ieta %i iphi %i\n",
576 nSupMod, nModule, nIphi, nIeta, ieta, iphi));
577}
578
579
580// Methods for AliEMCALRecPoint - Feb 19, 2006
581//________________________________________________________________________________________________
582Bool_t AliEMCALGeoUtils::RelPosCellInSModule(Int_t absId, Double_t &xr, Double_t &yr, Double_t &zr) const
583{
584 // Look to see what the relative
585 // position inside a given cell is
586 // for a recpoint.
587 // Alice numbering scheme - Jun 08, 2006
588 // In:
589 // absId - cell is as in Geant, 0<= absId < fNCells;
590 // OUT:
591 // xr,yr,zr - x,y,z coordinates of cell with absId inside SM
592
593 // Shift index taking into account the difference between standard SM
594 // and SM of half size in phi direction
595 const Int_t kphiIndexShift = fCentersOfCellsPhiDir.GetSize()/4; // Nov 22, 2006; was 6 for cas 2X2
596 static Int_t nSupMod, nModule, nIphi, nIeta, iphi, ieta;
597 if(!CheckAbsCellId(absId)) return kFALSE;
598
599 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
600 GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta);
601
602 xr = fCentersOfCellsXDir.At(ieta);
603 zr = fCentersOfCellsEtaDir.At(ieta);
604
605 if(nSupMod<10) {
606 yr = fCentersOfCellsPhiDir.At(iphi);
607 } else {
608 yr = fCentersOfCellsPhiDir.At(iphi + kphiIndexShift);
609 }
610 AliDebug(1,Form("absId %i nSupMod %i iphi %i ieta %i xr %f yr %f zr %f ",absId,nSupMod,iphi,ieta,xr,yr,zr));
611
612 return kTRUE;
613}
614
615//________________________________________________________________________________________________
616Bool_t AliEMCALGeoUtils::RelPosCellInSModule(Int_t absId, Double_t loc[3]) const
617{
618 // Look to see what the relative
619 // position inside a given cell is
620 // for a recpoint. // Alice numbering scheme - Jun 03, 2006
621 loc[0] = loc[1] = loc[2]=0.0;
622 if(RelPosCellInSModule(absId, loc[0],loc[1],loc[2])) {
623 return kTRUE;
624 }
625 return kFALSE;
626}
627
628//________________________________________________________________________________________________
629Bool_t AliEMCALGeoUtils::RelPosCellInSModule(Int_t absId, TVector3 &vloc) const
630{
631 // Look to see what the relative
632 // position inside a given cell is
633 // for a recpoint.
634 // Alice numbering scheme - Jun 03, 2006
635 static Double_t loc[3];
636 if(RelPosCellInSModule(absId,loc)) {
637 vloc.SetXYZ(loc[0], loc[1], loc[2]);
638 return kTRUE;
639 } else {
640 vloc.SetXYZ(0,0,0);
641 return kFALSE;
642 }
643}
644
645//________________________________________________________________________________________________
646void AliEMCALGeoUtils::CreateListOfTrd1Modules()
647{
648 // Generate the list of Trd1 modules
649 // which will make up the EMCAL
650 // geometry
651
652 AliDebug(2,Form(" AliEMCALGeometry::CreateListOfTrd1Modules() started "));
653
654 AliEMCALShishKebabTrd1Module *mod=0, *mTmp=0; // current module
655 if(fShishKebabTrd1Modules == 0) {
656 fShishKebabTrd1Modules = new TList;
657 fShishKebabTrd1Modules->SetName("ListOfTRD1");
658 for(int iz=0; iz< fEMCGeometry->GetNZ(); iz++) {
659 if(iz==0) {
660 // mod = new AliEMCALShishKebabTrd1Module(TMath::Pi()/2.,this);
661 mod = new AliEMCALShishKebabTrd1Module(TMath::Pi()/2.,fEMCGeometry);
662 } else {
663 mTmp = new AliEMCALShishKebabTrd1Module(*mod);
664 mod = mTmp;
665 }
666 fShishKebabTrd1Modules->Add(mod);
667 }
668 } else {
669 AliDebug(2,Form(" Already exits : "));
670 }
671 mod = (AliEMCALShishKebabTrd1Module*)fShishKebabTrd1Modules->At(fShishKebabTrd1Modules->GetSize()-1);
672 fEtaMaxOfTRD1 = mod->GetMaxEtaOfModule(0);
673
674 AliDebug(2,Form(" fShishKebabTrd1Modules has %i modules : max eta %5.4f \n",
675 fShishKebabTrd1Modules->GetSize(),fEtaMaxOfTRD1));
676 // Feb 20,2006;
677 // Jun 01, 2006 - ALICE numbering scheme
678 // define grid for cells in eta(z) and x directions in local coordinates system of SM
679 // Works just for 2x2 case only -- ?? start here
680 //
681 //
682 // Define grid for cells in phi(y) direction in local coordinates system of SM
683 // as for 2X2 as for 3X3 - Nov 8,2006
684 //
685 AliDebug(2,Form(" Cells grid in phi directions : size %i\n", fCentersOfCellsPhiDir.GetSize()));
686 Int_t ind=0; // this is phi index
687 Int_t ieta=0, nModule=0, iphiTemp;
688 Double_t xr=0., zr=0., theta=0., phi=0., eta=0., r=0., x=0.,y=0.;
689 TVector3 vglob;
690 Double_t ytCenterModule=0.0, ytCenterCell=0.0;
691
692 fCentersOfCellsPhiDir.Set(fNPhi*fNPHIdiv);
693 fPhiCentersOfCells.Set(fNPhi*fNPHIdiv);
694
695 Double_t r0 = fIPDistance + fLongModuleSize/2.;
696 for(Int_t it=0; it<fNPhi; it++) { // cycle on modules
697 ytCenterModule = -fParSM[1] + fPhiModuleSize*(2*it+1)/2; // center of module
698 for(Int_t ic=0; ic<fNPHIdiv; ic++) { // cycle on cells in module
699 if(fNPHIdiv==2) {
700 ytCenterCell = ytCenterModule + fPhiTileSize *(2*ic-1)/2.;
701 } else if(fNPHIdiv==3){
702 ytCenterCell = ytCenterModule + fPhiTileSize *(ic-1);
703 } else if(fNPHIdiv==1){
704 ytCenterCell = ytCenterModule;
705 }
706 fCentersOfCellsPhiDir.AddAt(ytCenterCell,ind);
707 // Define grid on phi direction
708 // Grid is not the same for different eta bin;
709 // Effect is small but is still here
710 phi = TMath::ATan2(ytCenterCell, r0);
711 fPhiCentersOfCells.AddAt(phi, ind);
712
713 AliDebug(2,Form(" ind %2.2i : y %8.3f ", ind, fCentersOfCellsPhiDir.At(ind)));
714 ind++;
715 }
716 }
717
718 fCentersOfCellsEtaDir.Set(fNZ *fNETAdiv);
719 fCentersOfCellsXDir.Set(fNZ *fNETAdiv);
720 fEtaCentersOfCells.Set(fNZ *fNETAdiv * fNPhi*fNPHIdiv);
721 AliDebug(2,Form(" Cells grid in eta directions : size %i\n", fCentersOfCellsEtaDir.GetSize()));
722 for(Int_t it=0; it<fNZ; it++) {
723 AliEMCALShishKebabTrd1Module *trd1 = GetShishKebabModule(it);
724 nModule = fNPhi*it;
725 for(Int_t ic=0; ic<fNETAdiv; ic++) {
726 if(fNPHIdiv==2) {
727 trd1->GetCenterOfCellInLocalCoordinateofSM(ic, xr, zr); // case of 2X2
728 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
729 } if(fNPHIdiv==3) {
730 trd1->GetCenterOfCellInLocalCoordinateofSM3X3(ic, xr, zr); // case of 3X3
731 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
732 } if(fNPHIdiv==1) {
733 trd1->GetCenterOfCellInLocalCoordinateofSM1X1(xr, zr); // case of 1X1
734 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
735 }
736 fCentersOfCellsXDir.AddAt(float(xr) - fParSM[0],ieta);
737 fCentersOfCellsEtaDir.AddAt(float(zr) - fParSM[2],ieta);
738 // Define grid on eta direction for each bin in phi
739 for(int iphi=0; iphi<fCentersOfCellsPhiDir.GetSize(); iphi++) {
740 x = xr + trd1->GetRadius();
741 y = fCentersOfCellsPhiDir[iphi];
742 r = TMath::Sqrt(x*x + y*y + zr*zr);
743 theta = TMath::ACos(zr/r);
744 eta = AliEMCALShishKebabTrd1Module::ThetaToEta(theta);
745 // ind = ieta*fCentersOfCellsPhiDir.GetSize() + iphi;
746 ind = iphi*fCentersOfCellsEtaDir.GetSize() + ieta;
747 fEtaCentersOfCells.AddAt(eta, ind);
748 }
749 //printf(" ieta %i : xr + trd1->GetRadius() %f : zr %f : eta %f \n", ieta, xr + trd1->GetRadius(), zr, eta);
750 }
751 }
752 for(Int_t i=0; i<fCentersOfCellsEtaDir.GetSize(); i++) {
753 AliDebug(2,Form(" ind %2.2i : z %8.3f : x %8.3f", i+1,
754 fCentersOfCellsEtaDir.At(i),fCentersOfCellsXDir.At(i)));
755 }
756
757}
758
759
760//________________________________________________________________________________________________
761AliEMCALShishKebabTrd1Module* AliEMCALGeoUtils::GetShishKebabModule(Int_t neta) const
762{
763 //This method was too long to be
764 //included in the header file - the
765 //rule checker complained about it's
766 //length, so we move it here. It returns the
767 //shishkebabmodule at a given eta index point.
768
769 static AliEMCALShishKebabTrd1Module* trd1=0;
770 if(fShishKebabTrd1Modules && neta>=0 && neta<fShishKebabTrd1Modules->GetSize()) {
771 trd1 = (AliEMCALShishKebabTrd1Module*)fShishKebabTrd1Modules->At(neta);
772 } else trd1 = 0;
773 return trd1;
774}
775
776//___________________________________________________________________
777void AliEMCALGeoUtils::PrintGeometry()
778{
779 //Print information from geometry
780 fEMCGeometry->PrintGeometry();
781
782 printf(" fShishKebabTrd1Modules has %i modules : max eta %5.4f \n",
783 fShishKebabTrd1Modules->GetSize(),fEtaMaxOfTRD1);
784
785 printf("\n Cells grid in eta directions : size %i\n", fCentersOfCellsEtaDir.GetSize());
786 for(Int_t i=0; i<fCentersOfCellsEtaDir.GetSize(); i++) {
787 printf(" ind %2.2i : z %8.3f : x %8.3f \n", i,
788 fCentersOfCellsEtaDir.At(i),fCentersOfCellsXDir.At(i));
789 int ind=0; // Nov 21,2006
790 for(Int_t iphi=0; iphi<fCentersOfCellsPhiDir.GetSize(); iphi++) {
791 ind = iphi*fCentersOfCellsEtaDir.GetSize() + i;
792 printf("%6.4f ", fEtaCentersOfCells[ind]);
793 if((iphi+1)%12 == 0) printf("\n");
794 }
795 printf("\n");
796
797 }
798
799 printf("\n Cells grid in phi directions : size %i\n", fCentersOfCellsPhiDir.GetSize());
800 for(Int_t i=0; i<fCentersOfCellsPhiDir.GetSize(); i++) {
801 double phi=fPhiCentersOfCells.At(i);
802 printf(" ind %2.2i : y %8.3f : phi %7.5f(%6.2f) \n", i, fCentersOfCellsPhiDir.At(i),
803 phi, phi*TMath::RadToDeg());
804 }
805
806}
807
808//____________________________________________________________________________
809Bool_t AliEMCALGeoUtils::Impact(const TParticle * particle) const
810{
811 // Tells if a particle enters EMCAL
812 Bool_t in=kFALSE;
813 Int_t absID=0;
814 TVector3 vtx(particle->Vx(),particle->Vy(),particle->Vz());
815 TVector3 vimpact(0,0,0);
816 ImpactOnEmcal(vtx,particle->Theta(),particle->Phi(),absID,vimpact);
817 if(absID!=0)
818 in=kTRUE;
819 return in;
820}
821//____________________________________________________________________________
822void AliEMCALGeoUtils::ImpactOnEmcal(TVector3 vtx, Double_t theta, Double_t phi,
823 Int_t & absId, TVector3 & vimpact) const
824{
825 // calculates the impact coordinates on EMCAL (centre of a tower/not on EMCAL surface)
826 // of a neutral particle
827 // emitted in the vertex vtx[3] with direction theta and phi in the ALICE global coordinate system
828
829 TVector3 p(TMath::Sin(theta)*TMath::Cos(phi),TMath::Sin(theta)*TMath::Sin(phi),TMath::Cos(theta)) ;
830
831 vimpact.SetXYZ(0,0,0);
832 absId=-1;
833 if(phi==0 || theta==0) return;
834
835 TVector3 direction;
836 Double_t factor = (fIPDistance-vtx[1])/p[1];
837 direction = vtx + factor*p;
838
839 if (!gGeoManager){
840 AliFatal("Geo manager not initialized\n");
841 }
842 //from particle direction -> tower hitted
843 GetAbsCellIdFromEtaPhi(direction.Eta(),direction.Phi(),absId);
844
845 //tower absID hitted -> tower/module plane (evaluated at the center of the tower)
846 Int_t nSupMod, nModule, nIphi, nIeta;
847 Double_t loc[3],loc2[3],loc3[3];
848 Double_t glob[3]={},glob2[3]={},glob3[3]={};
849
850 if(!RelPosCellInSModule(absId,loc)) return;
851
852 //loc is cell center of tower
853 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
854
855 //look at 2 neighbours-s cell using nIphi={0,1} and nIeta={0,1}
856 Int_t nIphi2,nIeta2,absId2,absId3;
857 if(nIeta==0) nIeta2=1;
858 else nIeta2=0;
859 absId2=GetAbsCellId(nSupMod,nModule,nIphi,nIeta2);
860 if(nIphi==0) nIphi2=1;
861 else nIphi2=0;
862 absId3=GetAbsCellId(nSupMod,nModule,nIphi2,nIeta);
863
864 //2nd point on emcal cell plane
865 if(!RelPosCellInSModule(absId2,loc2)) return;
866
867 //3rd point on emcal cell plane
868 if(!RelPosCellInSModule(absId3,loc3)) return;
869
870// TString volpath = "ALIC_1/XEN1_1/SMOD_";
871// volpath += (nSupMod+1);
872//
873// if(fKey110DEG && nSupMod>=10) {
874// volpath = "ALIC_1/XEN1_1/SM10_";
875// volpath += (nSupMod-10+1);
876// }
877// if(!gGeoManager->cd(volpath.Data())){
878// AliFatal(Form("GeoManager cannot find path %s!",volpath.Data()))
879// return;
880// }
881// TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
882 const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
883 if(m) {
884 m->LocalToMaster(loc, glob);
885 m->LocalToMaster(loc2, glob2);
886 m->LocalToMaster(loc3, glob3);
887 } else {
888 AliFatal("Geo matrixes are not loaded \n") ;
889 }
890
891 //Equation of Plane from glob,glob2,glob3 (Ax+By+Cz+D=0)
892 Double_t a = glob[1]*(glob2[2]-glob3[2]) + glob2[1]*(glob3[2]-glob[2]) + glob3[1]*(glob[2]-glob2[2]);
893 Double_t b = glob[2]*(glob2[0]-glob3[0]) + glob2[2]*(glob3[0]-glob[0]) + glob3[2]*(glob[0]-glob2[0]);
894 Double_t c = glob[0]*(glob2[1]-glob3[1]) + glob2[0]*(glob3[1]-glob[1]) + glob3[0]*(glob[1]-glob2[1]);
895 Double_t d = glob[0]*(glob2[1]*glob3[2]-glob3[1]*glob2[2]) + glob2[0]*(glob3[1]*glob[2]-glob[1]*glob3[2]) + glob3[0]*(glob[1]*glob2[2]-glob2[1]*glob[2]);
896 d=-d;
897
898 //shift equation of plane from tower/module center to surface along vector (A,B,C) normal to tower/module plane
899 Double_t dist = fLongModuleSize/2.;
900 Double_t norm = TMath::Sqrt(a*a+b*b+c*c);
901 Double_t glob4[3]={};
902 TVector3 dir(a,b,c);
903 TVector3 point(glob[0],glob[1],glob[2]);
904 if(point.Dot(dir)<0) dist*=-1;
905 glob4[0]=glob[0]-dist*a/norm;
906 glob4[1]=glob[1]-dist*b/norm;
907 glob4[2]=glob[2]-dist*c/norm;
908 d = glob4[0]*a + glob4[1]*b + glob4[2]*c ;
909 d = -d;
910
911 //Line determination (2 points for equation of line : vtx and direction)
912 //impact between line (particle) and plane (module/tower plane)
913 Double_t den = a*(vtx(0)-direction(0)) + b*(vtx(1)-direction(1)) + c*(vtx(2)-direction(2));
914 if(den==0){
915 printf("ImpactOnEmcal() No solution :\n");
916 return;
917 }
918
919 Double_t length = a*vtx(0)+b*vtx(1)+c*vtx(2)+d;
920 length /=den;
921
922 vimpact.SetXYZ(vtx(0)+length*(direction(0)-vtx(0)),vtx(1)+length*(direction(1)-vtx(1)),vtx(2)+length*(direction(2)-vtx(2)));
923
924 //shift vimpact from tower/module surface to center along vector (A,B,C) normal to tower/module plane
925 vimpact.SetXYZ(vimpact(0)+dist*a/norm,vimpact(1)+dist*b/norm,vimpact(2)+dist*c/norm);
926
927 return;
928}
929
930//_____________________________________________________________________________
931Bool_t AliEMCALGeoUtils::IsInEMCAL(Double_t x, Double_t y, Double_t z) const {
932 // Checks whether point is inside the EMCal volume, used in AliEMCALv*.cxx
933 //
934 // Code uses cylindrical approximation made of inner radius (for speed)
935 //
936 // Points behind EMCAl, i.e. R > outer radius, but eta, phi in acceptance
937 // are considered to inside
938
939 Double_t r=sqrt(x*x+y*y);
940
941 if ( r > fEnvelop[0] ) {
942 Double_t theta;
943 theta = TMath::ATan2(r,z);
944 Double_t eta;
945 if(theta == 0)
946 eta = 9999;
947 else
948 eta = -TMath::Log(TMath::Tan(theta/2.));
949 if (eta < fArm1EtaMin || eta > fArm1EtaMax)
950 return 0;
951
952 Double_t phi = TMath::ATan2(y,x) * 180./TMath::Pi();
953 if (phi < 0) phi += 360; // phi should go from 0 to 360 in this case
954 if (phi > fArm1PhiMin && phi < fArm1PhiMax)
955 return 1;
956 }
957 return 0;
958}
959
960//________________________________________________________________________________________________
961Int_t AliEMCALGeoUtils::GetAbsTRUNumberFromNumberInSm(const Int_t row, const Int_t col, const Int_t sm) const
962{ // Nov 6, 2007
963 // Get TRU absolute number from column, row and Super Module number
964 Int_t itru = row + col*fEMCGeometry->GetNModulesInTRUPhi() + sm*fEMCGeometry->GetNTRU();
965 // printf(" GetAbsTRUNumberFromNumberInSm : row %2i col %2i sm %2i -> itru %2i\n", row, col, sm, itru);
966 return itru;
967}
968
969
970//____________________________________________________________________________
971const TGeoHMatrix * AliEMCALGeoUtils::GetMatrixForSuperModule(Int_t smod) const {
972 //Provides shift-rotation matrix for EMCAL
973
974 if(smod < 0 || smod > fEMCGeometry->GetNumberOfSuperModules())
975 AliFatal(Form("Wrong supermodule index -> %d",smod));
976
977 //If GeoManager exists, take matrixes from it
978
979 //
980 // if(fKey110DEG && ind>=10) {
981 // }
982 //
983 // if(!gGeoManager->cd(volpath.Data()))
984 // AliFatal(Form("AliEMCALGeometry::GeoManager cannot find path %s!",volpath.Data()));
985 //
986 // TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
987
988 if(gGeoManager){
989 char path[255] ;
990 sprintf(path,"/ALIC_1/XEN1_1/SMOD_%d",smod+1) ;
991 //TString volpath = "ALIC_1/XEN1_1/SMOD_";
992 //volpath += smod+1;
993
994 if(fKey110DEG && smod >= 10){
995 sprintf(path,"/ALIC_1/XEN1_1/SM10_%d",smod-10+1) ;
996 //volpath = "ALIC_1/XEN1_1/SM10_";
997 //volpath += smod-10+1;
998 }
999 if (!gGeoManager->cd(path)){
1000 AliFatal(Form("Geo manager can not find path %s!\n",path));
1001 }
1002 return gGeoManager->GetCurrentMatrix();
1003 }
1004
1005 if(fkSModuleMatrix[smod]){
1006 return fkSModuleMatrix[smod] ;
1007 }
1008 else{
1009 printf("Can not find EMCAL misalignment matrixes\n") ;
1010 printf("Either import TGeoManager from geometry.root or \n");
1011 printf("read stored matrixes from AliESD Header: \n") ;
1012 printf("AliEMCALGeoUtils::SetMisalMatrixes(header->GetEMCALMisalMatrix()) \n") ;
1013 abort() ;
1014 }
1015 return 0 ;
1016}
1017
1018//______________________________________________________________________
1019void AliEMCALGeoUtils::GetModulePhiEtaIndexInSModuleFromTRUIndex(Int_t itru, Int_t iphitru, Int_t ietatru, Int_t &iphiSM, Int_t &ietaSM) const
1020{
1021
1022 // This method transforms the (eta,phi) index of module in a
1023 // TRU matrix into Super Module (eta,phi) index.
1024
1025 // Calculate in which row and column where the TRU are
1026 // ordered in the SM
1027
1028 Int_t col = itru/fEMCGeometry->GetNTRUPhi() ; // indexes of TRU in SM
1029 Int_t row = itru - col*fEMCGeometry->GetNTRUPhi();
1030
1031 iphiSM = fEMCGeometry->GetNModulesInTRUPhi()*row + iphitru ;
1032 ietaSM = fEMCGeometry->GetNModulesInTRUEta()*col + ietatru ;
1033 //printf(" GetModulePhiEtaIndexInSModuleFromTRUIndex : itru %2i iphitru %2i ietatru %2i iphiSM %2i ietaSM %2i \n",
1034 // itru, iphitru, ietatru, iphiSM, ietaSM);
1035}