]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALGeometry.cxx
Coverity fix
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGeometry.cxx
index 919eb3601643ab051e88f9b04064b77584900fdc..c8471e8a8caf015a460a56eab32547c6f2e4f449 100644 (file)
 /**************************************************************************
-
  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
-
  *                                                                        *
-
  * Author: The ALICE Off-line Project.                                    *
-
  * Contributors are mentioned in the code where appropriate.              *
-
  *                                                                        *
-
  * Permission to use, copy, modify and distribute this software and its   *
-
  * documentation strictly for non-commercial purposes is hereby granted   *
-
  * without fee, provided that the above copyright notice appears in all   *
-
  * copies and that both the copyright notice and this permission notice   *
-
  * appear in the supporting documentation. The authors make no claims     *
-
  * about the suitability of this software for any purpose. It is          *
-
  * provided "as is" without express or implied warranty.                  *
-
  **************************************************************************/
 
-
-
 /* $Id$*/
 
-
-
 //_________________________________________________________________________
-
 // Geometry class  for EMCAL : singleton  
-
 // EMCAL consists of layers of scintillator and lead
-
+// with scintillator fiber arranged as "shish-kebab" skewers 
 // Places the the Barrel Geometry of The EMCAL at Midrapidity
-
-// between 0 and 120 degrees of Phi and
-
+// between 80 and 180(or 190) degrees of Phi and
 // -0.7 to 0.7 in eta 
-
-// Number of Modules and Layers may be controlled by 
-
-// the name of the instance defined               
-
-// EMCALArch2x has more modules along both phi and eta
-
-// EMCALArchxa has less Layers in the Radial Direction
-
+//
+//     EMCAL geometry tree:
+//     EMCAL -> superModule -> module -> tower(cell)
+//     Indexes
+//     absId -> nSupMod     -> nModule -> (nIphi,nIeta)
+//
+//   Name choices: 
+//   EMCAL_PDC06 (geometry used for PDC06 simulations, kept for backward compatibility)
+//      = equivalent to SHISH_77_TRD1_2X2_FINAL_110DEG in old notation
+//   EMCAL_COMPLETE (geometry for expected complete detector)
+//      = equivalent to SHISH_77_TRD1_2X2_FINAL_110DEG scTh=0.176 pbTh=0.144
+//          in old notation
+//   EMCAL_FIRSTYEARV1 - geometry for December 2009 to December 2010 run period; 
+//                fixed bug for positions of modules inside SM
+//                (first module has tilt 0.75 degree);
+//                the sizes updated with last information from production
+//                drawing (end of October 2010). 
+//      
+//   EMCAL_COMPLETEV1: Same fixes as FIRSTYEAR and 10 SM instead of 10+2 half SM
+//
+//   EMCAL_WSUC (Wayne State test stand)
+//      = no definite equivalent in old notation, was only used by
+//          Aleksei, but kept for testing purposes
+//
+//   etc.
+//
+//
+//
 //*-- Author: Sahal Yacoob (LBL / UCT)
-
 //     and  : Yves Schutz (SUBATECH)
-
 //     and  : Jennifer Klay (LBL)
+//     and  : Alexei Pavlinov (WSU) 
+//
 
+//--- Root header files ---
+#include <TVector2.h>
+#include <TVector3.h>
+//-- ALICE Headers.
+#include "AliLog.h"
 
-
-// --- ROOT system ---
-
-
-
-// --- Standard library ---
-
-
-
-#include <iostream.h>
-#include <stdlib.h> 
-
-
-
-// --- AliRoot header files ---
-
-#include <TMath.h>
-
-// -- ALICE Headers.
-
-#include "AliConst.h"
-
-// --- EMCAL headers
-
+// // --- EMCAL headers
 #include "AliEMCALGeometry.h"
+#include "AliEMCALShishKebabTrd1Module.h"
+//#include "AliEMCALRecPoint.h"
+//#include "AliEMCALHistoUtilities.h"
+
+ClassImp(AliEMCALGeometry)
+
+// these initialisations are needed for a singleton
+AliEMCALGeometry  *AliEMCALGeometry::fgGeom      = 0;
+const Char_t*      AliEMCALGeometry::fgkDefaultGeometryName = "EMCAL_COMPLETEV1";
+//
+// Usage: 
+//        You can create the AliEMCALGeometry object independently from anything.
+//        You have to use just the correct name of geometry. If name is empty string the
+//        default name of geometry will be used.
+//         
+//  AliEMCALGeometry* g = AliEMCALGeometry::GetInstance(name,title); // first time
+//  ..
+//  g = AliEMCALGeometry::GetInstance();                             // after first time
+//
+//  MC:   If you work with MC data you have to get geometry the next way: 
+//  ==                                      =============================
+//  AliRunLoader    *rl   = AliRunLoader::Instance();
+//  AliEMCALGeometry *geom = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
+//  TGeoManager::Import("geometry.root");
+
+AliEMCALGeometry::AliEMCALGeometry() 
+  : AliEMCALGeoUtils()
+{ 
+  // default ctor only for internal usage (singleton)
+  // must be kept public for root persistency purposes, 
+  // but should never be called by the outside world    
+
+  AliDebug(2, "AliEMCALGeometry : default ctor ");
+}
+//______________________________________________________________________
+AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title) 
+  : AliEMCALGeoUtils(name, title)
+{
+  // ctor only for internal usage (singleton)
+  AliDebug(2, Form("AliEMCALGeometry(%s,%s) ", name,title));
 
-
-
-ClassImp(AliEMCALGeometry);
-
-
-
-AliEMCALGeometry *AliEMCALGeometry::fgGeom = 0;
-
-Bool_t            AliEMCALGeometry::fgInit = kFALSE;
-
-
-
+}
 //______________________________________________________________________
+AliEMCALGeometry::AliEMCALGeometry(const AliEMCALGeometry& geom)
+  : AliEMCALGeoUtils(geom)
+{
+  //copy ctor
+}
 
+//______________________________________________________________________
 AliEMCALGeometry::~AliEMCALGeometry(void){
-
     // dtor
-
 }
 
-//______________________________________________________________________
-
-void AliEMCALGeometry::Init(void){
-
-    // Initializes the EMCAL parameters
-
-
-
-    fgInit = kFALSE; // Assume failer untill proven otherwise.
-
-
-
-    TString name(GetName()) ; 
-
-                
-
-    if( name != "EMCALArch1a" &&
-
-       name != "EMCALArch1b" && 
-
-       name != "EMCALArch2a" && 
-
-       name != "EMCALArch2b"  ){
-
-      cerr << "ERROR: " << ClassName() << "::Init -> " << name.Data() 
-
-          << " is not a known geometry (choose among EMCALArch1a, EMCALArch1b, EMCALArch2a and EMCALArch2b)" 
-
-          << endl ; 
-
-      abort() ;
-
-    } // end if
-
-    //
-
-    if ( name == "EMCALArch1a"  ||
-
-        name == "EMCALArch1b" ) {
-
-       fNZ         = 96;
-
-       fNPhi       = 144;
-
-    } // end if
-
-    if ( name == "EMCALArch2a"  ||
-
-        name, "EMCALArch2b" ) {
-
-       fNZ         = 112;
-
-       fNPhi       = 168;
-
-    } // end if
-
-    if ( name == "EMCALArch1a"  ||
-
-        name == "EMCALArch2a" ) {
-
-       fNLayers    = 21;
-
-    } // end if
-
-    if ( name == "EMCALArch1b"  ||
-
-        name == "EMCALArch2b" ) {
-
-       fNLayers    = 25;
-
-    } // end if
-
-
-
-    // geometry
-
-    fAirGap         = 5.0; // cm, air gap between EMCAL mother volume and 
-
-                           // active material.
-
-    fAlFrontThick   = 3.18; // cm, Thickness of front Al layer
-
-    fPbRadThickness = 0.5; // cm, Thickness of theh Pb radiators.
-
-    fPreShowerSintThick = 0.6; // cm, Thickness of the sintilator for the
-
-                               // preshower part of the calorimeter
-
-    fFullShowerSintThick = 0.5; // cm, Thickness of the sintilator for the
-
-                                // full shower part of the calorimeter
-
-    fArm1PhiMin     =  60.0; // degrees, Starting EMCAL Phi position
-
-    fArm1PhiMax     = 180.0; // degrees, Ending EMCAL Phi position
-
-    fArm1EtaMin     = -0.7; // pseudorapidity, Starting EMCAL Eta position
-
-    fArm1EtaMax     = +0.7; // pseudorapidity, Ending EMCAL Eta position
-
-    fIPDistance     = 454.0; // cm, Radial distance to inner surface of EMCAL
-
-    fShellThickness = GetAlFrontThickness() + 2.*GetPreSintThick() +
-
-       (fNLayers-2)*GetFullSintThick()+(fNLayers-1)*GetPbRadThick();
-
-    //below; cm, Z lenght of the EMCAL.
-
-    fZLength        = 2.*ZFromEtaR(fIPDistance+fShellThickness,fArm1EtaMax);
-
-    fEnvelop[0]     = fIPDistance; // mother volume inner radius
-
-    fEnvelop[1]     = fIPDistance + fShellThickness; // mother volume outer r.
-
-    fEnvelop[2]     = 1.00001*fZLength; // add some padding for mother volume. 
-
-    fGap2Active     = 1.0;  // cm, Gap between 
-
-    fgInit = kTRUE; 
-
-}
 
 //______________________________________________________________________
-
 AliEMCALGeometry *  AliEMCALGeometry::GetInstance(){ 
-
   // Returns the pointer of the unique instance
-
   
-
-  return static_cast<AliEMCALGeometry *>( fgGeom ) ; 
-
+  AliEMCALGeometry * rv = static_cast<AliEMCALGeometry *>( fgGeom );
+  return rv; 
 }
 
 //______________________________________________________________________
-
 AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name,
-
                                                const Text_t* title){
-
     // Returns the pointer of the unique instance
 
-
-
     AliEMCALGeometry * rv = 0; 
-
     if ( fgGeom == 0 ) {
-
-       if ( strcmp(name,"") == 0 ) rv = 0;
-
-       else {    
-
-           fgGeom = new AliEMCALGeometry(name, title);
-
-           if ( fgInit ) rv = (AliEMCALGeometry * ) fgGeom;
-
-           else {
-
-               rv = 0; 
-
-               delete fgGeom; 
-
-               fgGeom = 0; 
-
-           } // end if fgInit
-
-       } // end if strcmp(name,"")
-
+      if ( strcmp(name,"") == 0 ) { // get default geometry
+        fgGeom = new AliEMCALGeometry(fgkDefaultGeometryName, title);
+      } else {
+        fgGeom = new AliEMCALGeometry(name, title);
+      }  // end if strcmp(name,"")
+      if ( AliEMCALEMCGeometry::fgInit ) rv = (AliEMCALGeometry * ) fgGeom;
+      else {
+        rv = 0; 
+        delete fgGeom; 
+        fgGeom = 0; 
+      } // end if fgInit
     }else{
-
-       if ( strcmp(fgGeom->GetName(), name) != 0 ) {
-
-           cout << "AliEMCALGeometry <E> : current geometry is " 
-
-                << fgGeom->GetName() << endl
-
-                << "                      you cannot call     " << name 
-
-                << endl; 
-
+       if ( strcmp(fgGeom->GetName(), name) != 0) {
+         printf("\ncurrent geometry is %s : ", fgGeom->GetName());
+         printf(" you cannot call %s ",name);  
        }else{
-
-           rv = (AliEMCALGeometry *) fgGeom; 
-
-       } // end if
-
+         rv = (AliEMCALGeometry *) fgGeom; 
+       } // end 
     }  // end if fgGeom
-
     return rv; 
-
-}
-
-//______________________________________________________________________
-
-Int_t AliEMCALGeometry::TowerIndex(Int_t ieta,Int_t iphi,Int_t ipre) const {
-
-    // Returns the tower index number from the based on the Z and Phi
-
-    // index numbers. There are 2 times the number of towers to separate
-
-    // out the full towsers from the pre-towsers.
-
-    // Inputs:
-
-    //   Int_t ieta    // index allong z axis [1-fNZ]
-
-    //   Int_t iphi  // index allong phi axis [1-fNPhi]
-
-    //   Int_t ipre  // 0 = Full tower, 1 = Pre-shower tower only. [0,1]
-
-    // Outputs:
-
-    //   none.
-
-    // Returned
-
-    // Int_t the absoulute tower index. [1-2*fNZ*fNPhi]
-
-    Int_t index;
-
-
-
-    if((ieta<=0 || ieta>GetNEta()) || (iphi<=0 || iphi>GetNPhi()) ||
-
-       (ipre<0 || ipre>1) ){
-
-       cout << "inputs out of range ieta=" << ieta << " [1-" << GetNEta();
-
-       cout << "] iphi=" << iphi << " [1-" << GetNPhi() << "] ipre=";
-
-       cout << ipre << "[0,1]. returning -1" << endl;
-
-       return -1;
-
-    } // end if
-
-    index = iphi + GetNPhi()*(ieta-1) + ipre*(GetNPhi()*GetNEta());
-
-    return index;
-
-}
-
-//______________________________________________________________________
-
-void AliEMCALGeometry::TowerIndexes(Int_t index,Int_t &ieta,Int_t &iphi,
-
-                                   Int_t &ipre) const {
-
-    // given the tower index number it returns the based on the Z and Phi
-
-    // index numbers and if it is for the full tower or the pre-tower number.
-
-    // There are 2 times the number of towers to separate
-
-    // out the full towsers from the pre-towsers.
-
-    // Inputs:
-
-    //   Int_t index // Tower index number [1-2*fNZ*fNPhi]
-
-    // Outputs:
-
-    //   Int_t ieta    // index allong z axis [1-fNZ]
-
-    //   Int_t iphi  // index allong phi axis [1-fNPhi]
-
-    //   Int_t ipre  // 0 = Full tower, 1 = Pre-shower tower only. [0,1]
-
-    // Returned
-
-    //   none.
-
-    Int_t itowers;
-
-
-
-    itowers = GetNEta()*GetNPhi();
-
-    if(index<1 || index>2*itowers){
-
-       cout << "index=" << index <<" is out of range [1-";
-
-       cout << 2*itowers << "], returning -1 for all." << endl;
-
-       ieta = -1; iphi = -1; ipre = -1;
-
-       return ;
-
-    } // end if
-
-    ipre = 0;
-
-    if(index>itowers){ // pre shower indexs
-
-       ipre = 1;
-
-       index = index - itowers;
-
-    } // end if
-
-    ieta = 1+ (Int_t)((index-1)/GetNPhi());
-
-    iphi = index - GetNPhi()*(ieta-1);
-
-    return;
-
-}
-
-//______________________________________________________________________
-
-void AliEMCALGeometry::EtaPhiFromIndex(Int_t index,Float_t &eta,Float_t &phi) const {
-
-    // given the tower index number it returns the based on the eta and phi
-
-    // of the tower.
-
-    // Inputs:
-
-    //   Int_t index // Tower index number [1-2*fNZ*fNPhi]
-
-    // Outputs:
-
-    //   Float_t eta  // eta of center of tower in pseudorapidity
-
-    //   Float_t phi  // phi of center of tower in degrees
-
-    // Returned
-
-    //   none.
-
-    Int_t ieta,iphi,ipre;
-
-    Double_t deta,dphi,phid;
-
-
-
-    TowerIndexes(index,ieta,iphi,ipre);
-
-    deta = (GetArm1EtaMax()-GetArm1EtaMin())/((Float_t)GetNEta());
-
-    eta  = GetArm1EtaMin() + (((Float_t)ieta)-0.5)*deta;
-
-    dphi = (GetArm1PhiMax() - GetArm1PhiMin())/((Float_t)GetNPhi());  // in degrees.
-
-    phid = GetArm1PhiMin() + dphi*((Float_t)iphi -0.5);//iphi range [1-fNphi].
-
-    phi  = phid;
-
-}
-
-//______________________________________________________________________
-
-Int_t AliEMCALGeometry::TowerIndexFromEtaPhi(Float_t eta,Float_t phi) const {
-
-    // returns the tower index number based on the eta and phi of the tower.
-
-    // Inputs:
-
-    //   Float_t eta  // eta of center of tower in pseudorapidity
-
-    //   Float_t phi  // phi of center of tower in degrees
-
-    // Outputs:
-
-    //   none.
-
-    // Returned
-
-    //   Int_t index // Tower index number [1-fNZ*fNPhi]
-
-    Int_t ieta,iphi;
-
-
-
-    ieta = 1 + (Int_t)(((Float_t)GetNEta())*(eta-GetArm1EtaMin())/
-
-                 (GetArm1EtaMax() - GetArm1EtaMin()));
-
-    if(ieta<=0 || ieta>GetNEta()){
-
-       cout << "TowerIndexFromEtaPhi:";
-
-       cout << "ieta = "<< ieta << " eta=" << eta << " is outside of EMCAL. etamin=";
-
-       cout << GetArm1EtaMin() << " to etamax=" << GetArm1EtaMax();
-
-       cout << " returning -1" << endl;
-
-       return -1;
-
-    } // end if
-
-    iphi = 1 + (Int_t)(((Float_t)GetNPhi())*(phi-GetArm1PhiMin())/
-
-                 ((Float_t)(GetArm1PhiMax() - GetArm1PhiMin())));
-
-    if(iphi<=0 || iphi>GetNPhi()){
-
-       cout << "TowerIndexFromEtaPhi:";
-
-       cout << "iphi=" << iphi << " phi=" << phi << " is outside of EMCAL.";
-
-       cout << " Phimin=" << GetArm1PhiMin() << " PhiMax=" << GetArm1PhiMax();
-
-       cout << " returning -1" << endl;
-
-       return -1;
-
-    } // end if
-
-    return TowerIndex(ieta,iphi,0);
-
 }
 
-//______________________________________________________________________
-
-Int_t AliEMCALGeometry::PreTowerIndexFromEtaPhi(Float_t eta,Float_t phi) const {
-
-    // returns the pretower index number based on the eta and phi of the tower.
-
-    // Inputs:
-
-    //   Float_t eta  // eta of center of tower in pseudorapidity
-
-    //   Float_t phi  // phi of center of tower in degrees
-
-    // Outputs:
-
-    //   none.
-
-    // Returned
-
-    //   Int_t index // PreTower index number [fNZ*fNPhi-2*fNZ*fNPhi]
-
-
-
-    return GetNEta()*GetNPhi()+TowerIndexFromEtaPhi(eta,phi);
-
-}
-
-//______________________________________________________________________
-
-Bool_t AliEMCALGeometry::AbsToRelNumbering(Int_t AbsId, Int_t *relid) const {
-
-    // Converts the absolute numbering into the following array/
-
-    //  relid[0] = EMCAL Arm number 1:1 
-
-    //  relid[1] = 0  Not in Pre Shower layers
-
-    //           = -1 In Pre Shower
-
-    //  relid[2] = Row number inside EMCAL
-
-    //  relid[3] = Column number inside EMCAL
-
-    // Input:
-
-    //   Int_t AbsId // Tower index number [1-2*fNZ*fNPhi]
-
-    // Outputs:
-
-    //   Int_t *relid // array of 5. Discribed above.
-
-    Bool_t rv  = kTRUE ;
-
-    Int_t ieta=0,iphi=0,ipre=0,index=AbsId;
-
-
-
-    TowerIndexes(index,ieta,iphi,ipre);
-
-    relid[0] = 1;
-
-    relid[1] = 0;
-
-    if(ipre==1) 
-
-      relid[1] = -1;
-
-    relid[2] = ieta;
-
-    relid[3] = iphi;
-
-
-
-    return rv;
-
-}
-
-//______________________________________________________________________
-
-void AliEMCALGeometry::PosInAlice(const Int_t *relid,Float_t &theta,
-
-                                    Float_t &phi) const {
-
-    // Converts the relative numbering into the local EMCAL-module (x, z)
-
-    // coordinates
-
-    Int_t ieta   = relid[2]; // offset along x axis
-
-    Int_t iphi = relid[3]; // offset along z axis
-
-    Int_t ipre = relid[1]; // indicates -1 preshower, or 0 full tower.
-
-    Int_t index;
-
-    Float_t eta;
-
-
-
-    if(ipre==-1) ipre = 1;
-
-    index = TowerIndex(ieta,iphi,ipre);
-
-    EtaPhiFromIndex(index,eta,phi);
-
-    theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
-
-
-
-    return;
-
-}
-
-
-
-//______________________________________________________________________
-
-void AliEMCALGeometry::XYZFromIndex(const Int_t *relid,Float_t &x,Float_t &y, Float_t &z) const {
-
-    // given the tower relative number it returns the X, Y and Z
-
-    // of the tower.
-
-    
-
-    // Outputs:
-
-    //   Float_t x  // x of center of tower in cm
-
-    //   Float_t y  // y of center of tower in cm
-
-    //   Float_t z  // z of centre of tower in cm
-
-    // Returned
-
-    //   none.
-
-    
-
-    Float_t eta,theta, phi,cyl_radius,kDeg2Rad;
-
-    
-
-    Int_t ieta   = relid[2]; // offset along x axis
-
-    Int_t iphi = relid[3]; // offset along z axis
-
-    Int_t ipre = relid[1]; // indicates -1 preshower, or 0 full tower.
-
-    Int_t index;
-
-    
-
-
-
-    if(ipre==-1) ipre = 1;
-
-    index = TowerIndex(ieta,iphi,ipre);
-
-    EtaPhiFromIndex(index,eta,phi);
-
-    theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
-
-
-
-
+//________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t distEff, Double_t &xr, Double_t &yr, Double_t &zr) const
+{
+  // Jul 30, 2007 - taking into account position of shower max
+  // Look to see what the relative
+  // position inside a given cell is
+  // for a recpoint.
+  // In:
+  // absId   - cell is as in Geant,     0<= absId   < fNCells;
+  // e       - cluster energy
+  // OUT:
+  // xr,yr,zr - x,y,z coordinates of cell with absId inside SM 
+
+  // Shift index taking into account the difference between standard SM 
+  // and SM of half size in phi direction
+  const  Int_t kphiIndexShift = fCentersOfCellsPhiDir.GetSize()/4; // Nov 22, 2006; was 6 for cas 2X2
+  static Int_t nSupMod=0, nModule=-1, nIphi=-1, nIeta=-1, iphi=-1, ieta=-1;
+  static Int_t iphim=-1, ietam=-1;
+  static AliEMCALShishKebabTrd1Module *mod = 0;
+  static TVector2 v;
+  if(!CheckAbsCellId(absId)) return kFALSE;
+  
+  GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
+  GetModulePhiEtaIndexInSModule(nSupMod, nModule, iphim, ietam);
+  GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta); 
+  
+  //Get eta position. Careful with ALICE conventions (increase index decrease eta)     
+  if(nSupMod%2 == 0) {             
+    ietam = (fCentersOfCellsEtaDir.GetSize()/2-1)-ietam;// 47-ietam, revert the ordering on A side in order to keep convention.
+    if(nIeta == 0) nIeta = 1;
+    else          nIeta = 0;
+  }
+  mod = GetShishKebabModule(ietam);
+  mod ->GetPositionAtCenterCellLine(nIeta, distEff, v); 
+  xr = v.Y() - fParSM[0];
+  zr = v.X() - fParSM[2];
+  
+  //Get phi position. Careful with ALICE conventions (increase index increase phi)
+  Int_t iphi2 = iphi;
+  if(nSupMod<10) { 
+    if(nSupMod%2 != 0) 
+      iphi2 = (fCentersOfCellsPhiDir.GetSize()-1)-iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
+    yr = fCentersOfCellsPhiDir.At(iphi2);
     
-
-    kDeg2Rad = TMath::Pi() / static_cast<Double_t>(180) ; 
-
-    cyl_radius = GetIPDistance()+ GetAirGap() ;
-
-    x =  cyl_radius * TMath::Cos(phi * kDeg2Rad ) ;
-
-    y =  cyl_radius * TMath::Cos(phi * kDeg2Rad ) ; 
-
-    z =  cyl_radius / TMath::Tan(theta * kDeg2Rad ) ; 
-
-
- return;
-
-} 
-
-
-
-//______________________________________________________________________
-
-/*
-
-Boot_t AliEMCALGeometry::AreNeighbours(Int_t index1,Int_t index2) const {
-
-    // Returns kTRUE if the two towers are neighbours or not, including
-
-    // diagonals. Both indexes are required to be either towers or preshower.
-
-    // Inputs:
-
-    //   Int_t index1  // index of tower 1
-
-    //   Int_t index2  // index of tower 2
-
-    // Outputs:
-
-    //   none.
-
-    // Returned
-
-    //   Boot_t kTRUE if the towers are neighbours otherwise false.
-
-    Boot_t anb = kFALSE;
-
-    Int_t ieta1 = 0, ieta2 = 0, iphi1 = 0, iphi2 = 0, ipre1 = 0, ipre2 = 0;
-
-
-
-    TowerIndexes(index1,ieta1,iphi1,ipre1);
-
-    TowerIndexes(index2,ieta2,iphi2,ipre2);
-
-    if(ipre1!=ipre2) return anb;
-
-    if((ieta1>=ieta2-1 && ieta1<=ieta2+1) && (iphi1>=iphi2-1 &&iphi1<=iphi2+1))
-
-                                                                 anb = kTRUE;
-
-    return anb;
-
+  } else {
+    if(nSupMod%2 != 0) 
+      iphi2 = (fCentersOfCellsPhiDir.GetSize()/2-1)-iphi;// 11-iphi, revert the ordering on C side in order to keep convention.
+    yr = fCentersOfCellsPhiDir.At(iphi2 + kphiIndexShift);
+  }
+  
+  AliDebug(1,Form("absId %i nSupMod %i iphi %i ieta %i xr %f yr %f zr %f ",absId,nSupMod,iphi,ieta,xr,yr,zr));
+  
+  return kTRUE;
 }
 
- */
+//Not in use, comment for the moment
+//________________________________________________________________________________________________
+//Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Int_t maxAbsId, Double_t distEff, Double_t &xr, Double_t &yr, Double_t &zr) const
+//{
+//  // Jul 31, 2007 - taking into account position of shower max and apply coor2.
+//  // Look to see what the relative
+//  // position inside a given cell is
+//  // for a recpoint.
+//  // In:
+//  // absId     - cell is as in Geant,     0<= absId   < fNCells;
+//  // maxAbsId  - abs id of cell with highest energy
+//  // e         - cluster energy
+//  // OUT:
+//  // xr,yr,zr - x,y,z coordinates of cell with absId inside SM 
+//  
+//  // Shift index taking into account the difference between standard SM 
+//  // and SM of half size in phi direction
+//  const  Int_t kphiIndexShift = fCentersOfCellsPhiDir.GetSize()/4; // Nov 22, 2006; was 6 for cas 2X2
+//  static Int_t nSupMod, nModule, nIphi, nIeta, iphi, ieta;
+//  static Int_t iphim, ietam;
+//  static AliEMCALShishKebabTrd1Module *mod = 0;
+//  static TVector2 v;
+//
+//  static Int_t nSupModM, nModuleM, nIphiM, nIetaM, iphiM, ietaM;
+//  static Int_t iphimM, ietamM, maxAbsIdCopy=-1;
+//  static AliEMCALShishKebabTrd1Module *modM = 0;
+//  static Double_t distCorr;
+//
+//  if(!CheckAbsCellId(absId)) return kFALSE;
+//  
+//  GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
+//  GetModulePhiEtaIndexInSModule(nSupMod, nModule, iphim, ietam);
+//  GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta); 
+//  
+//  //Get eta position. Careful with ALICE conventions (increase index decrease eta)   
+//  if(nSupMod%2 == 0) {             
+//    ietam = (fCentersOfCellsEtaDir.GetSize()/2-1)-ietam;// 23-ietam, revert the ordering on A side in order to keep convention.
+//    if(nIeta == 0) nIeta = 1;
+//    else                nIeta = 0;
+//  }
+//  
+//  mod = GetShishKebabModule(ietam);
+//  
+//  if(absId != maxAbsId) {
+//    distCorr = 0.;
+//    if(maxAbsIdCopy != maxAbsId) {
+//      GetCellIndex(maxAbsId, nSupModM, nModuleM, nIphiM, nIetaM);
+//      GetModulePhiEtaIndexInSModule(nSupModM, nModuleM, iphimM, ietamM);
+//      GetCellPhiEtaIndexInSModule(nSupModM,nModuleM,nIphiM,nIetaM, iphiM, ietaM); 
+//      //Careful with ALICE conventions (increase index decrease eta) 
+//      if(nSupModM%2 == 0) {             
+//     ietamM = (fCentersOfCellsEtaDir.GetSize()/2-1)-ietamM;// 47-ietam, revert the ordering on A side in order to keep convention.
+//      }
+//      
+//      modM = GetShishKebabModule(ietamM); // do I need this ?
+//      maxAbsIdCopy = maxAbsId;
+//    }
+//    
+//    if(ietamM !=0) {
+//      distCorr = fEMCGeometry->GetEtaModuleSize()*(ietam-ietamM)/TMath::Tan(modM->GetTheta()); // Stay here
+//      //printf(" distCorr %f | dist %f | ietam %i -> etamM %i\n", distCorr, dist, ietam, ietamM);  
+//    }
+//    // distEff += distCorr;
+//  }
+//  // Bad resolution in this case, strong bias vs phi
+//  // distEff = 0.0; 
+//  mod->GetPositionAtCenterCellLine(nIeta, distEff, v); // Stay here
+//  xr = v.Y() - fParSM[0];
+//  zr = v.X() - fParSM[2];
+//  
+//  //Get phi position. Careful with ALICE conventions (increase index increase phi)
+//  Int_t iphi2 = iphi;
+//  if(nSupMod<10) { 
+//    if(nSupMod%2 != 0) 
+//      iphi2 = (fCentersOfCellsPhiDir.GetSize()-1)-iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
+//    yr = fCentersOfCellsPhiDir.At(iphi2);
+//    
+//  } else {
+//    if(nSupMod%2 != 0) 
+//      iphi2 = (fCentersOfCellsPhiDir.GetSize()/2-1)-iphi;// 11-iphi, revert the ordering on C side in order to keep convention.
+//    yr = fCentersOfCellsPhiDir.At(iphi2 + kphiIndexShift);
+//  }
+//  AliDebug(1,Form("absId %i nSupMod %i iphi %i ieta %i xr %f yr %f zr %f ",absId,nSupMod,iphi,ieta,xr,yr,zr));
+//  
+//  return kTRUE;
+//}
+//
+
+//
+// == Shish-kebab cases ==
+//
+
+//
+////_________________________________________________________________________________
+//void AliEMCALGeometry::GetGlobalEMCAL(const AliEMCALRecPoint *rp, TVector3 &vglob) const
+//{
+//  // Figure out the global numbering
+//  // of a given supermodule from the
+//  // local numbering for RecPoints
+//
+//  static TVector3 vloc;
+//  static Int_t nSupMod, nModule, nIphi, nIeta;
+//
+//  const AliEMCALRecPoint *rpTmp = rp;
+//  const AliEMCALRecPoint *rpEmc = rpTmp;
+//
+//  GetCellIndex(rpEmc->GetAbsId(0), nSupMod, nModule, nIphi, nIeta);
+//  rpTmp->GetLocalPosition(vloc);
+//  GetGlobal(vloc, vglob, nSupMod);
+//}