1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
18 //_________________________________________________________________________
19 // Geometry class for EMCAL : singleton
20 // EMCAL consists of layers of scintillator and lead
21 // Places the the Barrel Geometry of The EMCAL at Midrapidity
22 // between 0 and 120 degrees of Phi and
24 // Number of Modules and Layers may be controlled by
25 // the name of the instance defined
26 // EMCALArch2x has more modules along both phi and eta
27 // EMCALArchxa has less Layers in the Radial Direction
28 //*-- Author: Sahal Yacoob (LBL / UCT)
29 // and : Yves Schutz (SUBATECH)
30 // and : Jennifer Klay (LBL)
32 // --- ROOT system ---
34 // --- Standard library ---
37 // --- AliRoot header files ---
44 #include "AliEMCALGeometry.h"
46 ClassImp(AliEMCALGeometry);
48 AliEMCALGeometry *AliEMCALGeometry::fgGeom = 0;
49 Bool_t AliEMCALGeometry::fgInit = kFALSE;
51 //______________________________________________________________________
52 AliEMCALGeometry::~AliEMCALGeometry(void){
55 //______________________________________________________________________
56 void AliEMCALGeometry::Init(void){
57 // Initializes the EMCAL parameters
59 fgInit = kFALSE; // Assume failer untill proven otherwise.
61 TString name(GetName()) ;
63 if( name != "EMCALArch1a" &&
64 name != "EMCALArch1b" &&
65 name != "EMCALArch2a" &&
66 name != "EMCALArch2b" ){
67 Fatal("Init", "%s is not a known geometry (choose among EMCALArch1a, EMCALArch1b, EMCALArch2a and EMCALArch2b)", name.Data()) ;
70 if ( name == "EMCALArch1a" ||
71 name == "EMCALArch1b" ) {
75 if ( name == "EMCALArch2a" ||
76 name, "EMCALArch2b" ) {
80 if ( name == "EMCALArch1a" ||
81 name == "EMCALArch2a" ) {
84 if ( name == "EMCALArch1b" ||
85 name == "EMCALArch2b" ) {
90 fAlFrontThick = 3.18; // cm, Thickness of front Al layer
91 fGap2Active = 1.0; // cm, Gap between Al and 1st Scintillator
92 fPbRadThickness = 0.5; // cm, Thickness of the Pb radiators.
93 fPreShowerSintThick = 0.6; // cm, Thickness of the sintilator for the
94 // preshower part of the calorimeter
95 fFullShowerSintThick = 0.5; // cm, Thickness of the sintilator for the
96 // full shower part of the calorimeter
97 fArm1PhiMin = 60.0; // degrees, Starting EMCAL Phi position
98 fArm1PhiMax = 180.0; // degrees, Ending EMCAL Phi position
99 fArm1EtaMin = -0.7; // pseudorapidity, Starting EMCAL Eta position
100 fArm1EtaMax = +0.7; // pseudorapidity, Ending EMCAL Eta position
101 fIPDistance = 454.0; // cm, Radial distance to inner surface of EMCAL
102 fShellThickness = fAlFrontThick + fGap2Active + 2.*(GetPreSintThick() + GetPbRadThick()) +
103 (fNLayers-3)*(GetFullSintThick()+ GetPbRadThick()) + GetFullSintThick() ;
104 //below; cm, Z length of the EMCAL.
105 fZLength = 2.*ZFromEtaR(fIPDistance+fShellThickness,fArm1EtaMax);
106 fEnvelop[0] = fIPDistance; // mother volume inner radius
107 fEnvelop[1] = fIPDistance + fShellThickness; // mother volume outer r.
108 fEnvelop[2] = 1.00001*fZLength; // add some padding for mother volume.
112 //______________________________________________________________________
113 AliEMCALGeometry * AliEMCALGeometry::GetInstance(){
114 // Returns the pointer of the unique instance
116 return static_cast<AliEMCALGeometry *>( fgGeom ) ;
119 //______________________________________________________________________
120 AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name,
121 const Text_t* title){
122 // Returns the pointer of the unique instance
124 AliEMCALGeometry * rv = 0;
126 if ( strcmp(name,"") == 0 ) rv = 0;
128 fgGeom = new AliEMCALGeometry(name, title);
129 if ( fgInit ) rv = (AliEMCALGeometry * ) fgGeom;
135 } // end if strcmp(name,"")
137 if ( strcmp(fgGeom->GetName(), name) != 0 ) {
138 TString message("\n") ;
139 message += "current geometry is " ;
140 message += fgGeom->GetName() ;
141 message += "\n you cannot call " ;
143 ::Info("GetGeometry", message.Data() ) ;
145 rv = (AliEMCALGeometry *) fgGeom;
151 //______________________________________________________________________
152 Int_t AliEMCALGeometry::TowerIndex(Int_t ieta,Int_t iphi,Int_t ipre) const {
153 // Returns the tower index number from the based on the Z and Phi
154 // index numbers. There are 2 times the number of towers to separate
155 // out the full towsers from the pre-towsers.
157 // Int_t ieta // index allong z axis [1-fNZ]
158 // Int_t iphi // index allong phi axis [1-fNPhi]
159 // Int_t ipre // 0 = Full tower, 1 = Pre-shower tower only. [0,1]
163 // Int_t the absoulute tower index. [1-2*fNZ*fNPhi]
166 if((ieta<=0 || ieta>GetNEta()) || (iphi<=0 || iphi>GetNPhi()) ||
167 (ipre<0 || ipre>1) ){
168 TString message ("\n") ;
169 message += "inputs out of range ieta= " ;
172 message += GetNEta() ;
173 message += "] iphi= " ;
176 message += GetNPhi() ;
177 message += "] ipre= " ;
179 message += "[0,1]. returning -1" ;
180 Warning("TowerIndex", message.Data() ) ;
183 index = iphi + GetNPhi()*(ieta-1) + ipre*(GetNPhi()*GetNEta());
187 //______________________________________________________________________
188 void AliEMCALGeometry::TowerIndexes(Int_t index,Int_t &ieta,Int_t &iphi,
190 // given the tower index number it returns the based on the Z and Phi
191 // index numbers and if it is for the full tower or the pre-tower number.
192 // There are 2 times the number of towers to separate
193 // out the full towsers from the pre-towsers.
195 // Int_t index // Tower index number [1-2*fNZ*fNPhi]
197 // Int_t ieta // index allong z axis [1-fNZ]
198 // Int_t iphi // index allong phi axis [1-fNPhi]
199 // Int_t ipre // 0 = Full tower, 1 = Pre-shower tower only. [0,1]
204 itowers = GetNEta()*GetNPhi();
205 if(index<1 || index>2*itowers){
206 TString message("\n") ;
207 message += "index= " ;
209 message += " is out of range [1-" ;
210 message += 2*itowers ;
211 message += "], returning -1 for all." ;
212 Warning("TowerIndex", message.Data() ) ;
213 ieta = -1; iphi = -1; ipre = -1;
217 if(index>itowers){ // pre shower indexs
219 index = index - itowers;
221 ieta = 1+ (Int_t)((index-1)/GetNPhi());
222 iphi = index - GetNPhi()*(ieta-1);
226 //______________________________________________________________________
227 void AliEMCALGeometry::EtaPhiFromIndex(Int_t index,Float_t &eta,Float_t &phi) const {
228 // given the tower index number it returns the based on the eta and phi
231 // Int_t index // Tower index number [1-2*fNZ*fNPhi]
233 // Float_t eta // eta of center of tower in pseudorapidity
234 // Float_t phi // phi of center of tower in degrees
237 Int_t ieta,iphi,ipre;
238 Double_t deta,dphi,phid;
240 TowerIndexes(index,ieta,iphi,ipre);
241 deta = (GetArm1EtaMax()-GetArm1EtaMin())/((Float_t)GetNEta());
242 eta = GetArm1EtaMin() + (((Float_t)ieta)-0.5)*deta;
243 dphi = (GetArm1PhiMax() - GetArm1PhiMin())/((Float_t)GetNPhi()); // in degrees.
244 phid = GetArm1PhiMin() + dphi*((Float_t)iphi -0.5);//iphi range [1-fNphi].
248 //______________________________________________________________________
249 Int_t AliEMCALGeometry::TowerIndexFromEtaPhi(Float_t eta,Float_t phi) const {
250 // returns the tower index number based on the eta and phi of the tower.
252 // Float_t eta // eta of center of tower in pseudorapidity
253 // Float_t phi // phi of center of tower in degrees
257 // Int_t index // Tower index number [1-fNZ*fNPhi]
260 ieta = 1 + (Int_t)(((Float_t)GetNEta())*(eta-GetArm1EtaMin())/
261 (GetArm1EtaMax() - GetArm1EtaMin()));
262 if(ieta<=0 || ieta>GetNEta()){
263 TString message("\n") ;
264 message += "ieta = " ;
268 message += " is outside of EMCAL. etamin=" ;
269 message += GetArm1EtaMin() ;
270 message += " to etamax=" ;
271 message += GetArm1EtaMax();
272 message += " returning -1";
273 Warning("TowerIndexFromEtaPhi", message.Data() ) ;
276 iphi = 1 + (Int_t)(((Float_t)GetNPhi())*(phi-GetArm1PhiMin())/
277 ((Float_t)(GetArm1PhiMax() - GetArm1PhiMin())));
278 if(iphi<=0 || iphi>GetNPhi()){
279 TString message("\n") ;
284 message += " is outside of EMCAL." ;
285 message += " Phimin=" ;
286 message += GetArm1PhiMin() ;
287 message += " PhiMax=" ;
288 message += GetArm1PhiMax() ;
289 message += " returning -1" ;
290 Warning("TowerIndexFromEtaPhi", message.Data() ) ;
293 return TowerIndex(ieta,iphi,0);
296 //______________________________________________________________________
297 Int_t AliEMCALGeometry::PreTowerIndexFromEtaPhi(Float_t eta,Float_t phi) const {
298 // returns the pretower index number based on the eta and phi of the tower.
300 // Float_t eta // eta of center of tower in pseudorapidity
301 // Float_t phi // phi of center of tower in degrees
305 // Int_t index // PreTower index number [fNZ*fNPhi-2*fNZ*fNPhi]
307 return GetNEta()*GetNPhi()+TowerIndexFromEtaPhi(eta,phi);
310 //______________________________________________________________________
311 Bool_t AliEMCALGeometry::AbsToRelNumbering(Int_t AbsId, Int_t *relid) const {
312 // Converts the absolute numbering into the following array/
313 // relid[0] = EMCAL Arm number 1:1
314 // relid[1] = 0 Not in Pre Shower layers
315 // = -1 In Pre Shower
316 // relid[2] = Row number inside EMCAL
317 // relid[3] = Column number inside EMCAL
319 // Int_t AbsId // Tower index number [1-2*fNZ*fNPhi]
321 // Int_t *relid // array of 5. Discribed above.
323 Int_t ieta=0,iphi=0,ipre=0,index=AbsId;
325 TowerIndexes(index,ieta,iphi,ipre);
336 //______________________________________________________________________
337 void AliEMCALGeometry::PosInAlice(const Int_t *relid,Float_t &theta,
338 Float_t &phi) const {
339 // Converts the relative numbering into the local EMCAL-module (x, z)
341 Int_t ieta = relid[2]; // offset along x axis
342 Int_t iphi = relid[3]; // offset along z axis
343 Int_t ipre = relid[1]; // indicates -1 preshower, or 0 full tower.
347 if(ipre==-1) ipre = 1;
348 index = TowerIndex(ieta,iphi,ipre);
349 EtaPhiFromIndex(index,eta,phi);
350 theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
355 //______________________________________________________________________
356 void AliEMCALGeometry::XYZFromIndex(const Int_t *relid,Float_t &x,Float_t &y, Float_t &z) const {
357 // given the tower relative number it returns the X, Y and Z
361 // Float_t x // x of center of tower in cm
362 // Float_t y // y of center of tower in cm
363 // Float_t z // z of centre of tower in cm
367 Float_t eta,theta, phi,cyl_radius,kDeg2Rad;
369 Int_t ieta = relid[2]; // offset along x axis
370 Int_t iphi = relid[3]; // offset along z axis
371 Int_t ipre = relid[1]; // indicates -1 preshower, or 0 full tower.
375 if(ipre==-1) ipre = 1;
376 index = TowerIndex(ieta,iphi,ipre);
377 EtaPhiFromIndex(index,eta,phi);
378 theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
380 kDeg2Rad = TMath::Pi() / static_cast<Double_t>(180) ;
381 cyl_radius = GetIPDistance()+ GetAirGap() ;
382 x = cyl_radius * TMath::Cos(phi * kDeg2Rad ) ;
383 y = cyl_radius * TMath::Sin(phi * kDeg2Rad ) ;
384 z = cyl_radius / TMath::Tan(theta * kDeg2Rad ) ;
389 //______________________________________________________________________
391 Boot_t AliEMCALGeometry::AreNeighbours(Int_t index1,Int_t index2) const {
392 // Returns kTRUE if the two towers are neighbours or not, including
393 // diagonals. Both indexes are required to be either towers or preshower.
395 // Int_t index1 // index of tower 1
396 // Int_t index2 // index of tower 2
400 // Boot_t kTRUE if the towers are neighbours otherwise false.
402 Int_t ieta1 = 0, ieta2 = 0, iphi1 = 0, iphi2 = 0, ipre1 = 0, ipre2 = 0;
404 TowerIndexes(index1,ieta1,iphi1,ipre1);
405 TowerIndexes(index2,ieta2,iphi2,ipre2);
406 if(ipre1!=ipre2) return anb;
407 if((ieta1>=ieta2-1 && ieta1<=ieta2+1) && (iphi1>=iphi2-1 &&iphi1<=iphi2+1))