]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALGeometry.cxx
Updated version.
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGeometry.cxx
index 02463440e2625608e4ceca9c6306fcf9d6cca9ca..ddd23f24866ddb6b5e6d09786966328841911d9f 100644 (file)
 //_________________________________________________________________________
 // 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               
+//
+//     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_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  : Aleksei Pavlinov (WSU) 
+//
 
-// --- AliRoot header files ---
-#include <TMath.h>
+//--- Root header files ---
+#include <TVector2.h>
 #include <TVector3.h>
+//-- ALICE Headers.
+#include "AliLog.h"
 
-// -- ALICE Headers.
-//#include "AliConst.h"
-
-// --- EMCAL headers
+// // --- EMCAL headers
 #include "AliEMCALGeometry.h"
-
-ClassImp(AliEMCALGeometry);
-
-AliEMCALGeometry *AliEMCALGeometry::fgGeom = 0;
-Bool_t            AliEMCALGeometry::fgInit = kFALSE;
-
-//______________________________________________________________________
-AliEMCALGeometry::~AliEMCALGeometry(void){
-    // dtor
+#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_COMPLETE";
+//
+// 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));
 
+}
 //______________________________________________________________________
-Bool_t AliEMCALGeometry::AreInSameTower(Int_t id1, Int_t id2) const {
-  // Find out whether two hits are in the same tower
-  Int_t idmax = TMath::Max(id1, id2) ; 
-  Int_t idmin = TMath::Min(id1, id2) ;
-  if ( ((idmax - GetNZ() * GetNPhi()) == idmin ) || 
-       ((idmax - 2 * GetNZ() * GetNPhi()) == idmin ) )
-    return kTRUE ; 
-  else 
-    return kFALSE ; 
+AliEMCALGeometry::AliEMCALGeometry(const AliEMCALGeometry& geom)
+  : AliEMCALGeoUtils(geom)
+{
+  //copy ctor
 }
 
 //______________________________________________________________________
-void AliEMCALGeometry::Init(void){
-  // Initializes the EMCAL parameters
-  // naming convention : GUV_WX_N_ gives the composition of a tower
-  // WX inform about the composition of the EM calorimeter section: 
-  //   thickness in mm of Pb radiator (W) and of scintillator (X), and number of scintillator layers (N)
-  // New geometry: EMCAL_55_25
-
-  fgInit = kFALSE; // Assume failed until proven otherwise.
-  TString name(GetName()) ; 
-  if (name == "EMCAL_55_25") {
-    fECPbRadThickness  = 0.5;  // cm, Thickness of the Pb radiators
-    fECScintThick      = 0.5;  // cm, Thickness of the scintillator
-    fNECLayers         = 25;   // number of scintillator layers
-    
-    fSampling          = 11.8; 
-    fAlFrontThick      = 3.5;  // cm, Thickness of front Al layer
-    fGap2Active        = 1.0;  // cm, Gap between Al and 1st Scintillator
-  }
-  else if( name == "G56_2_55_19" || name == "EMCAL_5655_21" || name == "G56_2_55_19_104_14"|| name == "G65_2_64_19" || name == "EMCAL_6564_21"){
-    Fatal("Init", "%s is an old geometry! Please update your Config file", name.Data()) ;
-  }
-  else
-    Fatal("Init", "%s is an undefined geometry!", name.Data()) ; 
-                
-  // geometry
-  fNZ             = 114;       // granularity along Z (eta) 
-  fNPhi           = 168;       // granularity in phi (azimuth)
-  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
-
-  //There is always one more scintillator than radiator layer because of the first block of aluminium
-  fShellThickness = fAlFrontThick + fGap2Active + fNECLayers*GetECScintThick()+(fNECLayers-1)*GetECPbRadThick();
-
-  fZLength        = 2.*ZFromEtaR(fIPDistance+fShellThickness,fArm1EtaMax); // Z coverage
-  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. 
-  
-  fgInit = kTRUE; 
-  
-  if (gDebug) {
-    printf("Init: geometry of EMCAL named %s is as follows:", name.Data());
-    printf( "               ECAL      : %d x (%f mm Pb, %f mm Sc) \n", GetNECLayers(), GetECPbRadThick(), GetECScintThick() ) ; 
-    printf("Granularity: %d in eta and %d in phi\n", GetNZ(), GetNPhi()) ;
-    printf("Layout: phi = (%f, %f), eta = (%f, %f), y = %f\n",  
-          GetArm1PhiMin(), GetArm1PhiMax(),GetArm1EtaMin(), GetArm1EtaMax(), GetIPDistance() ) ;    
-  }
+AliEMCALGeometry::~AliEMCALGeometry(void){
+    // dtor
 }
 
+
 //______________________________________________________________________
 AliEMCALGeometry *  AliEMCALGeometry::GetInstance(){ 
   // Returns the pointer of the unique instance
   
-  return static_cast<AliEMCALGeometry *>( fgGeom ) ; 
+  AliEMCALGeometry * rv = static_cast<AliEMCALGeometry *>( fgGeom );
+  return rv; 
 }
 
 //______________________________________________________________________
@@ -128,278 +126,191 @@ AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name,
 
     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 ) {
-         printf("\ncurrent geometry is ") ;  
-         printf(fgGeom->GetName());
-         printf("\n                      you cannot call     "); 
-         printf(name);  
+       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
+       } // end 
     }  // end if fgGeom
     return rv; 
 }
 
-//______________________________________________________________________
-Int_t AliEMCALGeometry::TowerIndex(Int_t ieta,Int_t iphi) const {
-  // Returns the tower index number from the based on the Z and Phi
-  // index numbers.
-  // Inputs:
-  //   Int_t ieta    // index along z axis [1-fNZ]
-  //   Int_t iphi  // index along phi axis [1-fNPhi]
-  // Outputs:
-  //   none.
-  // Returned
-  //   Int_t index // Tower index number 
-  
-  if ( (ieta <= 0 || ieta>GetNEta()) || 
-       (iphi <= 0 || iphi>GetNPhi())) {
-    Error("TowerIndex", "Unexpected parameters eta = %d phi = %d!", ieta, iphi) ; 
-    return -1;
-  }
-  return ( (iphi - 1)*GetNEta() + ieta ); 
-}
-
-//______________________________________________________________________
-void AliEMCALGeometry::TowerIndexes(Int_t index,Int_t &ieta,Int_t &iphi) const {
-  // Inputs:
-  //   Int_t index // Tower index number [1-fNZ*fNPhi]
-  // Outputs:
-  //   Int_t ieta    // index allong z axis [1-fNZ]
-  //   Int_t iphi  // index allong phi axis [1-fNPhi]
-  // Returned
-  //   none.
-
-  Int_t nindex = 0;
-
-  if ( IsInECA(index) ) { // ECAL index
-    nindex = index ;
-  }
-  else {
-    Error("TowerIndexes", "Unexpected Id number!") ;
-    ieta = -1;
-    iphi = -1;
-    return;
-  }   
-
-  if (nindex%GetNZ()) 
-    iphi = nindex / GetNZ() + 1 ; 
-  else 
-    iphi = nindex / GetNZ() ; 
-  ieta = nindex - (iphi - 1) * GetNZ() ; 
-
-  if (gDebug==2)
-    printf("TowerIndexes: index=%d,%d, ieta=%d, iphi = %d", index, nindex,ieta, iphi) ; 
-  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-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;
-    Float_t deta, dphi ;
-
-    TowerIndexes(index,ieta,iphi);
-    
-    if (gDebug == 2) 
-      printf("EtaPhiFromIndex: index = %d, ieta = %d, iphi = %d", index, ieta, iphi) ;
-
-    deta = (GetArm1EtaMax()-GetArm1EtaMin())/(static_cast<Float_t>(GetNEta()));
-    eta  = GetArm1EtaMin() + ((static_cast<Float_t>(ieta) - 0.5 ))*deta;
-
-    dphi = (GetArm1PhiMax() - GetArm1PhiMin())/(static_cast<Float_t>(GetNPhi()));  // in degrees.
-    phi  = GetArm1PhiMin() + dphi*(static_cast<Float_t>(iphi) - 0.5);//iphi range [1-fNphi].
-}
-
-//______________________________________________________________________
-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 = static_cast<Int_t> ( 1 + (static_cast<Float_t>(GetNEta()) * (eta - GetArm1EtaMin()) / (GetArm1EtaMax() - GetArm1EtaMin())) ) ;
-
-    if( ieta <= 0 || ieta > GetNEta() ) { 
-      Error("TowerIndexFromEtaPhi", "Unexpected (eta, phi) = (%f, %f) value, outside of EMCAL!", eta, phi) ; 
-      return -1 ; 
-    }
-
-    iphi = static_cast<Int_t> ( 1 + (static_cast<Float_t>(GetNPhi()) * (phi - GetArm1PhiMin()) / (GetArm1PhiMax() - GetArm1PhiMin())) ) ;
-
-    if( iphi <= 0 || iphi > GetNPhi() ) { 
-      Error("TowerIndexFromEtaPhi", "Unexpected (eta, phi) = (%f, %f) value, outside of EMCAL!", eta, phi) ; 
-      return -1 ; 
-    }
-
-    return TowerIndex(ieta,iphi);
-}
-
-//______________________________________________________________________
-Bool_t AliEMCALGeometry::AbsToRelNumbering(Int_t AbsId, Int_t *relid) const {
-    // Converts the absolute numbering into the following array/
-    //  relid[0] = Row number inside EMCAL
-    //  relid[1] = Column number inside EMCAL
-    // Input:
-    //   Int_t AbsId // Tower index number [1-2*fNZ*fNPhi]
-    // Outputs:
-    //   Int_t *relid // array of 2. Described above.
-    Bool_t rv  = kTRUE ;
-    Int_t ieta=0,iphi=0,index=AbsId;
-
-    TowerIndexes(index,ieta,iphi);
-    relid[0] = ieta;
-    relid[1] = iphi;
-
-    return rv;
-}
-
-//______________________________________________________________________
-void AliEMCALGeometry::PosInAlice(const Int_t *relid, Float_t &theta, Float_t &phi) const 
+//________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t distEff, Double_t &xr, Double_t &yr, Double_t &zr) const
 {
-  // Converts the relative numbering into the local EMCAL-module (x, z)
-  // coordinates
-  Int_t ieta = relid[0]; // offset along x axis
-  Int_t iphi = relid[1]; // offset along z axis
-  Int_t index;
-  Float_t eta;
+  // 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, nModule, nIphi, nIeta, iphi, ieta;
+  static Int_t iphim, ietam;
+  static AliEMCALShishKebabTrd1Module *mod = 0;
+  static TVector2 v;
+  if(!CheckAbsCellId(absId)) return kFALSE;
   
-  index = TowerIndex(ieta,iphi);
-  EtaPhiFromIndex(index,eta,phi);
-  //theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
-  theta = 2.0*TMath::ATan(TMath::Exp(-eta));
-
-  // correct for distance to IP
-  Float_t d = GetIP2ECASection() - GetIPDistance() ;  
-
-  Float_t correction = 1 + d/GetIPDistance() ; 
-  Float_t tantheta = TMath::Tan(theta) * correction ; 
-  theta = TMath::ATan(tantheta) * TMath::RadToDeg() ; 
-  if (theta < 0 ) 
-    theta += 180. ; 
+  GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
+  GetModulePhiEtaIndexInSModule(nSupMod, nModule, iphim, ietam);
+  GetCellPhiEtaIndexInSModule(nSupMod,nModule,nIphi,nIeta, iphi, ieta); 
   
-  return;
-}
-
-//______________________________________________________________________
-void AliEMCALGeometry::PosInAlice(Int_t absid, Float_t &theta, Float_t &phi) const 
-{
-  // Converts the relative numbering into the local EMCAL-module (x, z)
-  // coordinates
-  Int_t relid[2] ; 
-  AbsToRelNumbering(absid, relid) ;
-  Int_t ieta = relid[0]; // offset along x axis
-  Int_t iphi = relid[1]; // offset along z axis
-  Int_t index;
-  Float_t eta;
-  
-  index = TowerIndex(ieta,iphi);
-  EtaPhiFromIndex(index,eta,phi);
-  theta = 2.0*TMath::ATan(TMath::Exp(-eta)) ;
+  //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];
   
-  // correct for distance to IP
-  Float_t d = 0. ; 
-  if (IsInECA(absid))
-    d = GetIP2ECASection() - GetIPDistance() ; 
-  else {
-    Error("PosInAlice", "Unexpected id # %d!", absid) ; 
-    return;
+  //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);
   }
-
-  Float_t correction = 1 + d/GetIPDistance() ; 
-  Float_t tantheta = TMath::Tan(theta) * correction ; 
-  theta = TMath::ATan(tantheta) * TMath::RadToDeg() ; 
-  if (theta < 0 ) 
-    theta += 180. ; 
   
-  return;
+  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;
 }
 
-//______________________________________________________________________
-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,cylradius=0. ;
-    
-    Int_t ieta = relid[0]; // offset along x axis
-    Int_t iphi = relid[1]; // offset along z axis.
-    Int_t index;
-    
-    index = TowerIndex(ieta,iphi);
-    EtaPhiFromIndex(index,eta,phi);
-    theta = 180.*(2.0*TMath::ATan(TMath::Exp(-eta)))/TMath::Pi();
-    
-    cylradius = GetIP2ECASection() ;  
-
-    Double_t  kDeg2Rad = TMath::DegToRad() ; 
-    x =  cylradius * TMath::Cos(phi * kDeg2Rad ) ;
-    y =  cylradius * TMath::Sin(phi * kDeg2Rad ) ; 
-    z =  cylradius / TMath::Tan(theta * kDeg2Rad ) ; 
- return;
-} 
-
-//______________________________________________________________________
-void AliEMCALGeometry::XYZFromIndex(Int_t absid,  TVector3 &v) 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 theta, phi,cylradius=0. ;
-        
-    PosInAlice(absid, theta, phi) ; 
-    
-    if ( IsInECA(absid) ) 
-      cylradius = GetIP2ECASection() ;
-    else {
-      Error("XYZFromIndex", "Unexpected Tower section") ;
-      return;
-    }
+//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);
+//}
 
-    Double_t  kDeg2Rad = TMath::DegToRad() ; 
-    v.SetX(cylradius * TMath::Cos(phi * kDeg2Rad ) );
-    v.SetY(cylradius * TMath::Sin(phi * kDeg2Rad ) ); 
-    v.SetZ(cylradius / TMath::Tan(theta * kDeg2Rad ) ) ; 
- return;
-}