]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALGeometry.cxx
Fixed memory leak: the vertex provided by vertexer should be deleted after updating...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGeometry.cxx
CommitLineData
e5a93224 1/**************************************************************************
2012850d 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$*/
17
18//_________________________________________________________________________
e8c0d6bb 19// Geometry class for EMCAL : singleton
b13bbe81 20// EMCAL consists of layers of scintillator and lead
d297ef6e 21// with scintillator fiber arranged as "shish-kebab" skewers
ffa6d63b 22// Places the the Barrel Geometry of The EMCAL at Midrapidity
d87bd045 23// between 80 and 180(or 190) degrees of Phi and
ffa6d63b 24// -0.7 to 0.7 in eta
d297ef6e 25//
1d46d1f6 26// EMCAL geometry tree:
2bb3725c 27// EMCAL -> superModule -> module -> tower(cell)
1d46d1f6 28// Indexes
2bb3725c 29// absId -> nSupMod -> nModule -> (nIphi,nIeta)
1d46d1f6 30//
d297ef6e 31// Name choices:
32// EMCAL_PDC06 (geometry used for PDC06 simulations, kept for backward compatibility)
33// = equivalent to SHISH_77_TRD1_2X2_FINAL_110DEG in old notation
34// EMCAL_COMPLETE (geometry for expected complete detector)
35// = equivalent to SHISH_77_TRD1_2X2_FINAL_110DEG scTh=0.176 pbTh=0.144
36// in old notation
171d2441 37// EMCAL_FIRSTYEARV1 - geometry for December 2009 to December 2010 run period;
3d841a9f 38// fixed bug for positions of modules inside SM
39// (first module has tilt 0.75 degree);
40// the sizes updated with last information from production
41// drawing (end of October 2010).
171d2441 42//
a520bcd0 43// EMCAL_COMPLETEV1: Same fixes as FIRSTYEAR and 10 SM instead of 10 + 2 one_third SM, for 2011 runs
d7f5c01a 44//
45// EMCAL_COMPLETE12SMV1: contains 12 SM for runs from year 2012 and on
3d841a9f 46//
d297ef6e 47// EMCAL_WSUC (Wayne State test stand)
48// = no definite equivalent in old notation, was only used by
49// Aleksei, but kept for testing purposes
50//
51// etc.
e8c0d6bb 52
d297ef6e 53//
e8c0d6bb 54// Usage:
55// You can create the AliEMCALGeometry object independently from anything.
56// You have to use just the correct name of geometry. If name is empty string the
57// default name of geometry will be used.
58//
59// AliEMCALGeometry* g = AliEMCALGeometry::GetInstance(name,title); // first time
60// ..
61// g = AliEMCALGeometry::GetInstance(); // after first time
d297ef6e 62//
e8c0d6bb 63// MC: If you work with MC data you have to get geometry the next way:
64// == =============================
65// AliRunLoader *rl = AliRunLoader::Instance();
66// AliEMCALGeometry *geom = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
67// TGeoManager::Import("geometry.root");
d297ef6e 68//
b13bbe81 69//*-- Author: Sahal Yacoob (LBL / UCT)
70// and : Yves Schutz (SUBATECH)
71// and : Jennifer Klay (LBL)
3d841a9f 72// and : Alexei Pavlinov (WSU)
1d46d1f6 73//
e8c0d6bb 74// Implementation for analysis usage, before AliEMCALGeometry now (06/2011) merged again
75// in AliEMCALGeometry
76//
77// -- Author: Magali Estienne (magali.estienne@subatech.in2p3.fr)
78//
89557f6d 79//
80// Usage:
81// You can create the AliEMCALGeometry object independently from anything.
82// You have to use just the correct name of geometry. If name is empty string the
83// default name of geometry will be used.
84//
d7f5c01a 85// AliEMCALGeometry* geom = new AliEMCALGeometry("EMCAL_COMPLETE12SMV1","EMCAL");
e8c0d6bb 86// TGeoManager::Import("geometry.root");
89557f6d 87//
76855a3c 88// MC: If you work with MC data you have to get geometry the next way:
89// == =============================
e8c0d6bb 90// !!!!!!!!! This part has to be modified
91// AliRunLoader *rl = AliRunLoader::GetRunLoader();
92// AliEMCALEMCGeometry *geom = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
d297ef6e 93// TGeoManager::Import("geometry.root");
dc7da436 94
937d0661 95
e8c0d6bb 96// --- ROOT system ---
97
98#include <TParticle.h>
99#include <TGeoManager.h>
100#include <TGeoMatrix.h>
101#include <TGeoBBox.h>
102#include <TList.h>
103#include <TBrowser.h>
104
105// --- Standard library ---
106//#include <Riostream.h>
107
108// --- AliRoot header files ---
a520bcd0 109#include "AliLog.h"
e8c0d6bb 110#include "AliEMCALGeometry.h"
111#include "AliEMCALShishKebabTrd1Module.h"
112
113ClassImp(AliEMCALGeometry)
114
115// these initialisations are needed for a singleton
116AliEMCALGeometry *AliEMCALGeometry::fgGeom = 0;
d7f5c01a 117const Char_t* AliEMCALGeometry::fgkDefaultGeometryName = "EMCAL_COMPLETE12SMV1";
e8c0d6bb 118
119//____________________________________________________________________________
120AliEMCALGeometry::AliEMCALGeometry():
121 fEMCGeometry(0x0),fGeoName(0),
122 fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
123 fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
124 fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
125 fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
126 fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
127 fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
128 fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
129 fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
130 fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
131 fZLength(0.),fSampling(0.),fUseExternalMatrices(kFALSE)
9cff4509 132{
e8c0d6bb 133 // default ctor
134 // must be kept public for root persistency purposes, but should never be called by the outside world
135 fEnvelop[0] = 0.;
136 fEnvelop[1] = 0.;
137 fEnvelop[2] = 0.;
138 fParSM[0] = 0.;
139 fParSM[1] = 0.;
140 fParSM[2] = 0.;
d7cff4de 141 for (Int_t i=0;i<AliEMCALGeoParams::fgkEMCALModules;i++)
142 fkSModuleMatrix[i]=0 ;
1d46d1f6 143
e8c0d6bb 144 for (Int_t i = 0; i < 48; i++)
145 for (Int_t j = 0; j < 64; j++) fFastOR2DMap[i][j] = -1;
146}
147
148//____________________________________________________________________________
149AliEMCALGeometry::AliEMCALGeometry(const AliEMCALGeometry & geo)
150 : TNamed(geo),
151 fEMCGeometry(geo.fEMCGeometry),fGeoName(geo.fGeoName),
152 fKey110DEG(geo.fKey110DEG),fNCellsInSupMod(geo.fNCellsInSupMod),fNETAdiv(geo.fNETAdiv),fNPHIdiv(geo.fNPHIdiv),
153 fNCellsInModule(geo.fNCellsInModule),fPhiBoundariesOfSM(geo.fPhiBoundariesOfSM),fPhiCentersOfSM(geo.fPhiCentersOfSM),
154 fPhiCentersOfCells(geo.fPhiCentersOfCells),fCentersOfCellsEtaDir(geo.fCentersOfCellsEtaDir),
155 fCentersOfCellsPhiDir(geo.fCentersOfCellsPhiDir),fEtaCentersOfCells(geo.fEtaCentersOfCells),
156 fNCells(geo.fNCells),fNPhi(geo.fNPhi),fCentersOfCellsXDir(geo.fCentersOfCellsXDir),fArm1EtaMin(geo.fArm1EtaMin),
157 fArm1EtaMax(geo.fArm1EtaMax),fArm1PhiMin(geo.fArm1PhiMin),fArm1PhiMax(geo.fArm1PhiMax),fEtaMaxOfTRD1(geo.fEtaMaxOfTRD1),
158 fShishKebabTrd1Modules(geo.fShishKebabTrd1Modules),fPhiModuleSize(geo.fPhiModuleSize),
159 fEtaModuleSize(geo.fEtaModuleSize),fPhiTileSize(geo.fPhiTileSize),fEtaTileSize(geo.fEtaTileSize),fNZ(geo.fNZ),
160 fIPDistance(geo.fIPDistance),fLongModuleSize(geo.fLongModuleSize),fShellThickness(geo.fShellThickness),
161 fZLength(geo.fZLength),fSampling(geo.fSampling),fUseExternalMatrices(geo.fUseExternalMatrices)
9cff4509 162{
bccc4a4f 163 // Copy constarctor
e8c0d6bb 164 fEnvelop[0] = geo.fEnvelop[0];
165 fEnvelop[1] = geo.fEnvelop[1];
166 fEnvelop[2] = geo.fEnvelop[2];
167 fParSM[0] = geo.fParSM[0];
168 fParSM[1] = geo.fParSM[1];
169 fParSM[2] = geo.fParSM[2];
d7cff4de 170 for (Int_t i=0;i<AliEMCALGeoParams::fgkEMCALModules;i++)
171 fkSModuleMatrix[i]=0 ;
e8c0d6bb 172
173 for (Int_t i = 0; i < 48; i++)
174 for (Int_t j = 0; j < 64; j++) fFastOR2DMap[i][j] = geo.fFastOR2DMap[i][j];
0a4cb131 175}
176
e8c0d6bb 177//____________________________________________________________________________
126215a5 178AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title,
179 const Text_t* mcname, const Text_t* mctitle)
e8c0d6bb 180 : TNamed(name, title),
181 fEMCGeometry(0x0),fGeoName(0),
182 fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
183 fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
184 fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
185 fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
186 fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
187 fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
188 fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
189 fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
190 fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
191 fZLength(0.),fSampling(0.), fUseExternalMatrices(kFALSE)
192{
193
194 // ctor only for normal usage
126215a5 195
196 fEMCGeometry = new AliEMCALEMCGeometry(name,title,mcname,mctitle);
e8c0d6bb 197
198 fGeoName = fEMCGeometry->GetGeoName();
199 fKey110DEG = fEMCGeometry->GetKey110DEG();
200 fNCellsInSupMod = fEMCGeometry->GetNCellsInSupMod();
201 fNETAdiv = fEMCGeometry->GetNETAdiv();
202 fNPHIdiv = fEMCGeometry->GetNPHIdiv();
203 fNCellsInModule = fNPHIdiv*fNETAdiv;
204 static int i=0;
205 Int_t nSMod = fEMCGeometry->GetNumberOfSuperModules();
206 fPhiBoundariesOfSM.Set(nSMod);
207 fPhiCentersOfSM.Set(nSMod/2);
208 for(Int_t sm=0; sm<nSMod; sm++) {
209 i = sm/2;
210 fEMCGeometry->GetPhiBoundariesOfSM(sm,fPhiBoundariesOfSM[2*i],fPhiBoundariesOfSM[2*i+1]);
211 }
212
213 Double_t phiMin = 0.;
214 Double_t phiMax = 0.;
215 for(Int_t sm=0; sm<nSMod; sm++) {
216 fEMCGeometry->GetPhiBoundariesOfSM(sm,phiMin,phiMax);
217 i=sm/2;
218 fPhiCentersOfSM[i] = fEMCGeometry->GetPhiCenterOfSM(sm);
219 }
220 fNCells = fEMCGeometry->GetNCells();
221 fNPhi = fEMCGeometry->GetNPhi();
222 fEnvelop[0] = fEMCGeometry->GetEnvelop(0);
223 fEnvelop[1] = fEMCGeometry->GetEnvelop(1);
224 fEnvelop[2] = fEMCGeometry->GetEnvelop(2);
225 fParSM[0] = fEMCGeometry->GetSuperModulesPar(0);
226 fParSM[1] = fEMCGeometry->GetSuperModulesPar(1);
227 fParSM[2] = fEMCGeometry->GetSuperModulesPar(2);
228 fArm1EtaMin = fEMCGeometry->GetArm1EtaMin();
229 fArm1EtaMax = fEMCGeometry->GetArm1EtaMax();
230 fArm1PhiMin = fEMCGeometry->GetArm1PhiMin();
231 fArm1PhiMax = fEMCGeometry->GetArm1PhiMax();
232 fShellThickness = fEMCGeometry->GetShellThickness();
233 fZLength = fEMCGeometry->GetZLength();
234 fSampling = fEMCGeometry->GetSampling();
235 fEtaModuleSize = fEMCGeometry->GetEtaModuleSize();
236 fPhiModuleSize = fEMCGeometry->GetPhiModuleSize();
237 fEtaTileSize = fEMCGeometry->GetEtaTileSize();
238 fPhiTileSize = fEMCGeometry->GetPhiTileSize();
239 fNZ = fEMCGeometry->GetNZ();
240 fIPDistance = fEMCGeometry->GetIPDistance();
241 fLongModuleSize = fEMCGeometry->GetLongModuleSize();
242
243 CreateListOfTrd1Modules();
244
d7cff4de 245 for(Int_t smod=0; smod < AliEMCALGeoParams::fgkEMCALModules; smod++)
246 fkSModuleMatrix[smod]=0 ;
e8c0d6bb 247
248 if (AliDebugLevel()>=2) {
249 fEMCGeometry->Print();
250 PrintGeometryGeoUtils();
251 }
252
253 for (Int_t ix = 0; ix < 48; ix++)
254 for (Int_t jx = 0; jx < 64; jx++) fFastOR2DMap[ix][jx] = -1;
255
256 BuildFastOR2DMap();
2012850d 257}
d297ef6e 258
e8c0d6bb 259//____________________________________________________________________________
260AliEMCALGeometry & AliEMCALGeometry::operator = (const AliEMCALGeometry & /*rvalue*/) {
261 //assing operator
262 Fatal("assignment operator", "not implemented") ;
263 return *this ;
264}
265
266//____________________________________________________________________________
267AliEMCALGeometry::~AliEMCALGeometry(void)
268{
269 // dtor
d7cff4de 270 if (this==fgGeom) {
271 AliError("Do not call delete on me");
272 return;
273 }
e8c0d6bb 274 if (fEMCGeometry){
275 for(Int_t smod = 0 ; smod < fEMCGeometry->GetNumberOfSuperModules(); smod++){
276 if(fkSModuleMatrix[smod])
277 delete fkSModuleMatrix[smod] ;
278 fkSModuleMatrix[smod]=0 ;
279 }
bccc4a4f 280 delete fEMCGeometry; // fEMCGeometry = 0 ;
e8c0d6bb 281 }
282}
f0377b23 283
b13bbe81 284//______________________________________________________________________
285AliEMCALGeometry * AliEMCALGeometry::GetInstance(){
05a92d59 286 // Returns the pointer of the unique instance
287
e52475ed 288 AliEMCALGeometry * rv = static_cast<AliEMCALGeometry *>( fgGeom );
289 return rv;
2012850d 290}
173558f2 291
b13bbe81 292//______________________________________________________________________
126215a5 293AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name, const Text_t* title,
294 const Text_t* mcname, const Text_t* mctitle ){
e8c0d6bb 295 // Returns the pointer of the unique instance
126215a5 296
e8c0d6bb 297 AliEMCALGeometry * rv = 0;
298 if ( fgGeom == 0 ) {
299 if ( strcmp(name,"") == 0 ) { // get default geometry
126215a5 300 fgGeom = new AliEMCALGeometry(fgkDefaultGeometryName, title,mcname,mctitle);
e8c0d6bb 301 } else {
126215a5 302 fgGeom = new AliEMCALGeometry(name, title,mcname,mctitle);
e8c0d6bb 303 } // end if strcmp(name,"")
304 if ( AliEMCALEMCGeometry::fgInit ) rv = (AliEMCALGeometry * ) fgGeom;
305 else {
306 rv = 0;
307 delete fgGeom;
308 fgGeom = 0;
309 } // end if fgInit
310 }else{
311 if ( strcmp(fgGeom->GetName(), name) != 0) {
312 printf("\ncurrent geometry is %s : ", fgGeom->GetName());
313 printf(" you cannot call %s ",name);
b13bbe81 314 }else{
e8c0d6bb 315 rv = (AliEMCALGeometry *) fgGeom;
316 } // end
317 } // end if fgGeom
318 return rv;
319}
320
321//________________________________________________________________________________________________
322void AliEMCALGeometry::Browse(TBrowser* b)
323{
324 //Browse the modules
325 if(fShishKebabTrd1Modules) b->Add(fShishKebabTrd1Modules);
326}
327
328//________________________________________________________________________________________________
329Bool_t AliEMCALGeometry::IsFolder() const
330{
331 //Check if fShishKebabTrd1Modules is in folder
332 if(fShishKebabTrd1Modules) return kTRUE;
333 else return kFALSE;
334}
335
336//________________________________________________________________________________________________
337void AliEMCALGeometry::GetGlobal(const Double_t *loc, Double_t *glob, int ind) const
338{
339 // Figure out the global numbering
340 // of a given supermodule from the
341 // local numbering and the transformation
342 // matrix stored by the geometry manager (allows for misaligned
343 // geometry)
344
345 const TGeoHMatrix* m = GetMatrixForSuperModule(ind);
346 if(m) {
347 m->LocalToMaster(loc, glob);
348 } else {
349 AliFatal("Geo matrixes are not loaded \n") ;
350 }
351}
352
353//________________________________________________________________________________________________
354void AliEMCALGeometry::GetGlobal(const TVector3 &vloc, TVector3 &vglob, int ind) const
355{
356 //Figure out the global numbering
357 //of a given supermodule from the
358 //local numbering given a 3-vector location
359
360 static Double_t tglob[3], tloc[3];
361 vloc.GetXYZ(tloc);
362 GetGlobal(tloc, tglob, ind);
363 vglob.SetXYZ(tglob[0], tglob[1], tglob[2]);
364}
365
366//________________________________________________________________________________________________
367void AliEMCALGeometry::GetGlobal(Int_t absId , double glob[3]) const
368{
369 // Alice numbering scheme - Jun 03, 2006
370 static Int_t nSupMod=-1, nModule=-1, nIphi=-1, nIeta=-1;
371 static double loc[3];
372
373 glob[0]=glob[1]=glob[2]=0.0; // bad case
374 if(RelPosCellInSModule(absId, loc)) {
375 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
376
377 const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
378 if(m) {
379 m->LocalToMaster(loc, glob);
380 } else {
381 AliFatal("Geo matrixes are not loaded \n") ;
382 }
383 }
384}
385
386//___________________________________________________________________
387void AliEMCALGeometry::GetGlobal(Int_t absId , TVector3 &vglob) const
388{
389 // Alice numbering scheme - Jun 03, 2006
390 static Double_t glob[3];
391
392 GetGlobal(absId, glob);
393 vglob.SetXYZ(glob[0], glob[1], glob[2]);
394
395}
396
397
398//______________________________________________________________________
399void AliEMCALGeometry::PrintCellIndexes(Int_t absId, int pri, const char *tit) const
400{
401 // Service methods
402 Int_t nSupMod, nModule, nIphi, nIeta;
403 Int_t iphi, ieta;
404 TVector3 vg;
405
406 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
407 printf(" %s | absId : %i -> nSupMod %i nModule %i nIphi %i nIeta %i \n", tit, absId, nSupMod, nModule, nIphi, nIeta);
408 if(pri>0) {
409 GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi,ieta);
410 printf(" local SM index : iphi %i : ieta %i \n", iphi,ieta);
411 GetGlobal(absId, vg);
412 printf(" vglob : mag %7.2f : perp %7.2f : z %7.2f : eta %6.4f : phi %6.4f(%6.2f) \n",
413 vg.Mag(), vg.Perp(), vg.Z(), vg.Eta(), vg.Phi(), vg.Phi()*TMath::RadToDeg());
414 }
415}
416
417void AliEMCALGeometry::PrintLocalTrd1(Int_t pri) const
418{
419 // For comparing with numbers from drawing
420 for(Int_t i=0; i<GetShishKebabTrd1Modules()->GetSize(); i++){
421 printf(" %s | ", GetShishKebabModule(i)->GetName());
422 if(i==0 && pri<1) GetShishKebabModule(i)->PrintShish(1);
423 else GetShishKebabModule(i)->PrintShish(pri);
424 }
425}
426
427//________________________________________________________________________________________________
428void AliEMCALGeometry::EtaPhiFromIndex(Int_t absId,Double_t &eta,Double_t &phi) const
429{
430 // Nov 16, 2006- float to double
431 // version for TRD1 only
432 static TVector3 vglob;
433 GetGlobal(absId, vglob);
434 eta = vglob.Eta();
435 phi = vglob.Phi();
436}
437
438//________________________________________________________________________________________________
439void AliEMCALGeometry::EtaPhiFromIndex(Int_t absId,Float_t &eta,Float_t &phi) const
440{
441 // Nov 16,2006 - should be discard in future
442 static TVector3 vglob;
443 GetGlobal(absId, vglob);
444 eta = float(vglob.Eta());
445 phi = float(vglob.Phi());
446}
447
448//
449// == Shish-kebab cases ==
450//
451//________________________________________________________________________________________________
452Int_t AliEMCALGeometry::GetAbsCellId(Int_t nSupMod, Int_t nModule, Int_t nIphi, Int_t nIeta) const
453{
454 // 27-aug-04;
455 // corr. 21-sep-04;
456 // 13-oct-05; 110 degree case
457 // May 31, 2006; ALICE numbering scheme:
458 // 0 <= nSupMod < fNumberOfSuperModules
459 // 0 <= nModule < fNPHI * fNZ ( fNPHI * fNZ/2 for fKey110DEG=1)
460 // 0 <= nIphi < fNPHIdiv
461 // 0 <= nIeta < fNETAdiv
462 // 0 <= absid < fNCells
463 static Int_t id=0; // have to change from 0 to fNCells-1
a520bcd0 464 if(fKey110DEG == 1 && nSupMod >= 10 && !fGeoName.Contains("12SMV1")) { // 110 degree case; last two supermodules halfsupermodules
e8c0d6bb 465 id = fNCellsInSupMod*10 + (fNCellsInSupMod/2)*(nSupMod-10);
a520bcd0 466 } else if(fKey110DEG == 1 && nSupMod >= 10 && fGeoName.Contains("12SMV1")) { // 110 degree case; last two supermodules 1/3 supermodules
467 id = fNCellsInSupMod*10 + (fNCellsInSupMod/3)*(nSupMod-10);
e8c0d6bb 468 } else {
469 id = fNCellsInSupMod*nSupMod;
470 }
471 id += fNCellsInModule *nModule;
472 id += fNPHIdiv *nIphi;
473 id += nIeta;
474 if(id<0 || id >= fNCells) {
475// printf(" wrong numerations !!\n");
476// printf(" id %6i(will be force to -1)\n", id);
477// printf(" fNCells %6i\n", fNCells);
478// printf(" nSupMod %6i\n", nSupMod);
479// printf(" nModule %6i\n", nModule);
480// printf(" nIphi %6i\n", nIphi);
481// printf(" nIeta %6i\n", nIeta);
482 id = -TMath::Abs(id); // if negative something wrong
483 }
484 return id;
485}
486
487//________________________________________________________________________________________________
488void AliEMCALGeometry::GetModuleIndexesFromCellIndexesInSModule(Int_t nSupMod, Int_t iphi, Int_t ieta,
489 Int_t &iphim, Int_t &ietam, Int_t &nModule) const
490{
491 // Transition from cell indexes (ieta,iphi) to module indexes (ietam,iphim, nModule)
492 static Int_t nphi=-1;
493 nphi = GetNumberOfModuleInPhiDirection(nSupMod);
494
495 ietam = ieta/fNETAdiv;
496 iphim = iphi/fNPHIdiv;
497 nModule = ietam * nphi + iphim;
498}
499
500//________________________________________________________________________________________________
501Int_t AliEMCALGeometry::GetAbsCellIdFromCellIndexes(Int_t nSupMod, Int_t iphi, Int_t ieta) const
502{
503 // Transition from super module number(nSupMod) and cell indexes (ieta,iphi) to absId
504 static Int_t ietam=-1, iphim=-1, nModule=-1;
505 static Int_t nIeta=-1, nIphi=-1; // cell indexes in module
506
507 GetModuleIndexesFromCellIndexesInSModule(nSupMod, iphi, ieta, ietam, iphim, nModule);
508
509 nIeta = ieta%fNETAdiv;
510 nIeta = fNETAdiv - 1 - nIeta;
511 nIphi = iphi%fNPHIdiv;
512
513 return GetAbsCellId(nSupMod, nModule, nIphi, nIeta);
514}
515
516//________________________________________________________________________________________________
517Bool_t AliEMCALGeometry::SuperModuleNumberFromEtaPhi(Double_t eta, Double_t phi, Int_t &nSupMod) const
518{
519 // Return false if phi belongs a phi cracks between SM
520
521 static Int_t i=0;
522
523 if(TMath::Abs(eta) > fEtaMaxOfTRD1) return kFALSE;
524
525 phi = TVector2::Phi_0_2pi(phi); // move phi to (0,2pi) boundaries
526 for(i=0; i<6; i++) {
527
528 //Check if it is not the complete geometry
529 if (i >= fEMCGeometry->GetNumberOfSuperModules()/2) return kFALSE;
530
531 if(phi>=fPhiBoundariesOfSM[2*i] && phi<=fPhiBoundariesOfSM[2*i+1]) {
532 nSupMod = 2*i;
533 if(eta < 0.0) nSupMod++;
534 AliDebug(1,Form("eta %f phi %f(%5.2f) : nSupMod %i : #bound %i", eta,phi,phi*TMath::RadToDeg(), nSupMod,i));
535 return kTRUE;
536 }
537 }
538 return kFALSE;
539}
540
541
542//________________________________________________________________________________________________
543Bool_t AliEMCALGeometry::GetAbsCellIdFromEtaPhi(Double_t eta, Double_t phi, Int_t &absId) const
544{
545 // Nov 17,2006
546 // stay here - phi problem as usual
547 static Int_t nSupMod=-1, i=0, ieta=-1, iphi=-1, etaShift=0, nphi=-1;
548 static Double_t absEta=0.0, d=0.0, dmin=0.0, phiLoc=0;
549 absId = nSupMod = - 1;
550 if(SuperModuleNumberFromEtaPhi(eta, phi, nSupMod)) {
551 // phi index first
552 phi = TVector2::Phi_0_2pi(phi);
553 phiLoc = phi - fPhiCentersOfSM[nSupMod/2];
554 nphi = fPhiCentersOfCells.GetSize();
a520bcd0 555 if(nSupMod>=10 && !fGeoName.Contains("12SMV1")) {
556 phiLoc = phi - 190.*TMath::DegToRad(); // half-size case... the reference for the loc is still 190 deg..?
e8c0d6bb 557 nphi /= 2;
558 }
a520bcd0 559 if(nSupMod>=10 && fGeoName.Contains("12SMV1")) {
560 // in the one_third case the variable fPhiCentersOfSM behaves like for the full_module.
561 nphi /= 3;
562 }
e8c0d6bb 563
564 dmin = TMath::Abs(fPhiCentersOfCells[0]-phiLoc);
565 iphi = 0;
566 for(i=1; i<nphi; i++) {
567 d = TMath::Abs(fPhiCentersOfCells[i] - phiLoc);
568 if(d < dmin) {
569 dmin = d;
570 iphi = i;
571 }
572 // printf(" i %i : d %f : dmin %f : fPhiCentersOfCells[i] %f \n", i, d, dmin, fPhiCentersOfCells[i]);
573 }
574 // odd SM are turned with respect of even SM - reverse indexes
575 AliDebug(2,Form(" iphi %i : dmin %f (phi %f, phiLoc %f ) ", iphi, dmin, phi, phiLoc));
576 // eta index
577 absEta = TMath::Abs(eta);
578 etaShift = iphi*fCentersOfCellsEtaDir.GetSize();
579 dmin = TMath::Abs(fEtaCentersOfCells[etaShift]-absEta);
580 ieta = 0;
581 for(i=1; i<fCentersOfCellsEtaDir.GetSize(); i++) {
582 d = TMath::Abs(fEtaCentersOfCells[i+etaShift] - absEta);
583 if(d < dmin) {
584 dmin = d;
585 ieta = i;
586 }
587 }
588 AliDebug(2,Form(" ieta %i : dmin %f (eta=%f) : nSupMod %i ", ieta, dmin, eta, nSupMod));
a520bcd0 589
590 //patch for mapping following alice convention
591 if(nSupMod%2 == 0)
592 ieta = (fCentersOfCellsEtaDir.GetSize()-1)-ieta;// 47-ieta, revert the ordering on A side in order to keep convention.
593
e8c0d6bb 594
595 absId = GetAbsCellIdFromCellIndexes(nSupMod, iphi, ieta);
596
597 return kTRUE;
598 }
599 return kFALSE;
600}
601
602//________________________________________________________________________________________________
603Bool_t AliEMCALGeometry::CheckAbsCellId(Int_t absId) const
604{
605 // May 31, 2006; only trd1 now
606 if(absId<0 || absId >= fNCells) return kFALSE;
607 else return kTRUE;
608}
609
610//________________________________________________________________________________________________
611Bool_t AliEMCALGeometry::GetCellIndex(Int_t absId,Int_t &nSupMod,Int_t &nModule,Int_t &nIphi,Int_t &nIeta) const
612{
613 // 21-sep-04; 19-oct-05;
614 // May 31, 2006; ALICE numbering scheme:
615 //
616 // In:
617 // absId - cell is as in Geant, 0<= absId < fNCells;
618 // Out:
619 // nSupMod - super module(SM) number, 0<= nSupMod < fNumberOfSuperModules;
620 // nModule - module number in SM, 0<= nModule < fNCellsInSupMod/fNCellsInSupMod or(/2) for tow last SM (10th and 11th);
621 // nIphi - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv;
622 // nIeta - cell number in eta driection inside module; 0<= nIeta < fNETAdiv;
623 //
624 static Int_t tmp=0, sm10=0;
625 if(!CheckAbsCellId(absId)) return kFALSE;
626
627 sm10 = fNCellsInSupMod*10;
a520bcd0 628 if(fKey110DEG == 1 && absId >= sm10 && !fGeoName.Contains("12SMV1")) { // 110 degree case; last two supermodules are halfsupermodules
e8c0d6bb 629 nSupMod = (absId-sm10) / (fNCellsInSupMod/2) + 10;
630 tmp = (absId-sm10) % (fNCellsInSupMod/2);
a520bcd0 631 } else if(fKey110DEG == 1 && absId >= sm10 && fGeoName.Contains("12SMV1")) { // 110 degree case; last two supermodules are 1/3 supermodules
632 nSupMod = (absId-sm10) / (fNCellsInSupMod/3) + 10;
633 tmp = (absId-sm10) % (fNCellsInSupMod/3);
634 } else {
e8c0d6bb 635 nSupMod = absId / fNCellsInSupMod;
636 tmp = absId % fNCellsInSupMod;
637 }
638
639 nModule = tmp / fNCellsInModule;
640 tmp = tmp % fNCellsInModule;
641 nIphi = tmp / fNPHIdiv;
642 nIeta = tmp % fNPHIdiv;
643
644 return kTRUE;
645}
646
647//________________________________________________________________________________________________
648Int_t AliEMCALGeometry::GetSuperModuleNumber(Int_t absId) const
649{
650 // Return the number of the supermodule given the absolute
651 // ALICE numbering id
652
653 static Int_t nSupMod=-1, nModule=-1, nIphi=-1, nIeta=-1;
654 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
655 return nSupMod;
656}
657
658//________________________________________________________________________________________________
659void AliEMCALGeometry::GetModulePhiEtaIndexInSModule(Int_t nSupMod, Int_t nModule, int &iphim, int &ietam) const
660{
661 // added nSupMod; - 19-oct-05 !
662 // Alice numbering scheme - Jun 01,2006
663 // ietam, iphi - indexes of module in two dimensional grid of SM
664 // ietam - have to change from 0 to fNZ-1
665 // iphim - have to change from 0 to nphi-1 (fNPhi-1 or fNPhi/2-1)
666 static Int_t nphi=-1;
667
a520bcd0 668 if(fKey110DEG == 1 && nSupMod>=10 && !fGeoName.Contains("12SMV1") ) nphi = fNPhi/2; // halfSM
669 else if(fKey110DEG == 1 && nSupMod>=10 && fGeoName.Contains("12SMV1") ) nphi = fNPhi/3; // 1/3 SM
670 else nphi = fNPhi; // full SM
e8c0d6bb 671
672 ietam = nModule/nphi;
673 iphim = nModule%nphi;
674}
675
676//________________________________________________________________________________________________
677void AliEMCALGeometry::GetCellPhiEtaIndexInSModule(Int_t nSupMod, Int_t nModule, Int_t nIphi, Int_t nIeta,
678int &iphi, int &ieta) const
679{
680 //
681 // Added nSupMod; Nov 25, 05
682 // Alice numbering scheme - Jun 01,2006
683 // IN:
684 // nSupMod - super module(SM) number, 0<= nSupMod < fNumberOfSuperModules;
685 // nModule - module number in SM, 0<= nModule < fNCellsInSupMod/fNCellsInSupMod or(/2) for tow last SM (10th and 11th);
686 // nIphi - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv;
687 // nIeta - cell number in eta driection inside module; 0<= nIeta < fNETAdiv;
688 //
689 // OUT:
690 // ieta, iphi - indexes of cell(tower) in two dimensional grid of SM
691 // ieta - have to change from 0 to (fNZ*fNETAdiv-1)
692 // iphi - have to change from 0 to (fNPhi*fNPHIdiv-1 or fNPhi*fNPHIdiv/2-1)
693 //
694 static Int_t iphim=-1, ietam=-1;
695
696 GetModulePhiEtaIndexInSModule(nSupMod,nModule, iphim, ietam);
697 // ieta = ietam*fNETAdiv + (1-nIeta); // x(module) = -z(SM)
698 ieta = ietam*fNETAdiv + (fNETAdiv - 1 - nIeta); // x(module) = -z(SM)
699 iphi = iphim*fNPHIdiv + nIphi; // y(module) = y(SM)
700
701 if(iphi<0 || ieta<0)
702 AliDebug(1,Form(" nSupMod %i nModule %i nIphi %i nIeta %i => ieta %i iphi %i\n",
703 nSupMod, nModule, nIphi, nIeta, ieta, iphi));
704}
705
706
707// Methods for AliEMCALRecPoint - Feb 19, 2006
708//________________________________________________________________________________________________
709Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t &xr, Double_t &yr, Double_t &zr) const
710{
711 // Look to see what the relative
712 // position inside a given cell is
713 // for a recpoint.
714 // Alice numbering scheme - Jun 08, 2006
715 // In:
716 // absId - cell is as in Geant, 0<= absId < fNCells;
717 // OUT:
718 // xr,yr,zr - x,y,z coordinates of cell with absId inside SM
719
720 // Shift index taking into account the difference between standard SM
a520bcd0 721 // and SM of half (or one third) size in phi direction
722
723 Int_t workaround; // a small trick to be able to define the const variable kphiIndexShift
724 //if half, two parts, 1/4 wide, should be remove. In case of one_third SM, the two parts to be removed are 1/3 each
725 if(fKey110DEG == 1 && !fGeoName.Contains("12SMV1")) workaround=4; // half SM case
726 else workaround=3; // one third of SM case
727 const Int_t kphiIndexShift = fCentersOfCellsPhiDir.GetSize()/workaround;
728 const Int_t kphiRangeSmallSM = fCentersOfCellsPhiDir.GetSize()-2*kphiIndexShift;
729
e8c0d6bb 730 static Int_t nSupMod=-1, nModule=-1, nIphi=-1, nIeta=-1, iphi=-1, ieta=-1;
731 if(!CheckAbsCellId(absId)) return kFALSE;
732
733 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
734 GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta);
735
736 //Get eta position. Careful with ALICE conventions (increase index decrease eta)
737 Int_t ieta2 = ieta;
738 if(nSupMod%2 == 0)
739 ieta2 = (fCentersOfCellsEtaDir.GetSize()-1)-ieta;// 47-ieta, revert the ordering on A side in order to keep convention.
740 zr = fCentersOfCellsEtaDir.At(ieta2);
741 xr = fCentersOfCellsXDir.At(ieta2);
742
743 //Get phi position. Careful with ALICE conventions (increase index increase phi)
744 Int_t iphi2 = iphi;
745 if(nSupMod<10) {
746 if(nSupMod%2 != 0)
747 iphi2 = (fCentersOfCellsPhiDir.GetSize()-1)-iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
748 yr = fCentersOfCellsPhiDir.At(iphi2);
749
750 } else {
751 if(nSupMod%2 != 0)
a520bcd0 752 iphi2 = (kphiRangeSmallSM-1)-iphi;// 11-iphi [1/2SM] or 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
e8c0d6bb 753 yr = fCentersOfCellsPhiDir.At(iphi2 + kphiIndexShift);
754 }
755 AliDebug(1,Form("absId %i nSupMod %i iphi %i ieta %i xr %f yr %f zr %f ",absId,nSupMod,iphi,ieta,xr,yr,zr));
756
757 return kTRUE;
758}
759
760//________________________________________________________________________________________________
761Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t loc[3]) const
762{
763 // Look to see what the relative
764 // position inside a given cell is
765 // for a recpoint. // Alice numbering scheme - Jun 03, 2006
766 loc[0] = loc[1] = loc[2]=0.0;
767 if(RelPosCellInSModule(absId, loc[0],loc[1],loc[2])) {
768 return kTRUE;
769 }
770 return kFALSE;
771}
772
773//________________________________________________________________________________________________
774Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, TVector3 &vloc) const
775{
776 // Look to see what the relative
777 // position inside a given cell is
778 // for a recpoint.
779 // Alice numbering scheme - Jun 03, 2006
780 static Double_t loc[3];
781 if(RelPosCellInSModule(absId,loc)) {
782 vloc.SetXYZ(loc[0], loc[1], loc[2]);
783 return kTRUE;
784 } else {
785 vloc.SetXYZ(0,0,0);
786 return kFALSE;
787 }
2012850d 788}
173558f2 789
d297ef6e 790//________________________________________________________________________________________________
1ae500a2 791Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t distEff, Double_t &xr, Double_t &yr, Double_t &zr) const
792{
793 // Jul 30, 2007 - taking into account position of shower max
794 // Look to see what the relative
795 // position inside a given cell is
796 // for a recpoint.
797 // In:
798 // absId - cell is as in Geant, 0<= absId < fNCells;
799 // e - cluster energy
800 // OUT:
801 // xr,yr,zr - x,y,z coordinates of cell with absId inside SM
e8c0d6bb 802
1ae500a2 803 // Shift index taking into account the difference between standard SM
a520bcd0 804 // and SM of half (or one third) size in phi direction
805
806 Int_t workaround; // a small trick to be able to define the const variable kphiIndexShift
807 //if half, two parts, 1/4 wide, should be remove. In case of one_third SM, the two parts to be removed are 1/3 each
808 if(fKey110DEG == 1 && !fGeoName.Contains("12SMV1")) workaround=4; // half SM case
809 else workaround=3; // one third of SM case
810 const Int_t kphiIndexShift = fCentersOfCellsPhiDir.GetSize()/workaround;
811 const Int_t kphiRangeSmallSM = fCentersOfCellsPhiDir.GetSize()-2*kphiIndexShift;
812
53e430a3 813 static Int_t nSupMod=0, nModule=-1, nIphi=-1, nIeta=-1, iphi=-1, ieta=-1;
814 static Int_t iphim=-1, ietam=-1;
1ae500a2 815 static AliEMCALShishKebabTrd1Module *mod = 0;
816 static TVector2 v;
817 if(!CheckAbsCellId(absId)) return kFALSE;
c694fff1 818
1ae500a2 819 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
820 GetModulePhiEtaIndexInSModule(nSupMod, nModule, iphim, ietam);
821 GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta);
c694fff1 822
823 //Get eta position. Careful with ALICE conventions (increase index decrease eta)
824 if(nSupMod%2 == 0) {
825 ietam = (fCentersOfCellsEtaDir.GetSize()/2-1)-ietam;// 47-ietam, revert the ordering on A side in order to keep convention.
826 if(nIeta == 0) nIeta = 1;
827 else nIeta = 0;
828 }
1ae500a2 829 mod = GetShishKebabModule(ietam);
c694fff1 830 mod ->GetPositionAtCenterCellLine(nIeta, distEff, v);
1ae500a2 831 xr = v.Y() - fParSM[0];
832 zr = v.X() - fParSM[2];
c694fff1 833
834 //Get phi position. Careful with ALICE conventions (increase index increase phi)
835 Int_t iphi2 = iphi;
836 if(nSupMod<10) {
837 if(nSupMod%2 != 0)
838 iphi2 = (fCentersOfCellsPhiDir.GetSize()-1)-iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
839 yr = fCentersOfCellsPhiDir.At(iphi2);
840
1ae500a2 841 } else {
a520bcd0 842 if(nSupMod%2 != 0)
843 iphi2 = (kphiRangeSmallSM-1)-iphi;// 11-iphi [1/2SM] or 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
844 yr = fCentersOfCellsPhiDir.At(iphi2 + kphiIndexShift);
1ae500a2 845 }
c694fff1 846
1ae500a2 847 AliDebug(1,Form("absId %i nSupMod %i iphi %i ieta %i xr %f yr %f zr %f ",absId,nSupMod,iphi,ieta,xr,yr,zr));
c694fff1 848
1ae500a2 849 return kTRUE;
850}
851
1d46d1f6 852
e8c0d6bb 853//________________________________________________________________________________________________
854void AliEMCALGeometry::CreateListOfTrd1Modules()
855{
856 // Generate the list of Trd1 modules
857 // which will make up the EMCAL
858 // geometry
859 // key: look to the AliEMCALShishKebabTrd1Module::
14e75ea7 860
e8c0d6bb 861 AliDebug(2,Form(" AliEMCALGeometry::CreateListOfTrd1Modules() started "));
e52475ed 862
e8c0d6bb 863 AliEMCALShishKebabTrd1Module *mod=0, *mTmp=0; // current module
864 if(fShishKebabTrd1Modules == 0) {
865 fShishKebabTrd1Modules = new TList;
866 fShishKebabTrd1Modules->SetName("ListOfTRD1");
867 for(int iz=0; iz< fEMCGeometry->GetNZ(); iz++) {
868 if(iz==0) {
869 // mod = new AliEMCALShishKebabTrd1Module(TMath::Pi()/2.,this);
870 mod = new AliEMCALShishKebabTrd1Module(TMath::Pi()/2.,fEMCGeometry);
871 } else {
872 mTmp = new AliEMCALShishKebabTrd1Module(*mod);
873 mod = mTmp;
874 }
875 fShishKebabTrd1Modules->Add(mod);
876 }
877 } else {
878 AliDebug(2,Form(" Already exits : "));
879 }
880 mod = (AliEMCALShishKebabTrd1Module*)fShishKebabTrd1Modules->At(fShishKebabTrd1Modules->GetSize()-1);
881 fEtaMaxOfTRD1 = mod->GetMaxEtaOfModule(0);
882
883 AliDebug(2,Form(" fShishKebabTrd1Modules has %i modules : max eta %5.4f \n",
884 fShishKebabTrd1Modules->GetSize(),fEtaMaxOfTRD1));
885 // Feb 20,2006;
886 // Jun 01, 2006 - ALICE numbering scheme
887 // define grid for cells in eta(z) and x directions in local coordinates system of SM
888 // Works just for 2x2 case only -- ?? start here
889 //
890 //
891 // Define grid for cells in phi(y) direction in local coordinates system of SM
892 // as for 2X2 as for 3X3 - Nov 8,2006
893 //
894 AliDebug(2,Form(" Cells grid in phi directions : size %i\n", fCentersOfCellsPhiDir.GetSize()));
895 Int_t ind=0; // this is phi index
896 Int_t ieta=0, nModule=0, iphiTemp;
897 Double_t xr=0., zr=0., theta=0., phi=0., eta=0., r=0., x=0.,y=0.;
898 TVector3 vglob;
899 Double_t ytCenterModule=0.0, ytCenterCell=0.0;
900
901 fCentersOfCellsPhiDir.Set(fNPhi*fNPHIdiv);
902 fPhiCentersOfCells.Set(fNPhi*fNPHIdiv);
903
904 Double_t r0 = fIPDistance + fLongModuleSize/2.;
905 for(Int_t it=0; it<fNPhi; it++) { // cycle on modules
906 ytCenterModule = -fParSM[1] + fPhiModuleSize*(2*it+1)/2; // center of module
907 for(Int_t ic=0; ic<fNPHIdiv; ic++) { // cycle on cells in module
908 if(fNPHIdiv==2) {
909 ytCenterCell = ytCenterModule + fPhiTileSize *(2*ic-1)/2.;
910 } else if(fNPHIdiv==3){
911 ytCenterCell = ytCenterModule + fPhiTileSize *(ic-1);
912 } else if(fNPHIdiv==1){
913 ytCenterCell = ytCenterModule;
914 }
915 fCentersOfCellsPhiDir.AddAt(ytCenterCell,ind);
916 // Define grid on phi direction
917 // Grid is not the same for different eta bin;
918 // Effect is small but is still here
919 phi = TMath::ATan2(ytCenterCell, r0);
920 fPhiCentersOfCells.AddAt(phi, ind);
921
922 AliDebug(2,Form(" ind %2.2i : y %8.3f ", ind, fCentersOfCellsPhiDir.At(ind)));
923 ind++;
924 }
925 }
926
927 fCentersOfCellsEtaDir.Set(fNZ *fNETAdiv);
928 fCentersOfCellsXDir.Set(fNZ *fNETAdiv);
929 fEtaCentersOfCells.Set(fNZ *fNETAdiv * fNPhi*fNPHIdiv);
930 AliDebug(2,Form(" Cells grid in eta directions : size %i\n", fCentersOfCellsEtaDir.GetSize()));
931 for(Int_t it=0; it<fNZ; it++) {
932 AliEMCALShishKebabTrd1Module *trd1 = GetShishKebabModule(it);
933 nModule = fNPhi*it;
934 for(Int_t ic=0; ic<fNETAdiv; ic++) {
935 if(fNPHIdiv==2) {
936 trd1->GetCenterOfCellInLocalCoordinateofSM(ic, xr, zr); // case of 2X2
937 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
938 } if(fNPHIdiv==3) {
939 trd1->GetCenterOfCellInLocalCoordinateofSM3X3(ic, xr, zr); // case of 3X3
940 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
941 } if(fNPHIdiv==1) {
942 trd1->GetCenterOfCellInLocalCoordinateofSM1X1(xr, zr); // case of 1X1
943 GetCellPhiEtaIndexInSModule(0, nModule, 0, ic, iphiTemp, ieta);
944 }
945 fCentersOfCellsXDir.AddAt(float(xr) - fParSM[0],ieta);
946 fCentersOfCellsEtaDir.AddAt(float(zr) - fParSM[2],ieta);
947 // Define grid on eta direction for each bin in phi
948 for(int iphi=0; iphi<fCentersOfCellsPhiDir.GetSize(); iphi++) {
949 x = xr + trd1->GetRadius();
950 y = fCentersOfCellsPhiDir[iphi];
951 r = TMath::Sqrt(x*x + y*y + zr*zr);
952 theta = TMath::ACos(zr/r);
953 eta = AliEMCALShishKebabTrd1Module::ThetaToEta(theta);
954 // ind = ieta*fCentersOfCellsPhiDir.GetSize() + iphi;
955 ind = iphi*fCentersOfCellsEtaDir.GetSize() + ieta;
956 fEtaCentersOfCells.AddAt(eta, ind);
957 }
958 //printf(" ieta %i : xr + trd1->GetRadius() %f : zr %f : eta %f \n", ieta, xr + trd1->GetRadius(), zr, eta);
959 }
960 }
961 for(Int_t i=0; i<fCentersOfCellsEtaDir.GetSize(); i++) {
962 AliDebug(2,Form(" ind %2.2i : z %8.3f : x %8.3f", i+1,
963 fCentersOfCellsEtaDir.At(i),fCentersOfCellsXDir.At(i)));
964 }
965
966}
967
968
969//________________________________________________________________________________________________
970AliEMCALShishKebabTrd1Module* AliEMCALGeometry::GetShishKebabModule(Int_t neta) const
971{
972 //This method was too long to be
973 //included in the header file - the
974 //rule checker complained about it's
975 //length, so we move it here. It returns the
976 //shishkebabmodule at a given eta index point.
977
978 static AliEMCALShishKebabTrd1Module* trd1=0;
979 if(fShishKebabTrd1Modules && neta>=0 && neta<fShishKebabTrd1Modules->GetSize()) {
980 trd1 = (AliEMCALShishKebabTrd1Module*)fShishKebabTrd1Modules->At(neta);
981 } else trd1 = 0;
982 return trd1;
983}
984
985//___________________________________________________________________
986void AliEMCALGeometry::PrintGeometryGeoUtils()
987{
988 //Print information from geometry
989 fEMCGeometry->PrintGeometry();
990
991 printf(" fShishKebabTrd1Modules has %i modules : max eta %5.4f \n",
992 fShishKebabTrd1Modules->GetSize(),fEtaMaxOfTRD1);
993
994 printf("\n Cells grid in eta directions : size %i\n", fCentersOfCellsEtaDir.GetSize());
995 for(Int_t i=0; i<fCentersOfCellsEtaDir.GetSize(); i++) {
996 printf(" ind %2.2i : z %8.3f : x %8.3f \n", i,
997 fCentersOfCellsEtaDir.At(i),fCentersOfCellsXDir.At(i));
998 int ind=0; // Nov 21,2006
999 for(Int_t iphi=0; iphi<fCentersOfCellsPhiDir.GetSize(); iphi++) {
1000 ind = iphi*fCentersOfCellsEtaDir.GetSize() + i;
1001 printf("%6.4f ", fEtaCentersOfCells[ind]);
1002 if((iphi+1)%12 == 0) printf("\n");
1003 }
1004 printf("\n");
1005
1006 }
1007
1008 printf("\n Cells grid in phi directions : size %i\n", fCentersOfCellsPhiDir.GetSize());
1009 for(Int_t i=0; i<fCentersOfCellsPhiDir.GetSize(); i++) {
1010 double phi=fPhiCentersOfCells.At(i);
1011 printf(" ind %2.2i : y %8.3f : phi %7.5f(%6.2f) \n", i, fCentersOfCellsPhiDir.At(i),
1012 phi, phi*TMath::RadToDeg());
1013 }
1014
1015}
1016
1017//____________________________________________________________________________
1018Bool_t AliEMCALGeometry::Impact(const TParticle * particle) const
1019{
1020 // Tells if a particle enters EMCAL
1021 Bool_t in=kFALSE;
1022 Int_t absID=0;
1023 TVector3 vtx(particle->Vx(),particle->Vy(),particle->Vz());
1024 TVector3 vimpact(0,0,0);
1025 ImpactOnEmcal(vtx,particle->Theta(),particle->Phi(),absID,vimpact);
1026 if(absID>=0)
1027 in=kTRUE;
1028 return in;
1029}
1030//____________________________________________________________________________
1031void AliEMCALGeometry::ImpactOnEmcal(TVector3 vtx, Double_t theta, Double_t phi,
1032 Int_t & absId, TVector3 & vimpact) const
1033{
1034 // calculates the impact coordinates on EMCAL (centre of a tower/not on EMCAL surface)
1035 // of a neutral particle
1036 // emitted in the vertex vtx[3] with direction theta and phi in the ALICE global coordinate system
1037
1038 TVector3 p(TMath::Sin(theta)*TMath::Cos(phi),TMath::Sin(theta)*TMath::Sin(phi),TMath::Cos(theta)) ;
1039
1040 vimpact.SetXYZ(0,0,0);
1041 absId=-1;
1042 if(phi==0 || theta==0) return;
1043
1044 TVector3 direction;
1045 Double_t factor = (fIPDistance-vtx[1])/p[1];
1046 direction = vtx + factor*p;
1047
1048 //from particle direction -> tower hitted
1049 GetAbsCellIdFromEtaPhi(direction.Eta(),direction.Phi(),absId);
1050
1051 //tower absID hitted -> tower/module plane (evaluated at the center of the tower)
1052 Int_t nSupMod=-1, nModule=-1, nIphi=-1, nIeta=-1;
1053 Double_t loc[3],loc2[3],loc3[3];
1054 Double_t glob[3]={},glob2[3]={},glob3[3]={};
1055
1056 if(!RelPosCellInSModule(absId,loc)) return;
1057
1058 //loc is cell center of tower
1059 GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
1060
1061 //look at 2 neighbours-s cell using nIphi={0,1} and nIeta={0,1}
1062 Int_t nIphi2=-1,nIeta2=-1,absId2=-1,absId3=-1;
1063 if(nIeta==0) nIeta2=1;
1064 else nIeta2=0;
1065 absId2=GetAbsCellId(nSupMod,nModule,nIphi,nIeta2);
1066 if(nIphi==0) nIphi2=1;
1067 else nIphi2=0;
1068 absId3=GetAbsCellId(nSupMod,nModule,nIphi2,nIeta);
1069
1070 //2nd point on emcal cell plane
1071 if(!RelPosCellInSModule(absId2,loc2)) return;
1072
1073 //3rd point on emcal cell plane
1074 if(!RelPosCellInSModule(absId3,loc3)) return;
1075
1076 // Get Matrix
1077 const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
1078 if(m) {
1079 m->LocalToMaster(loc, glob);
1080 m->LocalToMaster(loc2, glob2);
1081 m->LocalToMaster(loc3, glob3);
1082 } else {
1083 AliFatal("Geo matrixes are not loaded \n") ;
1084 }
1085
1086 //Equation of Plane from glob,glob2,glob3 (Ax+By+Cz+D=0)
1087 Double_t a = glob[1]*(glob2[2]-glob3[2]) + glob2[1]*(glob3[2]-glob[2]) + glob3[1]*(glob[2]-glob2[2]);
1088 Double_t b = glob[2]*(glob2[0]-glob3[0]) + glob2[2]*(glob3[0]-glob[0]) + glob3[2]*(glob[0]-glob2[0]);
1089 Double_t c = glob[0]*(glob2[1]-glob3[1]) + glob2[0]*(glob3[1]-glob[1]) + glob3[0]*(glob[1]-glob2[1]);
1090 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]);
1091 d=-d;
1092
1093 //shift equation of plane from tower/module center to surface along vector (A,B,C) normal to tower/module plane
1094 Double_t dist = fLongModuleSize/2.;
1095 Double_t norm = TMath::Sqrt(a*a+b*b+c*c);
1096 Double_t glob4[3]={};
1097 TVector3 dir(a,b,c);
1098 TVector3 point(glob[0],glob[1],glob[2]);
1099 if(point.Dot(dir)<0) dist*=-1;
1100 glob4[0]=glob[0]-dist*a/norm;
1101 glob4[1]=glob[1]-dist*b/norm;
1102 glob4[2]=glob[2]-dist*c/norm;
1103 d = glob4[0]*a + glob4[1]*b + glob4[2]*c ;
1104 d = -d;
1105
1106 //Line determination (2 points for equation of line : vtx and direction)
1107 //impact between line (particle) and plane (module/tower plane)
1108 Double_t den = a*(vtx(0)-direction(0)) + b*(vtx(1)-direction(1)) + c*(vtx(2)-direction(2));
1109 if(den==0){
1110 printf("ImpactOnEmcal() No solution :\n");
1111 return;
1112 }
1113
1114 Double_t length = a*vtx(0)+b*vtx(1)+c*vtx(2)+d;
1115 length /=den;
1116
1117 vimpact.SetXYZ(vtx(0)+length*(direction(0)-vtx(0)),vtx(1)+length*(direction(1)-vtx(1)),vtx(2)+length*(direction(2)-vtx(2)));
1118
1119 //shift vimpact from tower/module surface to center along vector (A,B,C) normal to tower/module plane
1120 vimpact.SetXYZ(vimpact(0)+dist*a/norm,vimpact(1)+dist*b/norm,vimpact(2)+dist*c/norm);
1121
1122 return;
1123}
1124
1125//_____________________________________________________________________________
1126Bool_t AliEMCALGeometry::IsInEMCAL(Double_t x, Double_t y, Double_t z) const {
1127 // Checks whether point is inside the EMCal volume, used in AliEMCALv*.cxx
1128 //
1129 // Code uses cylindrical approximation made of inner radius (for speed)
1130 //
1131 // Points behind EMCAl, i.e. R > outer radius, but eta, phi in acceptance
1132 // are considered to inside
1133
1134 Double_t r=sqrt(x*x+y*y);
1135
1136 if ( r > fEnvelop[0] ) {
1137 Double_t theta;
1138 theta = TMath::ATan2(r,z);
1139 Double_t eta;
1140 if(theta == 0)
1141 eta = 9999;
1142 else
1143 eta = -TMath::Log(TMath::Tan(theta/2.));
1144 if (eta < fArm1EtaMin || eta > fArm1EtaMax)
1145 return 0;
1146
1147 Double_t phi = TMath::ATan2(y,x) * 180./TMath::Pi();
1148 if (phi < 0) phi += 360; // phi should go from 0 to 360 in this case
1149 if (phi > fArm1PhiMin && phi < fArm1PhiMax)
1150 return 1;
1151 }
1152 return 0;
1153}
1154
1155//________________________________________________________________________________________________
1156Int_t AliEMCALGeometry::GetAbsTRUNumberFromNumberInSm(const Int_t row, const Int_t col, const Int_t sm) const
1157{ // Nov 6, 2007
1158 // Get TRU absolute number from column, row and Super Module number
1159 Int_t itru = row + col*fEMCGeometry->GetNModulesInTRUPhi() + sm*fEMCGeometry->GetNTRU();
1160 // printf(" GetAbsTRUNumberFromNumberInSm : row %2i col %2i sm %2i -> itru %2i\n", row, col, sm, itru);
1161 return itru;
1162}
1163
1164//________________________________________________________________________________________________
1165Bool_t AliEMCALGeometry::GetAbsFastORIndexFromTRU(const Int_t iTRU, const Int_t iADC, Int_t& id) const
1166{
1167 //Trigger mapping method, get FastOr Index from TRU
1168
1169 if (iTRU > 31 || iTRU < 0 || iADC > 95 || iADC < 0)
1170 {
1171 AliError("TRU out of range!");
1172 return kFALSE;
1173 }
1174
1175 id = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
1176
1177 id += iTRU * 96;
1178
1179 return kTRUE;
1180}
1181
1182//________________________________________________________________________________________________
1183Bool_t AliEMCALGeometry::GetTRUFromAbsFastORIndex(const Int_t id, Int_t& iTRU, Int_t& iADC) const
1184{
1185
1186 //Trigger mapping method, get TRU number from FastOr Index
1187
1188 if (id > 3071 || id < 0)
1189 {
1190 AliError("Id out of range!");
1191 return kFALSE;
1192 }
1193
1194 iTRU = id / 96;
1195
1196 iADC = id % 96;
1197
1198 iADC = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
1199
1200 return kTRUE;
1201}
1202
1203//________________________________________________________________________________________________
1204Bool_t AliEMCALGeometry::GetPositionInTRUFromAbsFastORIndex(const Int_t id, Int_t& iTRU, Int_t& iEta, Int_t& iPhi) const
1205{
1206 //Trigger mapping method, get position in TRU from FasOr Index
1207
1208 Int_t iADC=-1;
1209 if (!GetTRUFromAbsFastORIndex(id, iTRU, iADC)) return kFALSE;
1210
1211 Int_t x = iADC / 4;
1212 Int_t y = iADC % 4;
1213
1214 if ( iTRU % 2 ) // C side
1215 {
1216 iEta = 23 - x;
1217 iPhi = y;
1218 }
1219 else // A side
1220 {
1221 iEta = x;
1222 iPhi = 3 - y;
1223 }
1224
1225 return kTRUE;
1226}
1227
1228//________________________________________________________________________________________________
1229Bool_t AliEMCALGeometry::GetPositionInSMFromAbsFastORIndex(const Int_t id, Int_t& iSM, Int_t& iEta, Int_t& iPhi) const
1230{
1231 //Trigger mapping method, get position in Super Module from FasOr Index
1232
1233 Int_t iTRU=-1;
1234
1235 if (!GetPositionInTRUFromAbsFastORIndex(id, iTRU, iEta, iPhi)) return kFALSE;
1236
1237 if (iTRU % 2) // C side
1238 {
1239 iSM = 2 * ( int( int(iTRU / 2) / 3 ) ) + 1;
1240 }
1241 else // A side
1242 {
1243 iSM = 2 * ( int( int(iTRU / 2) / 3 ) );
1244 }
1245
1246 iPhi += 4 * int((iTRU % 6) / 2);
1247
1248 return kTRUE;
1249}
1250
1251//________________________________________________________________________________________________
1252Bool_t AliEMCALGeometry::GetPositionInEMCALFromAbsFastORIndex(const Int_t id, Int_t& iEta, Int_t& iPhi) const
1253{
1254 //Trigger mapping method, get position in EMCAL from FastOR index
1255
1256 Int_t iSM=-1;
1257
1258 if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
1259 {
1260 if (iSM % 2) iEta += 24;
1261
1262 iPhi += 12 * int(iSM / 2);
1263
1264 return kTRUE;
1265 }
1266
1267 return kFALSE;
1268}
1269
1270//________________________________________________________________________________________________
1271Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInTRU(const Int_t iTRU, const Int_t iEta, const Int_t iPhi, Int_t& id) const
1272{
1273 //Trigger mapping method, get Index if FastOr from Position in TRU
1274
1275 if (iTRU < 0 || iTRU > 31 || iEta < 0 || iEta > 23 || iPhi < 0 || iPhi > 3)
1276 {
1277 AliError("Out of range!");
1278 return kFALSE;
1279 }
1280
1281 id = iPhi + 4 * iEta + iTRU * 96;
1282
1283 return kTRUE;
1284}
1285
1286//________________________________________________________________________________________________
1287Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInSM(const Int_t iSM, const Int_t iEta, const Int_t iPhi, Int_t& id) const
1288{
1289 //Trigger mapping method, from position in SM Index get FastOR index
1290
1291 if (iSM < 0 || iSM > 11 || iEta < 0 || iEta > 23 || iPhi < 0 || iPhi > 11)
1292 {
1293 AliError("Out of range!");
1294 return kFALSE;
1295 }
1296
1297 Int_t x = iEta;
1298 Int_t y = iPhi % 4;
1299
1300 Int_t iOff = (iSM % 2) ? 1 : 0;
1301 Int_t iTRU = 2 * int(iPhi / 4) + 6 * int(iSM / 2) + iOff;
1302
1303 if (GetAbsFastORIndexFromPositionInTRU(iTRU, x, y, id))
1304 {
1305 return kTRUE;
1306 }
1307
1308 return kFALSE;
1309}
1310
1311//________________________________________________________________________________________________
1312Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInEMCAL(const Int_t iEta, const Int_t iPhi, Int_t& id) const
1313{
1314 //Trigger mapping method, from position in EMCAL Index get FastOR index
1315
1316 if (iEta < 0 || iEta > 47 || iPhi < 0 || iPhi > 63 )
1317 {
1318 AliError("Out of range!");
1319 return kFALSE;
1320 }
1321
1322 if (fFastOR2DMap[iEta][iPhi] == -1)
1323 {
1324 AliError("Invalid index!");
1325 return kFALSE;
1326 }
1327
1328 id = fFastOR2DMap[iEta][iPhi];
1329
1330 return kTRUE;
1331}
1332
1333//________________________________________________________________________________________________
1334Bool_t AliEMCALGeometry::GetFastORIndexFromCellIndex(const Int_t id, Int_t& idx) const
1335{
1336 //Trigger mapping method, from cell index get FastOR index
1337
1338 Int_t iSupMod, nModule, nIphi, nIeta, iphim, ietam;
1339
1340 Bool_t isOK = GetCellIndex( id, iSupMod, nModule, nIphi, nIeta );
1341
1342 GetModulePhiEtaIndexInSModule( iSupMod, nModule, iphim, ietam );
1343
1344 if (isOK && GetAbsFastORIndexFromPositionInSM(iSupMod, ietam, iphim, idx))
1345 {
1346 return kTRUE;
1347 }
1348
1349 return kFALSE;
1350}
1351
1352//________________________________________________________________________________________________
1353Bool_t AliEMCALGeometry::GetCellIndexFromFastORIndex(const Int_t id, Int_t idx[4]) const
1354{
1355 //Trigger mapping method, from FASTOR index get cell index
1356
1357 Int_t iSM=-1, iEta=-1, iPhi=-1;
1358 if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
1359 {
1360 Int_t ix = 2 * iEta;
1361 Int_t iy = 2 * iPhi;
1362
1363 for (Int_t i=0; i<2; i++)
1364 {
1365 for (Int_t j=0; j<2; j++)
1366 {
1367 idx[2*i+j] = GetAbsCellIdFromCellIndexes(iSM, iy + i, ix + j);
1368 }
1369 }
1370
1371 return kTRUE;
1372 }
1373
1374 return kFALSE;
1375}
1376
1377//________________________________________________________________________________________________
1378Bool_t AliEMCALGeometry::GetTRUIndexFromSTUIndex(const Int_t id, Int_t& idx) const
1379{
1380 //Trigger mapping method, from STU index get TRU index
1381
1382 if (id > 31 || id < 0)
1383 {
1384 AliError(Form("TRU index out of range: %d",id));
1385 return kFALSE;
1386 }
1387
1388 idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
1389
1390 return kTRUE;
1391}
1392
1393//________________________________________________________________________________________________
1394Int_t AliEMCALGeometry::GetTRUIndexFromSTUIndex(const Int_t id) const
1395{
1396 //Trigger mapping method, from STU index get TRU index
1397
1398 if (id > 31 || id < 0)
1399 {
1400 AliError(Form("TRU index out of range: %d",id));
1401 }
1402
1403 Int_t idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
1404
1405 return idx;
1406}
1407
1408//________________________________________________________________________________________________
1409void AliEMCALGeometry::BuildFastOR2DMap()
1410{
1411 // Needed by STU
1412 for (Int_t i = 0; i < 32; i++)
1413 {
1414 for (Int_t j = 0; j < 24; j++)
1415 {
1416 for (Int_t k = 0; k < 4; k++)
1417 {
1418 Int_t id;
1419 if (GetAbsFastORIndexFromPositionInTRU(i, j, k, id))
1420 {
1421 Int_t x = j, y = k + 4 * int(i / 2);
1422
1423 if (i % 2) x += 24;
1424
1425 fFastOR2DMap[x][y] = id;
1426 }
1427 }
1428 }
1429 }
1430}
1431
804b828a 1432//________________________________________________________________________________________________
1433Bool_t AliEMCALGeometry::GetTRUIndexFromOnlineIndex(const Int_t id, Int_t& idx) const
1434{
1435 //Trigger mapping method, from STU index get TRU index
1436
1437 if (id > 31 || id < 0)
1438 {
1439 AliError(Form("TRU index out of range: %d",id));
1440 return kFALSE;
1441 }
1442
1443 idx = ((id % 6) < 3) ? 6 * int(id / 6) + 2 * (id % 3) : 6 * int(id / 6) + 2 * (2 - (id % 3)) + 1;
1444
1445 return kTRUE;
1446}
1447
1448//________________________________________________________________________________________________
1449Int_t AliEMCALGeometry::GetTRUIndexFromOnlineIndex(const Int_t id) const
1450{
1451 //Trigger mapping method, from STU index get TRU index
1452
1453 if (id > 31 || id < 0)
1454 {
1455 AliError(Form("TRU index out of range: %d",id));
1456 }
1457
1458 Int_t idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
1459
1460 return idx;
1461}
1462
1463//________________________________________________________________________________________________
1464Bool_t AliEMCALGeometry::GetOnlineIndexFromTRUIndex(const Int_t id, Int_t& idx) const
1465{
1466 //Trigger mapping method, from STU index get TRU index
1467
1468 if (id > 31 || id < 0)
1469 {
1470 AliError(Form("TRU index out of range: %d",id));
1471 return kFALSE;
1472 }
1473
1474 idx = (id % 2) ? int((6 - (id % 6)) / 2) + 3 * (int(id / 6) + 1) : 3 * int(id / 6) + int(id / 2);
1475
1476 return kTRUE;
1477}
1478
1479//________________________________________________________________________________________________
1480Int_t AliEMCALGeometry::GetOnlineIndexFromTRUIndex(const Int_t id) const
1481{
1482 //Trigger mapping method, from STU index get TRU index
1483
1484 if (id > 31 || id < 0)
1485 {
1486 AliError(Form("TRU index out of range: %d",id));
1487 }
1488
1489 Int_t idx = (id % 2) ? int((6 - (id % 6)) / 2) + 3 * (int(id / 6) + 1) : 3 * int(id / 6) + int(id / 2);
1490
1491 return idx;
1492}
1493
e8c0d6bb 1494//________________________________________________________________________________________________
1495Bool_t AliEMCALGeometry::GetFastORIndexFromL0Index(const Int_t iTRU, const Int_t id, Int_t idx[], const Int_t size) const
1496{
1497 //Trigger mapping method, from L0 index get FastOR index
1498 if (size <= 0 ||size > 4)
1499 {
1500 AliError("Size not supported!");
1501 return kFALSE;
1502 }
1503
1504 Int_t motif[4] = {0, 1, 4, 5};
1505
1506 switch (size)
1507 {
1508 case 1: // Cosmic trigger
1509 if (!GetAbsFastORIndexFromTRU(iTRU, id, idx[1])) return kFALSE;
1510 break;
1511 case 4: // 4 x 4
1512 for (Int_t k = 0; k < 4; k++)
1513 {
1514 Int_t iADC = motif[k] + 4 * int(id / 3) + (id % 3);
1515
1516 if (!GetAbsFastORIndexFromTRU(iTRU, iADC, idx[k])) return kFALSE;
1517 }
1518 break;
1519 default:
1520 break;
1521 }
1522
1523 return kTRUE;
1524}
1525
1526//____________________________________________________________________________
1527const TGeoHMatrix * AliEMCALGeometry::GetMatrixForSuperModule(Int_t smod) const {
1528
1529 //Provides shift-rotation matrix for EMCAL
1530
1531 if(smod < 0 || smod > fEMCGeometry->GetNumberOfSuperModules())
1532 AliFatal(Form("Wrong supermodule index -> %d",smod));
1533
1534 //If GeoManager exists, take matrixes from it
1535
1536 //
1537 // if(fKey110DEG && ind>=10) {
1538 // }
1539 //
1540 // if(!gGeoManager->cd(volpath.Data()))
1541 // AliFatal(Form("AliEMCALGeometry::GeoManager cannot find path %s!",volpath.Data()));
1542 //
1543 // TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
1544
1545 //Use matrices set externally
1546 if(!gGeoManager || (gGeoManager && fUseExternalMatrices)){
1547 if(fkSModuleMatrix[smod]){
1548 return fkSModuleMatrix[smod] ;
1549 }
1550 else{
1551 AliInfo("Stop:");
1552 printf("\t Can not find EMCAL misalignment matrixes\n") ;
1553 printf("\t Either import TGeoManager from geometry.root or \n");
1554 printf("\t read stored matrixes from AliESD Header: \n") ;
1555 printf("\t AliEMCALGeometry::SetMisalMatrixes(header->GetEMCALMisalMatrix()) \n") ;
1556 abort() ;
1557 }
1558 }//external matrices
1559
a520bcd0 1560 if(gGeoManager){
e8c0d6bb 1561 const Int_t buffersize = 255;
a520bcd0 1562 char path[buffersize] ;
1563 snprintf(path,buffersize,"/ALIC_1/XEN1_1/SMOD_%d",smod+1) ;
1564 //TString volpath = "ALIC_1/XEN1_1/SMOD_";
1565 //volpath += smod+1;
1566
1567 if(fKey110DEG && smod >= 10 && !fGeoName.Contains("12SMV1") ){
1568 snprintf(path,buffersize,"/ALIC_1/XEN1_1/SM10_%d",smod-10+1) ;
1569 //volpath = "ALIC_1/XEN1_1/SM10_";
1570 //volpath += smod-10+1;
1571 }
1572 if(fKey110DEG && smod >= 10 && fGeoName.Contains("12SMV1") ){
1573 snprintf(path,buffersize,"/ALIC_1/XEN1_1/SM3rd_%d",smod-10+1) ;
1574 //volpath = "ALIC_1/XEN1_1/SM10_";
1575 //volpath += smod-10+1;
1576 }
1577 if (!gGeoManager->cd(path)){
1578 AliFatal(Form("Geo manager can not find path %s!\n",path));
1579 }
1580 return gGeoManager->GetCurrentMatrix();
1581 }
e8c0d6bb 1582
1583 return 0 ;
1584}
1585
1586//______________________________________________________________________
1587void AliEMCALGeometry::GetModulePhiEtaIndexInSModuleFromTRUIndex(Int_t itru, Int_t iphitru, Int_t ietatru, Int_t &iphiSM, Int_t &ietaSM) const
1588{
1589
1590 // This method transforms the (eta,phi) index of module in a
1591 // TRU matrix into Super Module (eta,phi) index.
1592
1593 // Calculate in which row and column where the TRU are
1594 // ordered in the SM
1595
1596 Int_t col = itru/fEMCGeometry->GetNTRUPhi() ; // indexes of TRU in SM
1597 Int_t row = itru - col*fEMCGeometry->GetNTRUPhi();
1598
1599 iphiSM = fEMCGeometry->GetNModulesInTRUPhi()*row + iphitru ;
1600 ietaSM = fEMCGeometry->GetNModulesInTRUEta()*col + ietatru ;
e8c0d6bb 1601}
1602
1603//__________________________________________________________________________________________________________________
1604void AliEMCALGeometry::RecalculateTowerPosition(Float_t drow, Float_t dcol, const Int_t sm, const Float_t depth,
1605 const Float_t misaligTransShifts[15], const Float_t misaligRotShifts[15], Float_t global[3]) const
1606{ //Transform clusters cell position into global with alternative method, taking into account the depth calculation.
1607 //Input are: the tower indeces,
1608 // supermodule,
1609 // particle type (photon 0, electron 1, hadron 2 )
1610 // misalignment shifts to global position in case of need.
1611 // Federico.Ronchetti@cern.ch
1612
1613
1614 // To use in a print later
1615 Float_t droworg = drow;
1616 Float_t dcolorg = dcol;
1617
1618 if(gGeoManager){
1619 //Recover some stuff
1620
1621 const Int_t nSMod = fEMCGeometry->GetNumberOfSuperModules();
1622
1623 gGeoManager->cd("ALIC_1/XEN1_1");
1624 TGeoNode *geoXEn1 = gGeoManager->GetCurrentNode();
1625 TGeoNodeMatrix *geoSM[nSMod];
1626 TGeoVolume *geoSMVol[nSMod];
1627 TGeoShape *geoSMShape[nSMod];
1628 TGeoBBox *geoBox[nSMod];
1629 TGeoMatrix *geoSMMatrix[nSMod];
1630
1631 for(int iSM = 0; iSM < nSMod; iSM++) {
1632 geoSM[iSM] = dynamic_cast<TGeoNodeMatrix *>(geoXEn1->GetDaughter(iSM));
1633 geoSMVol[iSM] = geoSM[iSM]->GetVolume();
1634 geoSMShape[iSM] = geoSMVol[iSM]->GetShape();
1635 geoBox[iSM] = dynamic_cast<TGeoBBox *>(geoSMShape[iSM]);
1636 geoSMMatrix[iSM] = geoSM[iSM]->GetMatrix();
1637 }
1638
1639 if(sm % 2 == 0) {
1640 dcol = 47. - dcol;
1641 drow = 23. - drow;
1642 }
1643
1644 Int_t istrip = 0;
1645 Float_t z0 = 0;
1646 Float_t zb = 0;
bccc4a4f 1647 Float_t zIs = 0;
e8c0d6bb 1648
1649 Float_t x,y,z; // return variables in terry's RF
1650
1651 //***********************************************************
1652 //Do not like this: too many hardcoded values, is it not already stored somewhere else?
1653 // : need more comments in the code
1654 //***********************************************************
1655
1656 Float_t dz = 6.0; // base cell width in eta
1657 Float_t dx = 6.004; // base cell width in phi
1658
1659
1660 //Float_t L = 26.04; // active tower length for hadron (lead+scint+paper)
1661 // we use the geant numbers 13.87*2=27.74
1662 Float_t teta1 = 0.;
1663
1664 //Do some basic checks
1665 if (dcol >= 47.5 || dcol<-0.5) {
1666 AliError(Form("Bad tower coordinate dcol=%f, where dcol >= 47.5 || dcol<-0.5; org: %f", dcol, dcolorg));
1667 return;
1668 }
1669 if (drow >= 23.5 || drow<-0.5) {
1670 AliError(Form("Bad tower coordinate drow=%f, where drow >= 23.5 || drow<-0.5; org: %f", drow, droworg));
1671 return;
1672 }
1673 if (sm >= nSMod || sm < 0) {
1674 AliError(Form("Bad SM number sm=%d, where sm >= %d || sm < 0", nSMod, sm));
1675 return;
1676 }
1677
1678 istrip = int ((dcol+0.5)/2);
1679
1680 // tapering angle
1681 teta1 = TMath::DegToRad() * istrip * 1.5;
1682
1683 // calculation of module corner along z
1684 // as a function of strip
1685
1686 for (int is=0; is<= istrip; is++) {
1687
1688 teta1 = TMath::DegToRad() * (is*1.5 + 0.75);
1689 if(is==0)
bccc4a4f 1690 zIs = zIs + 2*dz*TMath::Cos(teta1);
e8c0d6bb 1691 else
bccc4a4f 1692 zIs = zIs + 2*dz*TMath::Cos(teta1) + 2*dz*TMath::Sin(teta1)*TMath::Tan(teta1-0.75*TMath::DegToRad());
e8c0d6bb 1693
1694 }
1695
1696 z0 = dz*(dcol-2*istrip+0.5);
1697 zb = (2*dz-z0-depth*TMath::Tan(teta1));
1698
bccc4a4f 1699 z = zIs - zb*TMath::Cos(teta1);
e8c0d6bb 1700 y = depth/TMath::Cos(teta1) + zb*TMath::Sin(teta1);
1701
1702 x = (drow + 0.5)*dx;
1703
1704 // moving the origin from terry's RF
1705 // to the GEANT one
1706
1707 double xx = y - geoBox[sm]->GetDX();
1708 double yy = -x + geoBox[sm]->GetDY();
1709 double zz = z - geoBox[sm]->GetDZ();
1710 const double localIn[3] = {xx, yy, zz};
1711 double dglobal[3];
1712 //geoSMMatrix[sm]->Print();
1713 //printf("TFF Local (row = %d, col = %d, x = %3.2f, y = %3.2f, z = %3.2f)\n", iroworg, icolorg, localIn[0], localIn[1], localIn[2]);
1714 geoSMMatrix[sm]->LocalToMaster(localIn, dglobal);
1715 //printf("TFF Global (row = %2.0f, col = %2.0f, x = %3.2f, y = %3.2f, z = %3.2f)\n", drow, dcol, dglobal[0], dglobal[1], dglobal[2]);
1716
1717 //apply global shifts
1718 if(sm == 2 || sm == 3) {//sector 1
1719 global[0] = dglobal[0] + misaligTransShifts[3] + misaligRotShifts[3]*TMath::Sin(TMath::DegToRad()*20) ;
1720 global[1] = dglobal[1] + misaligTransShifts[4] + misaligRotShifts[4]*TMath::Cos(TMath::DegToRad()*20) ;
1721 global[2] = dglobal[2] + misaligTransShifts[5];
1722 }
1723 else if(sm == 0 || sm == 1){//sector 0
1724 global[0] = dglobal[0] + misaligTransShifts[0];
1725 global[1] = dglobal[1] + misaligTransShifts[1];
1726 global[2] = dglobal[2] + misaligTransShifts[2];
1727 }
1728 else {
1729 AliInfo("Careful, correction not implemented yet!");
1730 global[0] = dglobal[0] ;
1731 global[1] = dglobal[1] ;
1732 global[2] = dglobal[2] ;
1733 }
1734
1735
1736 }
1737 else{
1738 AliFatal("Geometry boxes information, check that geometry.root is loaded\n");
1739 }
1740
1741}
bccc4a4f 1742
1743void AliEMCALGeometry::SetMisalMatrix(const TGeoHMatrix * m, Int_t smod)
1744{
1745// Method to set shift-rotational matrixes from ESDHeader
1746// Move from header due to coding violations : Dec 2,2011 by PAI
1747 fUseExternalMatrices = kTRUE;
1748
1749 if (smod >= 0 && smod < fEMCGeometry->GetNumberOfSuperModules()){
1750 if(!fkSModuleMatrix[smod]) fkSModuleMatrix[smod] = new TGeoHMatrix(*m) ; //Set only if not set yet
1751 } else AliFatal(Form("Wrong supermodule index -> %d",smod));
1752}