]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALGeometry.cxx
put back previous default value, although decission needs to be made to which one...
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALGeometry.cxx
index 7a3b3c605cd4f6dc894c66731e8bb219b186692d..18c5c80d8af4a8a62c2a101258831e63cfed3845 100644 (file)
 //                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_COMPLETEV1: Same fixes as FIRSTYEAR and 10 SM instead of 10 + 2 one_third SM, for 2011 runs
+//
+//   EMCAL_COMPLETE12SMV1: contains 12 SM for runs from year 2012 and on
+//
+//   EMCAL_COMPLETE12SMV1_DCAL: contains 12 SM and 6 DCAL SM
+//   
+//   EMCAL_COMPLETE12SMV1_DCAL_8SM: contains 12 SM and 8 DCAL SM including the DCAL extention (2 SM)
+//
+//   EMCAL_COMPLETE12SMV1_DCAL_DEV: contains 12 SM shifted and 10 DCAL SM 
 //
 //   EMCAL_WSUC (Wayne State test stand)
 //      = no definite equivalent in old notation, was only used by
@@ -73,6 +81,7 @@
 //  in AliEMCALGeometry
 //                  
 // -- Author: Magali Estienne (magali.estienne@subatech.in2p3.fr)
+//     and  : Adapted for DCAL, M.L. Wang CCNU & Subatech Oct-18-2012
 //
 //
 // Usage: 
@@ -80,7 +89,7 @@
 //        You have to use just the correct name of geometry. If name is empty string the
 //        default name of geometry will be used.
 //         
-//  AliEMCALGeometry* geom = new AliEMCALGeometry("EMCAL_COMPLETEV1","EMCAL");
+//  AliEMCALGeometry* geom = new AliEMCALGeometry("EMCAL_COMPLETE12SMV1","EMCAL");
 //  TGeoManager::Import("geometry.root");
 //
 //  MC:   If you work with MC data you have to get geometry the next way: 
 //#include <Riostream.h>
 
 // --- AliRoot header files ---
+#include "AliLog.h"
 #include "AliEMCALGeometry.h"
 #include "AliEMCALShishKebabTrd1Module.h"
 
@@ -111,18 +121,19 @@ ClassImp(AliEMCALGeometry)
 
 // these initialisations are needed for a singleton
 AliEMCALGeometry  *AliEMCALGeometry::fgGeom      = 0;
-const Char_t*      AliEMCALGeometry::fgkDefaultGeometryName = "EMCAL_COMPLETEV1";
+const Char_t*      AliEMCALGeometry::fgkDefaultGeometryName = "EMCAL_COMPLETE12SMV1";
 
 //____________________________________________________________________________
 AliEMCALGeometry::AliEMCALGeometry():
-  fEMCGeometry(0x0),fGeoName(0),
-  fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
+  fEMCGeometry(0x0),fGeoName(0),fEMCSMSystem(0x0),
+  fKey110DEG(0),fnSupModInDCAL(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
   fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
-  fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
+  fPhiCentersOfSMSec(0x0),fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
   fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
   fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
   fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
-  fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
+  fDCALPhiMin(0),fDCALPhiMax(0),fEMCALPhiMax(0),fDCALStandardPhiMax(0),
+  fDCALInnerExtandedEta(0),fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
   fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
   fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
   fZLength(0.),fSampling(0.),fUseExternalMatrices(kFALSE)
@@ -139,24 +150,26 @@ AliEMCALGeometry::AliEMCALGeometry():
     fkSModuleMatrix[i]=0 ;
 
   for (Int_t i = 0; i < 48; i++)
-       for (Int_t j = 0; j < 64; j++) fFastOR2DMap[i][j] = -1;
+   for (Int_t j = 0; j < 124; j++) fFastOR2DMap[i][j] = -1;
 }  
 
 //____________________________________________________________________________
 AliEMCALGeometry::AliEMCALGeometry(const AliEMCALGeometry & geo)
   : TNamed(geo),
-    fEMCGeometry(geo.fEMCGeometry),fGeoName(geo.fGeoName),
-    fKey110DEG(geo.fKey110DEG),fNCellsInSupMod(geo.fNCellsInSupMod),fNETAdiv(geo.fNETAdiv),fNPHIdiv(geo.fNPHIdiv),
+    fEMCGeometry(geo.fEMCGeometry),fGeoName(geo.fGeoName),fEMCSMSystem(geo.fEMCSMSystem),
+    fKey110DEG(geo.fKey110DEG),fnSupModInDCAL(geo.fnSupModInDCAL),fNCellsInSupMod(geo.fNCellsInSupMod),fNETAdiv(geo.fNETAdiv),fNPHIdiv(geo.fNPHIdiv),
     fNCellsInModule(geo.fNCellsInModule),fPhiBoundariesOfSM(geo.fPhiBoundariesOfSM),fPhiCentersOfSM(geo.fPhiCentersOfSM),
-    fPhiCentersOfCells(geo.fPhiCentersOfCells),fCentersOfCellsEtaDir(geo.fCentersOfCellsEtaDir),
+    fPhiCentersOfSMSec(geo.fPhiCentersOfSMSec),fPhiCentersOfCells(geo.fPhiCentersOfCells),fCentersOfCellsEtaDir(geo.fCentersOfCellsEtaDir),
     fCentersOfCellsPhiDir(geo.fCentersOfCellsPhiDir),fEtaCentersOfCells(geo.fEtaCentersOfCells),
     fNCells(geo.fNCells),fNPhi(geo.fNPhi),fCentersOfCellsXDir(geo.fCentersOfCellsXDir),fArm1EtaMin(geo.fArm1EtaMin),
     fArm1EtaMax(geo.fArm1EtaMax),fArm1PhiMin(geo.fArm1PhiMin),fArm1PhiMax(geo.fArm1PhiMax),fEtaMaxOfTRD1(geo.fEtaMaxOfTRD1),
-    fShishKebabTrd1Modules(geo.fShishKebabTrd1Modules),fPhiModuleSize(geo.fPhiModuleSize),
+    fDCALPhiMin(geo.fDCALPhiMin),fDCALPhiMax(geo.fDCALPhiMax),fEMCALPhiMax(geo.fEMCALPhiMax),fDCALStandardPhiMax(geo.fDCALStandardPhiMax),
+    fDCALInnerExtandedEta(geo.fDCALInnerExtandedEta),fShishKebabTrd1Modules(geo.fShishKebabTrd1Modules),fPhiModuleSize(geo.fPhiModuleSize),
     fEtaModuleSize(geo.fEtaModuleSize),fPhiTileSize(geo.fPhiTileSize),fEtaTileSize(geo.fEtaTileSize),fNZ(geo.fNZ),
     fIPDistance(geo.fIPDistance),fLongModuleSize(geo.fLongModuleSize),fShellThickness(geo.fShellThickness),
     fZLength(geo.fZLength),fSampling(geo.fSampling),fUseExternalMatrices(geo.fUseExternalMatrices)
 {
+  // Copy constarctor
   fEnvelop[0] = geo.fEnvelop[0];
   fEnvelop[1] = geo.fEnvelop[1];
   fEnvelop[2] = geo.fEnvelop[2];
@@ -167,31 +180,33 @@ AliEMCALGeometry::AliEMCALGeometry(const AliEMCALGeometry & geo)
     fkSModuleMatrix[i]=0 ;
   
   for (Int_t i = 0; i < 48; i++)
-       for (Int_t j = 0; j < 64; j++) fFastOR2DMap[i][j] = geo.fFastOR2DMap[i][j];
+    for (Int_t j = 0; j < 124; j++) fFastOR2DMap[i][j] = geo.fFastOR2DMap[i][j];
 }
 
 //____________________________________________________________________________
-AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title) 
+AliEMCALGeometry::AliEMCALGeometry(const Text_t* name,   const Text_t* title,
+                                   const Text_t* mcname, const Text_t* mctitle) 
   : TNamed(name, title),
-    fEMCGeometry(0x0),fGeoName(0),
-    fKey110DEG(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
+    fEMCGeometry(0x0),fGeoName(0),fEMCSMSystem(0x0),
+    fKey110DEG(0),fnSupModInDCAL(0),fNCellsInSupMod(0),fNETAdiv(0),fNPHIdiv(0),
     fNCellsInModule(0),fPhiBoundariesOfSM(0x0),fPhiCentersOfSM(0x0),
-    fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
+    fPhiCentersOfSMSec(0x0),fPhiCentersOfCells(0x0),fCentersOfCellsEtaDir(0x0),
     fCentersOfCellsPhiDir(0x0),fEtaCentersOfCells(0x0),
     fNCells(0),fNPhi(0),fCentersOfCellsXDir(0x0),fArm1EtaMin(0),
     fArm1EtaMax(0),fArm1PhiMin(0),fArm1PhiMax(0),fEtaMaxOfTRD1(0),
-    fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
+    fDCALPhiMin(0),fDCALPhiMax(0),fEMCALPhiMax(0),fDCALStandardPhiMax(0),
+    fDCALInnerExtandedEta(0),fShishKebabTrd1Modules(0),fPhiModuleSize(0.),
     fEtaModuleSize(0.),fPhiTileSize(0.),fEtaTileSize(0.),fNZ(0),
     fIPDistance(0.),fLongModuleSize(0.),fShellThickness(0.),
     fZLength(0.),fSampling(0.), fUseExternalMatrices(kFALSE)
 { 
-
   // ctor only for normal usage 
-
-  fEMCGeometry = new AliEMCALEMCGeometry(name,title);
-
+  
+  fEMCGeometry = new AliEMCALEMCGeometry(name,title,mcname,mctitle);
   fGeoName = fEMCGeometry->GetGeoName();
+  fEMCSMSystem = fEMCGeometry->GetEMCSystem();
   fKey110DEG = fEMCGeometry->GetKey110DEG();
+  fnSupModInDCAL = fEMCGeometry->GetnSupModInDCAL();
   fNCellsInSupMod = fEMCGeometry->GetNCellsInSupMod();
   fNETAdiv = fEMCGeometry->GetNETAdiv();
   fNPHIdiv = fEMCGeometry->GetNPHIdiv();
@@ -200,6 +215,7 @@ AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title)
   Int_t nSMod = fEMCGeometry->GetNumberOfSuperModules();
   fPhiBoundariesOfSM.Set(nSMod);
   fPhiCentersOfSM.Set(nSMod/2);
+  fPhiCentersOfSMSec.Set(nSMod/2);
   for(Int_t sm=0; sm<nSMod; sm++) {
     i = sm/2;
     fEMCGeometry->GetPhiBoundariesOfSM(sm,fPhiBoundariesOfSM[2*i],fPhiBoundariesOfSM[2*i+1]);
@@ -211,6 +227,7 @@ AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title)
     fEMCGeometry->GetPhiBoundariesOfSM(sm,phiMin,phiMax);
     i=sm/2;
     fPhiCentersOfSM[i] = fEMCGeometry->GetPhiCenterOfSM(sm);
+    fPhiCentersOfSMSec[i] = fEMCGeometry->GetPhiCenterOfSMSec(sm);
   }
   fNCells = fEMCGeometry->GetNCells();
   fNPhi = fEMCGeometry->GetNPhi();
@@ -224,6 +241,11 @@ AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title)
   fArm1EtaMax = fEMCGeometry->GetArm1EtaMax();
   fArm1PhiMin = fEMCGeometry->GetArm1PhiMin();
   fArm1PhiMax = fEMCGeometry->GetArm1PhiMax();
+  fDCALPhiMin = fEMCGeometry->GetDCALPhiMin();
+  fDCALPhiMax = fEMCGeometry->GetDCALPhiMax();
+  fEMCALPhiMax = fEMCGeometry->GetEMCALPhiMax();
+  fDCALStandardPhiMax = fEMCGeometry->GetDCALStandardPhiMax();
+  fDCALInnerExtandedEta = fEMCGeometry->GetDCALInnerExtandedEta();
   fShellThickness = fEMCGeometry->GetShellThickness();
   fZLength    = fEMCGeometry->GetZLength();
   fSampling   = fEMCGeometry->GetSampling();
@@ -246,13 +268,14 @@ AliEMCALGeometry::AliEMCALGeometry(const Text_t* name, const Text_t* title)
   }
 
   for (Int_t ix = 0; ix < 48; ix++)
-       for (Int_t jx = 0; jx < 64; jx++) fFastOR2DMap[ix][jx] = -1;
+       for(Int_t jx = 0; jx < 124; jx++) fFastOR2DMap[ix][jx] = -1;
 
   BuildFastOR2DMap();
 }
 
 //____________________________________________________________________________
-AliEMCALGeometry & AliEMCALGeometry::operator = (const AliEMCALGeometry  & /*rvalue*/) { 
+AliEMCALGeometry & AliEMCALGeometry::operator = (const AliEMCALGeometry  & /*rvalue*/) 
+{ 
   //assing operator
   Fatal("assignment operator", "not implemented") ; 
   return *this ;
@@ -262,22 +285,29 @@ AliEMCALGeometry & AliEMCALGeometry::operator = (const AliEMCALGeometry  & /*rva
 AliEMCALGeometry::~AliEMCALGeometry(void)
 {
   // dtor
-  if (this==fgGeom) {
+  if (this==fgGeom)
+  {
     AliError("Do not call delete on me");
     return;
   }
-  if (fEMCGeometry){ 
-    for(Int_t smod = 0 ; smod < fEMCGeometry->GetNumberOfSuperModules(); smod++){
+  
+  if (fEMCGeometry)
+  {
+    for(Int_t smod = 0 ; smod < fEMCGeometry->GetNumberOfSuperModules(); smod++)
+    {
       if(fkSModuleMatrix[smod])
         delete fkSModuleMatrix[smod] ;
-        fkSModuleMatrix[smod]=0 ;
+      
+      fkSModuleMatrix[smod]=0 ;
     }
-    delete fEMCGeometry; fEMCGeometry = 0 ;
+    
+    delete fEMCGeometry; // fEMCGeometry = 0 ;
   }
 }
 
 //______________________________________________________________________
-AliEMCALGeometry *  AliEMCALGeometry::GetInstance(){ 
+AliEMCALGeometry *  AliEMCALGeometry::GetInstance()
+{ 
   // Returns the pointer of the unique instance
   
   AliEMCALGeometry * rv = static_cast<AliEMCALGeometry *>( fgGeom );
@@ -285,16 +315,17 @@ AliEMCALGeometry *  AliEMCALGeometry::GetInstance(){
 }
 
 //______________________________________________________________________
-AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name,
-                                                const Text_t* title){
+AliEMCALGeometry* AliEMCALGeometry::GetInstance(const Text_t* name,   const Text_t* title,
+                                                const Text_t* mcname, const Text_t* mctitle )
+{
   // Returns the pointer of the unique instance
-  
+    
   AliEMCALGeometry * rv = 0; 
   if ( fgGeom == 0 ) {
     if ( strcmp(name,"") == 0 ) { // get default geometry
-      fgGeom = new AliEMCALGeometry(fgkDefaultGeometryName, title);
+      fgGeom = new AliEMCALGeometry(fgkDefaultGeometryName, title,mcname,mctitle);
     } else {
-      fgGeom = new AliEMCALGeometry(name, title);
+      fgGeom = new AliEMCALGeometry(name, title,mcname,mctitle);
     }  // end if strcmp(name,"")
     if ( AliEMCALEMCGeometry::fgInit ) rv = (AliEMCALGeometry * ) fgGeom;
     else {
@@ -337,12 +368,12 @@ void AliEMCALGeometry::GetGlobal(const Double_t *loc, Double_t *glob, int ind) c
   // matrix stored by the geometry manager (allows for misaligned
   // geometry)
        
-       const TGeoHMatrix* m = GetMatrixForSuperModule(ind);
-    if(m) {
-      m->LocalToMaster(loc, glob);
-    } else {
-      AliFatal("Geo matrixes are not loaded \n") ;
-    }
+  const TGeoHMatrix* m = GetMatrixForSuperModule(ind);
+  if(m) {
+    m->LocalToMaster(loc, glob);
+  } else {
+    AliFatal("Geo matrixes are not loaded \n") ;
+  }
 }
 
 //________________________________________________________________________________________________
@@ -368,9 +399,8 @@ void AliEMCALGeometry::GetGlobal(Int_t absId , double glob[3]) const
   glob[0]=glob[1]=glob[2]=0.0; // bad case
   if(RelPosCellInSModule(absId, loc)) {
     GetCellIndex(absId, nSupMod, nModule, nIphi, nIeta);
-
-         const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
-         if(m) {
+    const TGeoHMatrix* m = GetMatrixForSuperModule(nSupMod);
+    if(m) {
       m->LocalToMaster(loc, glob);
     } else {
       AliFatal("Geo matrixes are not loaded \n") ;
@@ -386,10 +416,8 @@ void AliEMCALGeometry::GetGlobal(Int_t absId , TVector3 &vglob) const
 
   GetGlobal(absId, glob);
   vglob.SetXYZ(glob[0], glob[1], glob[2]);
-
 }
 
-
 //______________________________________________________________________
 void AliEMCALGeometry::PrintCellIndexes(Int_t absId, int pri, const char *tit) const
 {
@@ -455,23 +483,22 @@ Int_t AliEMCALGeometry::GetAbsCellId(Int_t nSupMod, Int_t nModule, Int_t nIphi,
   // 0 <= nIphi   < fNPHIdiv
   // 0 <= nIeta   < fNETAdiv
   // 0 <= absid   < fNCells
-  static Int_t id=0; // have to change from 0 to fNCells-1
-  if(fKey110DEG == 1 && nSupMod >= 10) { // 110 degree case; last two supermodules
-    id  = fNCellsInSupMod*10 + (fNCellsInSupMod/2)*(nSupMod-10);
-  } else {
-    id  = fNCellsInSupMod*nSupMod;
+  Int_t id=0; // have to change from 0 to fNCells-1
+  for( int i = 0 ; i < nSupMod; i++) {
+    if(      GetSMType(i) == kEMCAL_Standard) id += fNCellsInSupMod;
+    else if( GetSMType(i) == kEMCAL_Half)     id += fNCellsInSupMod/2;
+    else if( GetSMType(i) == kEMCAL_3rd)      id += fNCellsInSupMod/3;
+    else if( GetSMType(i) == kDCAL_Standard)  id += 2*fNCellsInSupMod/3;
+    else if( GetSMType(i) == kDCAL_Ext)       id += fNCellsInSupMod/3;
+    else {
+      AliError(Form("Uknown SuperModule Type !!"));
+    }
   }
+  
   id += fNCellsInModule *nModule;
   id += fNPHIdiv *nIphi;
   id += nIeta;
-  if(id<0 || id >= fNCells) {
-//     printf(" wrong numerations !!\n");
-//     printf("    id      %6i(will be force to -1)\n", id);
-//     printf("    fNCells %6i\n", fNCells);
-//     printf("    nSupMod %6i\n", nSupMod);
-//     printf("    nModule  %6i\n", nModule);
-//     printf("    nIphi   %6i\n", nIphi);
-//     printf("    nIeta   %6i\n", nIeta);
+  if( !CheckAbsCellId(id) ) {
     id = -TMath::Abs(id); // if negative something wrong
   }
   return id;
@@ -494,6 +521,16 @@ void  AliEMCALGeometry::GetModuleIndexesFromCellIndexesInSModule(Int_t nSupMod,
 Int_t  AliEMCALGeometry::GetAbsCellIdFromCellIndexes(Int_t nSupMod, Int_t iphi, Int_t ieta) const
 {
   // Transition from super module number(nSupMod) and cell indexes (ieta,iphi) to absId
+  
+  // Check if the indeces correspond to existing SM or tower indeces
+  if(iphi    < 0 || iphi    >= AliEMCALGeoParams::fgkEMCALRows || 
+     ieta    < 0 || ieta    >= AliEMCALGeoParams::fgkEMCALCols ||
+     nSupMod < 0 || nSupMod >= GetNumberOfSuperModules()         )
+  {
+    AliDebug(1,Form("Wrong cell indexes : SM %d, column (eta) %d, row (phi) %d", nSupMod,ieta,iphi));
+    return -1 ;
+  }
+  
   static Int_t ietam=-1, iphim=-1, nModule=-1;
   static Int_t nIeta=-1, nIphi=-1; // cell indexes in module
 
@@ -502,7 +539,7 @@ Int_t  AliEMCALGeometry::GetAbsCellIdFromCellIndexes(Int_t nSupMod, Int_t iphi,
   nIeta = ieta%fNETAdiv;
   nIeta = fNETAdiv - 1 - nIeta;
   nIphi = iphi%fNPHIdiv;
-
+  
   return GetAbsCellId(nSupMod, nModule, nIphi, nIeta);
 }
 
@@ -516,14 +553,14 @@ Bool_t AliEMCALGeometry::SuperModuleNumberFromEtaPhi(Double_t eta, Double_t phi,
   if(TMath::Abs(eta) > fEtaMaxOfTRD1) return kFALSE;
 
   phi = TVector2::Phi_0_2pi(phi); // move phi to (0,2pi) boundaries
-  for(i=0; i<6; i++) {
-       
-       //Check if it is not the complete geometry
-       if (i >= fEMCGeometry->GetNumberOfSuperModules()/2) return kFALSE;
-
+  Int_t nphism = fEMCGeometry->GetNumberOfSuperModules()/2;
+  for(i=0; i<nphism; i++) {
     if(phi>=fPhiBoundariesOfSM[2*i] && phi<=fPhiBoundariesOfSM[2*i+1]) {
       nSupMod = 2*i;
       if(eta < 0.0) nSupMod++;
+      if( GetSMType(nSupMod) == kDCAL_Standard) {// Gap between DCAL
+        if(TMath::Abs(eta) < GetNEta()/3*(GetEMCGeometry()->GetTrd1Angle())*TMath::DegToRad()) return kFALSE;
+      }
       AliDebug(1,Form("eta %f phi %f(%5.2f) : nSupMod %i : #bound %i", eta,phi,phi*TMath::RadToDeg(), nSupMod,i));
       return kTRUE;
     }
@@ -535,21 +572,21 @@ Bool_t AliEMCALGeometry::SuperModuleNumberFromEtaPhi(Double_t eta, Double_t phi,
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetAbsCellIdFromEtaPhi(Double_t eta, Double_t phi, Int_t &absId) const
 {
+
   // Nov 17,2006
   // stay here - phi problem as usual 
-  static Int_t nSupMod=-1, i=0, ieta=-1, iphi=-1, etaShift=0, nphi=-1;
+  static Int_t nSupMod=-1, i=0, ieta=-1, iphi=-1, etaShift=0, neta=-1, nphi=-1;
   static Double_t absEta=0.0, d=0.0, dmin=0.0, phiLoc=0;
   absId = nSupMod = - 1;
   if(SuperModuleNumberFromEtaPhi(eta, phi, nSupMod)) {
     // phi index first
     phi    = TVector2::Phi_0_2pi(phi);
-    phiLoc = phi - fPhiCentersOfSM[nSupMod/2];
+    phiLoc = phi - fPhiCentersOfSMSec[nSupMod/2];
     nphi   = fPhiCentersOfCells.GetSize();
-    if(nSupMod>=10) {
-      phiLoc = phi - 190.*TMath::DegToRad();
-      nphi  /= 2;
-    }
-
+    if (     GetSMType(nSupMod) == kEMCAL_Half ) nphi  /= 2;
+    else if( GetSMType(nSupMod) == kEMCAL_3rd )  nphi  /= 3;
+    else if( GetSMType(nSupMod) == kDCAL_Ext )   nphi  /= 3;
+    
     dmin   = TMath::Abs(fPhiCentersOfCells[0]-phiLoc);
     iphi   = 0;
     for(i=1; i<nphi; i++) {
@@ -558,38 +595,36 @@ Bool_t AliEMCALGeometry::GetAbsCellIdFromEtaPhi(Double_t eta, Double_t phi, Int_
         dmin = d;
         iphi = i;
       }
-      //      printf(" i %i : d %f : dmin %f : fPhiCentersOfCells[i] %f \n", i, d, dmin, fPhiCentersOfCells[i]);
+      //printf(" i %i : d %f : dmin %f : fPhiCentersOfCells[i] %f \n", i, d, dmin, fPhiCentersOfCells[i]);
     }
     // odd SM are turned with respect of even SM - reverse indexes
     AliDebug(2,Form(" iphi %i : dmin %f (phi %f, phiLoc %f ) ", iphi, dmin, phi, phiLoc));
+
     // eta index
     absEta   = TMath::Abs(eta);
-    etaShift = iphi*fCentersOfCellsEtaDir.GetSize();
-    dmin     = TMath::Abs(fEtaCentersOfCells[etaShift]-absEta);
+    neta     = fCentersOfCellsEtaDir.GetSize();
+    etaShift = iphi*neta;
     ieta     = 0;
-    for(i=1; i<fCentersOfCellsEtaDir.GetSize(); i++) {
+    if( GetSMType(nSupMod) == kDCAL_Standard) ieta += 16; //jump 16 cells for DCSM
+    dmin     = TMath::Abs(fEtaCentersOfCells[etaShift + ieta]-absEta);
+    for(i= ieta+1 ; i<neta; i++) {
       d = TMath::Abs(fEtaCentersOfCells[i+etaShift] - absEta);
       if(d < dmin) {
         dmin = d;
         ieta = i;
       }
     }
+    if( GetSMType(nSupMod) == kDCAL_Standard) ieta -= 16; //jump 16 cells for DCSM
+
     AliDebug(2,Form(" ieta %i : dmin %f (eta=%f) : nSupMod %i ", ieta, dmin, eta, nSupMod));
+     
+   //patch for mapping following alice convention  
+    if(nSupMod%2 == 0) {// 47 + 16 -ieta for DCSM, 47 - ieta for others, revert the ordering on A side in order to keep convention.
+      ieta = (neta -1)-ieta;
+      if( GetSMType(nSupMod) == kDCAL_Standard) ieta -= 16; //recover cells for DCSM
+    }
 
-    if(eta<0) iphi = (nphi-1) - iphi;
-         
-       //patch for mapping following alice convention  
-       if(nSupMod%2 == 0)                
-                 ieta = (fCentersOfCellsEtaDir.GetSize()-1)-ieta;// 47-ieta, revert the ordering on A side in order to keep convention.
-       else {
-               if(nSupMod<10) 
-                               iphi = (fCentersOfCellsPhiDir.GetSize()-1)  -iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
-               else 
-                               iphi = (fCentersOfCellsPhiDir.GetSize()/2-1)-iphi;// 11-iphi, revert the ordering on C side in order to keep convention.
-       }
-  
     absId = GetAbsCellIdFromCellIndexes(nSupMod, iphi, ieta);
-
     return kTRUE;
   }
   return kFALSE;
@@ -617,19 +652,25 @@ Bool_t AliEMCALGeometry::GetCellIndex(Int_t absId,Int_t &nSupMod,Int_t &nModule,
   // nIphi   - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv; 
   // nIeta   - cell number in eta driection inside module; 0<= nIeta < fNETAdiv; 
   // 
-  static Int_t tmp=0, sm10=0;
   if(!CheckAbsCellId(absId)) return kFALSE;
 
-  sm10 = fNCellsInSupMod*10;
-  if(fKey110DEG == 1 && absId >= sm10) { // 110 degree case; last two supermodules  
-    nSupMod = (absId-sm10) / (fNCellsInSupMod/2) + 10;
-    tmp     = (absId-sm10) % (fNCellsInSupMod/2);
-  } else {
-    nSupMod = absId / fNCellsInSupMod;
-    tmp     = absId % fNCellsInSupMod;
+  static Int_t tmp = absId;
+  Int_t test = absId;
+  for(nSupMod = -1; test >= 0; ) {
+    nSupMod++;
+    tmp = test;
+    if(      GetSMType(nSupMod) == kEMCAL_Standard) test -= fNCellsInSupMod;
+    else if( GetSMType(nSupMod) == kEMCAL_Half)     test -= fNCellsInSupMod/2;
+    else if( GetSMType(nSupMod) == kEMCAL_3rd)      test -= fNCellsInSupMod/3;
+    else if( GetSMType(nSupMod) == kDCAL_Standard)  test -= 2*fNCellsInSupMod/3;
+    else if( GetSMType(nSupMod) == kDCAL_Ext)       test -= fNCellsInSupMod/3;
+    else {
+      AliError(Form("Uknown SuperModule Type !!"));
+      return kFALSE;
+    }
   }
-
-  nModule  = tmp / fNCellsInModule;
+  nModule = tmp / fNCellsInModule;
   tmp     = tmp % fNCellsInModule;
   nIphi   = tmp / fNPHIdiv;
   nIeta   = tmp % fNPHIdiv;
@@ -657,10 +698,11 @@ void AliEMCALGeometry::GetModulePhiEtaIndexInSModule(Int_t nSupMod, Int_t nModul
   // ietam - have to change from 0 to fNZ-1
   // iphim - have to change from 0 to nphi-1 (fNPhi-1 or fNPhi/2-1)
   static Int_t nphi=-1;
-
-  if(fKey110DEG == 1 && nSupMod>=10) nphi = fNPhi/2;
-  else                               nphi = fNPhi;
-
+  if(      GetSMType(nSupMod) == kEMCAL_Half )  nphi = fNPhi/2; // halfSM
+  else if( GetSMType(nSupMod) == kEMCAL_3rd  )  nphi = fNPhi/3; // 1/3 SM
+  else if( GetSMType(nSupMod) == kDCAL_Ext   )  nphi = fNPhi/3; // 1/3 SM
+  else                                          nphi = fNPhi;   // full SM
+  
   ietam = nModule/nphi;
   iphim = nModule%nphi;
 }
@@ -678,7 +720,7 @@ int &iphi, int &ieta) const
   // nIphi   - cell number in phi driection inside module; 0<= nIphi < fNPHIdiv; 
   // nIeta   - cell number in eta driection inside module; 0<= nIeta < fNETAdiv; 
   // 
- // OUT:
 // OUT:
   // ieta, iphi - indexes of cell(tower) in two dimensional grid of SM
   // ieta - have to change from 0 to (fNZ*fNETAdiv-1)
   // iphi - have to change from 0 to (fNPhi*fNPHIdiv-1 or fNPhi*fNPHIdiv/2-1)
@@ -695,7 +737,6 @@ int &iphi, int &ieta) const
   nSupMod, nModule, nIphi, nIeta, ieta, iphi));
 }
 
-
 // Methods for AliEMCALRecPoint - Feb 19, 2006
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t &xr, Double_t &yr, Double_t &zr) const
@@ -710,8 +751,11 @@ Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t &xr, Double_t
   // 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
+  // and SM of half (or one third) size in phi direction
+  const Int_t kNphiIndex = fCentersOfCellsPhiDir.GetSize(); 
+  Double_t  zshift = 0.5*GetDCALInnerEdge();
+      
   static Int_t nSupMod=-1, nModule=-1, nIphi=-1, nIeta=-1, iphi=-1, ieta=-1;
   if(!CheckAbsCellId(absId)) return kFALSE;
 
@@ -720,23 +764,29 @@ Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t &xr, Double_t
        
   //Get eta position. Careful with ALICE conventions (increase index decrease eta)     
   Int_t ieta2 = ieta;
-  if(nSupMod%2 == 0)             
-         ieta2 = (fCentersOfCellsEtaDir.GetSize()-1)-ieta;// 47-ieta, revert the ordering on A side in order to keep convention.
+  if(nSupMod%2 == 0) {
+    ieta2 = (fCentersOfCellsEtaDir.GetSize()-1)-ieta;// 47-ieta, revert the ordering on A side in order to keep convention.
+  }
+  if( GetSMType(nSupMod) == kDCAL_Standard && nSupMod%2 ) ieta2 += 16; // DCAL revert the ordering on C side ...
   zr = fCentersOfCellsEtaDir.At(ieta2); 
+  if( GetSMType(nSupMod) == kDCAL_Standard ) zr -= zshift; // DCAL shift (SMALLER SM)
   xr = fCentersOfCellsXDir.At(ieta2);
 
   //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);
-         
+  if( GetSMType(nSupMod) == kDCAL_Ext ) {
+  if(nSupMod%2 != 0)   iphi2 = (kNphiIndex/3 -1)-iphi;  // 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
+    yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/3);
+  } else if( GetSMType(nSupMod) == kEMCAL_Half ){
+    if(nSupMod%2 != 0)   iphi2 = (kNphiIndex/2 -1)-iphi;  //11-iphi [1/2SM], revert the ordering on C side in order to keep convention.
+    yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/4);
+  } else if( GetSMType(nSupMod) == kEMCAL_3rd ){
+    if(nSupMod%2 != 0)   iphi2 = (kNphiIndex/3 -1)-iphi;  // 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
+    yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/3);
   } 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);
-  }
+    if(nSupMod%2 != 0)   iphi2 = (kNphiIndex   -1)-iphi;// 23-iphi, revert the ordering on C side in order to keep conventi
+    yr = fCentersOfCellsPhiDir.At(iphi2);
+  } 
   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;
@@ -786,8 +836,12 @@ Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t distEff, Doub
   // 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
+  // and SM of half (or one third) size in phi direction
+  
+  const Int_t kNphiIndex = fCentersOfCellsPhiDir.GetSize();
+  Double_t  zshift = 0.5*GetDCALInnerEdge();
+  Int_t kDCalshift = 8;//wangml DCal cut first 8 modules(16 cells)
+   
   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;
@@ -800,34 +854,38 @@ Bool_t AliEMCALGeometry::RelPosCellInSModule(Int_t absId, Double_t distEff, Doub
   
   //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.
+    ietam = (fCentersOfCellsEtaDir.GetSize()/2-1)-ietam;// 24-ietam, revert the ordering on A side in order to keep convention.
     if(nIeta == 0) nIeta = 1;
     else          nIeta = 0;
   }
+  if( GetSMType(nSupMod) == kDCAL_Standard && nSupMod%2) ietam += kDCalshift; // DCAL revert the ordering on C side ....
   mod = GetShishKebabModule(ietam);
   mod ->GetPositionAtCenterCellLine(nIeta, distEff, v); 
   xr = v.Y() - fParSM[0];
   zr = v.X() - fParSM[2];
-  
+  if( GetSMType(nSupMod) == kDCAL_Standard ) zr -= zshift; // DCAL shift (SMALLER SM)
   //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);
-  }
+  if( GetSMType(nSupMod) == kDCAL_Ext ) {
+     if(nSupMod%2 != 0)  iphi2 = (kNphiIndex/3 -1)-iphi;  // 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
+     yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/3);
+   } else if( GetSMType(nSupMod) == kEMCAL_Half ){
+     if(nSupMod%2 != 0)  iphi2 = (kNphiIndex/2 -1)-iphi;  //11-iphi [1/2SM], revert the ordering on C side in order to keep convention.
+     yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/2);
+   } else if( GetSMType(nSupMod) == kEMCAL_3rd ){
+     if(nSupMod%2 != 0)  iphi2 = (kNphiIndex/3 -1)-iphi;  // 7-iphi [1/3SM], revert the ordering on C side in order to keep convention.
+     yr = fCentersOfCellsPhiDir.At(iphi2 + kNphiIndex/3);
+   } else {
+     if(nSupMod%2 != 0)  iphi2 = (kNphiIndex   -1)-iphi;// 23-iphi, revert the ordering on C side in order to keep convention.
+     yr = fCentersOfCellsPhiDir.At(iphi2);
+   }
   
   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::CreateListOfTrd1Modules()
 {
@@ -943,7 +1001,6 @@ void AliEMCALGeometry::CreateListOfTrd1Modules()
 
 }
 
-
 //________________________________________________________________________________________________
 AliEMCALShishKebabTrd1Module* AliEMCALGeometry::GetShishKebabModule(Int_t neta) const
 {
@@ -989,7 +1046,6 @@ void AliEMCALGeometry::PrintGeometryGeoUtils()
     printf(" ind %2.2i : y %8.3f : phi %7.5f(%6.2f) \n", i, fCentersOfCellsPhiDir.At(i), 
           phi, phi*TMath::RadToDeg());
   }
-
 }
 
 //____________________________________________________________________________
@@ -1101,38 +1157,55 @@ void AliEMCALGeometry::ImpactOnEmcal(TVector3 vtx, Double_t theta, Double_t phi,
 }
 
 //_____________________________________________________________________________
-Bool_t AliEMCALGeometry::IsInEMCAL(Double_t x, Double_t y, Double_t z) const {
-  // Checks whether point is inside the EMCal volume, used in AliEMCALv*.cxx
+Bool_t AliEMCALGeometry::IsInEMCAL(Double_t x, Double_t y, Double_t z) const 
+{
+  // Checks whether point is inside the EMCal volume 
+  if( IsInEMCALOrDCAL(x,y,z) == 1 ) return kTRUE;
+  else return kFALSE;
+}
+
+//_____________________________________________________________________________
+Bool_t AliEMCALGeometry::IsInDCAL(Double_t x, Double_t y, Double_t z) const 
+{
+  // Checks whether point is inside the DCal volume
+  if( IsInEMCALOrDCAL(x,y,z) == 2 ) return kTRUE;
+  else return kFALSE;
+}
+
+//_____________________________________________________________________________
+Int_t AliEMCALGeometry::IsInEMCALOrDCAL(Double_t x, Double_t y, Double_t z) const 
+{
+  // Checks whether point is inside the EMCal volume (included DCal), used in AliEMCALv*.cxx
   //
   // Code uses cylindrical approximation made of inner radius (for speed)
   //
-  // Points behind EMCAl, i.e. R > outer radius, but eta, phi in acceptance 
+  // Points behind EMCAl/DCal, i.e. R > outer radius, but eta, phi in acceptance 
   // are considered to inside
 
   Double_t r=sqrt(x*x+y*y);
 
-  if ( r > fEnvelop[0] ) {
-     Double_t theta;
-     theta  =    TMath::ATan2(r,z);
-     Double_t eta;
-     if(theta == 0) 
-       eta = 9999;
-     else 
-       eta    =   -TMath::Log(TMath::Tan(theta/2.));
-     if (eta < fArm1EtaMin || eta > fArm1EtaMax)
-       return 0;
-     Double_t phi = TMath::ATan2(y,x) * 180./TMath::Pi();
-     if (phi < 0) phi += 360;  // phi should go from 0 to 360 in this case
-     if (phi > fArm1PhiMin && phi < fArm1PhiMax)
-       return 1;
-  }
-  return 0;
+  if ( r <= fEnvelop[0] ) return 0;
+  else {
+    Double_t theta = TMath::ATan2(r,z);
+    Double_t eta;
+    if(theta == 0)  eta = 9999;
+    else            eta = -TMath::Log(TMath::Tan(theta/2.));
+    if (eta < fArm1EtaMin || eta > fArm1EtaMax) return 0;
+
+    Double_t phi = TMath::ATan2(y,x) * 180./TMath::Pi();
+    if (phi < 0) phi += 360;  // phi should go from 0 to 360 in this case
+
+    if (      phi >= fArm1PhiMin         && phi <= fEMCALPhiMax ) return 1;
+    else if ( phi >= fDCALPhiMin         && phi <= fDCALStandardPhiMax && TMath::Abs(eta) > fDCALInnerExtandedEta ) return 2;
+    else if ( phi > fDCALStandardPhiMax  && phi <= fDCALPhiMax  ) return 2;
+    else return 0;
+  } 
 }
 
 //________________________________________________________________________________________________
 Int_t AliEMCALGeometry::GetAbsTRUNumberFromNumberInSm(const Int_t row, const Int_t col, const Int_t sm) const
-{ // Nov 6, 2007
+{ 
+  // Nov 6, 2007
   // Get TRU absolute number from column, row and Super Module number
   Int_t itru = row + col*fEMCGeometry->GetNModulesInTRUPhi() + sm*fEMCGeometry->GetNTRU();
   // printf("  GetAbsTRUNumberFromNumberInSm : row %2i col %2i sm %2i -> itru %2i\n", row, col, sm, itru); 
@@ -1142,88 +1215,77 @@ Int_t AliEMCALGeometry::GetAbsTRUNumberFromNumberInSm(const Int_t row, const Int
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetAbsFastORIndexFromTRU(const Int_t iTRU, const Int_t iADC, Int_t& id) const
 {
-       //Trigger mapping method, get  FastOr Index from TRU
+  //Trigger mapping method, get  FastOr Index from TRU
 
-  if (iTRU > 31 || iTRU < 0 || iADC > 95 || iADC < 0) 
-       {
-               AliError("TRU out of range!");
-               return kFALSE;
-       }
-       
-       id  = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
-
-       id += iTRU * 96;
+  if (iTRU > GetNTotalTRU()-1 || iTRU < 0 || iADC > 95 || iADC < 0) 
+  {
+    AliError("TRU out of range!");
+    return kFALSE;
+  }
        
-       return kTRUE;
+  id  = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
+  id += iTRU * 96;
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetTRUFromAbsFastORIndex(const Int_t id, Int_t& iTRU, Int_t& iADC) const
 {
+  //Trigger mapping method, get TRU number from FastOr Index
 
-       //Trigger mapping method, get TRU number from FastOr Index
-
-       if (id > 3071 || id < 0)
-       {
-               AliError("Id out of range!");
-               return kFALSE;
-       }
-       
-       iTRU = id / 96;
-       
-       iADC = id % 96;
-       
-       iADC = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
+  Int_t nModule = GetNTotalTRU()*96;
+  if (id > nModule-1 || id < 0)
+  {
+    AliError("Id out of range!");
+    return kFALSE;
+  }
        
-       return kTRUE;
+  iTRU = id / 96;
+  iADC = id % 96;
+  iADC = ( iTRU % 2 ) ? iADC%4 + 4 * (23 - int(iADC/4)) : (3 - iADC%4) + 4 * int(iADC/4);
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetPositionInTRUFromAbsFastORIndex(const Int_t id, Int_t& iTRU, Int_t& iEta, Int_t& iPhi) const
 {
-       //Trigger mapping method, get position in TRU from FasOr Index
-       
-       Int_t iADC=-1;  
-       if (!GetTRUFromAbsFastORIndex(id, iTRU, iADC)) return kFALSE;
+  //Trigger mapping method, get position in TRU from FasOr Index
        
-       Int_t x = iADC / 4;
-       Int_t y = iADC % 4;
+  Int_t iADC=-1;       
+  if (!GetTRUFromAbsFastORIndex(id, iTRU, iADC)) return kFALSE;
        
-       if ( iTRU % 2 ) // C side 
-       {
-               iEta = 23 - x;
-               iPhi =      y;
-       }
-       else            // A side
-       {
-               iEta =      x;
-               iPhi =  3 - y;
-       }
-       
-       return kTRUE;
+  Int_t x = iADC / 4;
+  Int_t y = iADC % 4;
+  if ( iTRU % 2 ) // C side 
+  {
+    iEta = 23 - x;
+    iPhi =      y;
+  }
+  else            // A side
+  {
+    iEta =      x;
+    iPhi =  3 - y;
+  }
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetPositionInSMFromAbsFastORIndex(const Int_t id, Int_t& iSM, Int_t& iEta, Int_t& iPhi) const
 {
-       //Trigger mapping method, get position in Super Module from FasOr Index
+  //Trigger mapping method, get position in Super Module from FasOr Index
 
-       Int_t iTRU=-1;
-               
-       if (!GetPositionInTRUFromAbsFastORIndex(id, iTRU, iEta, iPhi)) return kFALSE;
-       
-       if (iTRU % 2) // C side
-       {
-               iSM  = 2 * ( int( int(iTRU / 2) / 3 ) ) + 1;
-       }
-       else            // A side
-       {
-               iSM  = 2 * ( int( int(iTRU / 2) / 3 ) );
-       }
-
-       iPhi += 4 * int((iTRU % 6) / 2);
-       
-       return kTRUE;
+  Int_t iTRU=-1;
+  if (!GetPositionInTRUFromAbsFastORIndex(id, iTRU, iEta, iPhi)) return kFALSE;
+  if (iTRU % 2) // C side
+  {
+    iSM  = 2 * ( int( int(iTRU / 2) / 3 ) ) + 1;
+  }
+  else            // A side
+  {
+    iSM  = 2 * ( int( int(iTRU / 2) / 3 ) );
+  }
+  iPhi += 4 * int((iTRU % 6) / 2);
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
@@ -1231,34 +1293,27 @@ Bool_t AliEMCALGeometry::GetPositionInEMCALFromAbsFastORIndex(const Int_t id, In
 {
   //Trigger mapping method, get position in EMCAL from FastOR index
 
-       Int_t iSM=-1;
-       
-       if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
-       {
-               if (iSM % 2) iEta += 24; 
-               
-               iPhi += 12 * int(iSM / 2);
-               
-               return kTRUE;
-       }
-       
-       return kFALSE;
+  Int_t iSM=-1;
+  if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
+  {
+    if (iSM % 2) iEta += 24; 
+    iPhi += 12 * int(iSM / 2);
+    return kTRUE;
+  }
+  return kFALSE;
 }
 
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInTRU(const Int_t iTRU, const Int_t iEta, const Int_t iPhi, Int_t& id) const
 {
-       //Trigger mapping method, get Index if FastOr from Position in TRU
-
-       if (iTRU < 0 || iTRU > 31 || iEta < 0 || iEta > 23 || iPhi < 0 || iPhi > 3) 
-       {
-               AliError("Out of range!");      
-               return kFALSE;
-       }
-       
-       id =  iPhi  + 4 * iEta + iTRU * 96;
-       
-       return kTRUE;
+  //Trigger mapping method, get Index if FastOr from Position in TRU
+  if (iTRU < 0 || iTRU > GetNTotalTRU()-1 || iEta < 0 || iEta > 23 || iPhi < 0 || iPhi > 3) 
+  {
+    AliError(Form("Out of range! iTRU=%d, iEta=%d, iPhi=%d", iTRU, iEta, iPhi));       
+    return kFALSE;
+  }
+  id =  iPhi  + 4 * iEta + iTRU * 96;
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
@@ -1266,24 +1321,28 @@ Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInSM(const Int_t  iSM, con
 {
   //Trigger mapping method, from position in SM Index get FastOR index 
 
-       if (iSM < 0 || iSM > 11 || iEta < 0 || iEta > 23 || iPhi < 0 || iPhi > 11) 
-       {
-               AliError("Out of range!");
-               return kFALSE;
-       }
-       
-       Int_t x = iEta;
-       Int_t y = iPhi % 4;     
-       
-       Int_t iOff = (iSM % 2) ? 1 : 0;
-       Int_t iTRU = 2 * int(iPhi / 4) + 6 * int(iSM / 2) + iOff;
+  Int_t iSMMax  = fEMCGeometry->GetNumberOfSuperModules();
+  Int_t iEtaMax = fEMCGeometry->GetNZ();
+  Int_t iPhiMax = fEMCGeometry->GetNPhi();
+  if( GetSMType(iSM) == kEMCAL_3rd || GetSMType(iSM) == kDCAL_Ext ) iPhiMax /= 3;
+  if( GetSMType(iSM) == kEMCAL_Half )                               iPhiMax /= 2;
+  if( GetSMType(iSM) == kDCAL_Standard )                            iEtaMax = iEtaMax*2/3;
 
-       if (GetAbsFastORIndexFromPositionInTRU(iTRU, x, y, id))
-       {
-               return kTRUE;
-       }
-       
-       return kFALSE;
+  if (iSM < 0 || iSM >= iSMMax || iEta < 0 || iEta >= iEtaMax || iPhi < 0 || iPhi >= iPhiMax) 
+  {
+    AliError("Out of range!");
+    return kFALSE;
+  }
+  Int_t x = iEta;
+  Int_t y = iPhi % 4;  
+  Int_t iOff = (iSM % 2) ? 1 : 0;
+  Int_t iTRU = 2 * int(iPhi / 4) + 6 * int(iSM / 2) + iOff;
+  if(IsDCALSM(iSM) ) iTRU -=4;
+  if (GetAbsFastORIndexFromPositionInTRU(iTRU, x, y, id))
+  {
+    return kTRUE;
+  }
+  return kFALSE;
 }
 
 //________________________________________________________________________________________________
@@ -1291,21 +1350,18 @@ Bool_t AliEMCALGeometry::GetAbsFastORIndexFromPositionInEMCAL(const Int_t iEta,
 {
   //Trigger mapping method, from position in EMCAL Index get FastOR index 
 
-       if (iEta < 0 || iEta > 47 || iPhi < 0 || iPhi > 63 ) 
-       {
-               AliError("Out of range!");
-               return kFALSE;
-       }
-       
-       if (fFastOR2DMap[iEta][iPhi] == -1) 
-       {
-               AliError("Invalid index!");
-               return kFALSE;
-       }
-       
-       id = fFastOR2DMap[iEta][iPhi];
-       
-       return kTRUE;
+  if (iEta < 0 || iEta > 47 || iPhi < 0 || iPhi >= 2*GetNTotalTRU() )//for future DCAL trigge
+  {
+    AliError(Form("Out of range! eta: %2d phi: %2d", iEta, iPhi));
+    return kFALSE;
+  }
+  if (fFastOR2DMap[iEta][iPhi] == -1) 
+  {
+    AliError("Invalid index!");
+    return kFALSE;
+  }
+  id = fFastOR2DMap[iEta][iPhi];
+  return kTRUE;
 }
 
 //________________________________________________________________________________________________
@@ -1313,18 +1369,14 @@ Bool_t AliEMCALGeometry::GetFastORIndexFromCellIndex(const Int_t id, Int_t& idx)
 {
   //Trigger mapping method, from cell index get FastOR index 
 
-       Int_t iSupMod, nModule, nIphi, nIeta, iphim, ietam;
-       
-       Bool_t isOK = GetCellIndex( id, iSupMod, nModule, nIphi, nIeta );
-       
-       GetModulePhiEtaIndexInSModule( iSupMod, nModule, iphim, ietam );
-       
-       if (isOK && GetAbsFastORIndexFromPositionInSM(iSupMod, ietam, iphim, idx))
-       {
-               return kTRUE;
-       }
-       
-       return kFALSE;
+  Int_t iSupMod, nModule, nIphi, nIeta, iphim, ietam;
+  Bool_t isOK = GetCellIndex( id, iSupMod, nModule, nIphi, nIeta );
+  GetModulePhiEtaIndexInSModule( iSupMod, nModule, iphim, ietam );
+  if (isOK && GetAbsFastORIndexFromPositionInSM(iSupMod, ietam, iphim, idx))
+  {
+    return kTRUE;
+  }
+  return kFALSE;
 }
 
 //________________________________________________________________________________________________
@@ -1333,23 +1385,20 @@ Bool_t AliEMCALGeometry::GetCellIndexFromFastORIndex(const Int_t id, Int_t idx[4
   //Trigger mapping method, from FASTOR index get cell index 
 
   Int_t iSM=-1, iEta=-1, iPhi=-1;
-       if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
-       {
-               Int_t ix = 2 * iEta;
-               Int_t iy = 2 * iPhi;
-               
-               for (Int_t i=0; i<2; i++)
-               {
-                       for (Int_t j=0; j<2; j++)
-                       {
-                               idx[2*i+j] = GetAbsCellIdFromCellIndexes(iSM, iy + i, ix + j);
-                       }
-               }
-               
-               return kTRUE;
-       }
-       
-       return kFALSE;
+  if (GetPositionInSMFromAbsFastORIndex(id, iSM, iEta, iPhi))
+  {
+    Int_t ix = 2 * iEta;
+    Int_t iy = 2 * iPhi;
+    for (Int_t i=0; i<2; i++)
+    {
+      for (Int_t j=0; j<2; j++)
+      {
+        idx[2*i+j] = GetAbsCellIdFromCellIndexes(iSM, iy + i, ix + j);
+      }
+    }
+    return kTRUE;
+  }
+  return kFALSE;
 }
 
 //________________________________________________________________________________________________
@@ -1357,15 +1406,13 @@ Bool_t AliEMCALGeometry::GetTRUIndexFromSTUIndex(const Int_t id, Int_t& idx) con
 {
   //Trigger mapping method, from STU index get TRU index 
 
-       if (id > 31 || id < 0) 
-       {
-               AliError(Form("TRU index out of range: %d",id));
-               return kFALSE;
-       }
-       
-       idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
-       
-       return kTRUE;
+   idx = GetTRUIndexFromSTUIndex(id);
+   if (idx > GetNTotalTRU()-1 || idx < 0)
+   {
+     AliError(Form("TRU index out of range: %d",idx));
+     return kFALSE;
+   }
+   return kTRUE;
 }
 
 //________________________________________________________________________________________________
@@ -1373,93 +1420,173 @@ Int_t AliEMCALGeometry::GetTRUIndexFromSTUIndex(const Int_t id) const
 {
   //Trigger mapping method, from STU index get TRU index 
 
-       if (id > 31 || id < 0) 
-       {
-               AliError(Form("TRU index out of range: %d",id));
-       }
-       
-       Int_t idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
-       
-       return idx;
+  if (id > GetNTotalTRU()-1 || id < 0) 
+  {
+    AliError(Form("TRU index out of range: %d",id));
+  }
+
+  Int_t idx = 0;
+  if(id < 32){
+    idx = (id > 15) ? 2 * (31 - id) : 2 * (15 - id) + 1;
+  } else if(id >= 32){// DCAL
+    idx = (id > 32+3*fnSupModInDCAL/2-1) ? 2 * (GetNTotalTRU()-1 - id)+32 : 2 * (32+3*fnSupModInDCAL/2-1 - id) + 32+1;
+  }
+  return idx;
 }
 
 //________________________________________________________________________________________________
 void AliEMCALGeometry::BuildFastOR2DMap()
 {
-       // Needed by STU
-       for (Int_t i = 0; i < 32; i++)
-       {
-               for (Int_t j = 0; j < 24; j++)
-               {
-                       for (Int_t k = 0; k < 4; k++)
-                       {
-                               Int_t id;
-                               if (GetAbsFastORIndexFromPositionInTRU(i, j, k, id))
-                               {
-                                       Int_t x = j, y = k + 4 * int(i / 2);
-                               
-                                       if (i % 2) x += 24;
-                               
-                                       fFastOR2DMap[x][y] = id;
-                               }
-                       }                       
-               }
-       }
+  // Needed by STU
+
+  for (Int_t i = 0; i < GetNTotalTRU(); i++)
+  {
+    for (Int_t j = 0; j < 24; j++)
+    {
+      for (Int_t k = 0; k < 4; k++)
+      {
+        Int_t id;
+        if (GetAbsFastORIndexFromPositionInTRU(i, j, k, id))
+        {
+          Int_t x = j, y = k + 4 * int(i / 2);
+          if (i % 2) x += 24;
+          fFastOR2DMap[x][y] = id;
+        }
+      }                        
+    }
+  }
+}
+
+//________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::GetTRUIndexFromOnlineIndex(const Int_t id, Int_t& idx) const
+{
+  //Trigger mapping method, from STU index get TRU index 
+
+   idx = GetOnlineIndexFromTRUIndex(id);
+   if (idx > GetNTotalTRU()-1 || idx < 0)
+   {
+     AliError(Form("TRU index out of range: %d",idx));
+     return kFALSE;
+   }
+   return kTRUE;
+}
+
+//________________________________________________________________________________________________
+Int_t AliEMCALGeometry::GetTRUIndexFromOnlineIndex(const Int_t id) const
+{
+  //Trigger mapping method, from STU index get TRU index 
+       
+  if (id > GetNTotalTRU()-1 || id < 0) 
+  {
+    AliError(Form("TRU index out of range: %d",id));
+  }
+  if (id == 31) {
+    return 31;
+  }
+  if (fGeoName.Contains("DCAL_8SM") && id == 51) {
+    return 51;
+  }
+
+  //jump 4 TRUs for DCAL
+  Int_t tmp=0;
+  if(id > 31) tmp = id+4;
+  else        tmp = id;
+  Int_t idx = ((tmp% 6) < 3) ? 6 * int(tmp/ 6) + 2 * (tmp% 3) : 6 * int(tmp/ 6) + 2 * (2 - (tmp% 3)) + 1;
+  if(id > 31) idx-=4;
+  return idx;
+}
+
+//________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::GetOnlineIndexFromTRUIndex(const Int_t id, Int_t& idx) const
+{
+  //Trigger mapping method, from STU index get TRU index 
+    idx = GetOnlineIndexFromTRUIndex(id);
+    if (idx > GetNTotalTRU()-1 || idx < 0)
+   {
+     AliError(Form("TRU index out of range: %d",idx));
+     return kFALSE;
+   }
+   return kTRUE;
+}
+//________________________________________________________________________________________________
+Int_t AliEMCALGeometry::GetOnlineIndexFromTRUIndex(const Int_t id) const
+{
+  //Trigger mapping method, from STU index get TRU index 
+       
+  if (id > GetNTotalTRU()-1 || id < 0) 
+  {
+    AliError(Form("TRU index out of range: %d",id));
+  }
+  if (id == 31) {
+    return 31;
+  }
+  if (fGeoName.Contains("DCAL_8SM") && id == 51) {
+    return 51;
+  }
+
+  //jump 4 TRUs for DCAL
+  Int_t tmp=0;
+  if(id > 31) tmp = id+4;
+  else        tmp = id;
+  Int_t idx = (tmp % 2) ? int((6 - (tmp % 6)) / 2) + 3 * (2 * int(tmp / 6) + 1) : 3 * int(tmp / 6) + int(tmp / 2);
+  if(id > 31) idx-=4;
+  return idx;
 }
 
 //________________________________________________________________________________________________
 Bool_t AliEMCALGeometry::GetFastORIndexFromL0Index(const Int_t iTRU, const Int_t id, Int_t idx[], const Int_t size) const
 {
   //Trigger mapping method, from L0 index get FastOR index 
-       if (size <= 0 ||size > 4)
-       {
-               AliError("Size not supported!");
-               return kFALSE;
-       }
+
+  if (size <= 0 ||size > 4)
+  {
+    AliError("Size not supported!");
+    return kFALSE;
+  }
                
-       Int_t motif[4] = {0, 1, 4, 5};
-       
-       switch (size)
-       {
-               case 1: // Cosmic trigger
-                       if (!GetAbsFastORIndexFromTRU(iTRU, id, idx[1])) return kFALSE;
-                       break;
-               case 4: // 4 x 4
-                       for (Int_t k = 0; k < 4; k++)
-                       {
-                               Int_t iADC = motif[k] + 4 * int(id / 3) + (id % 3);
+  Int_t motif[4] = {0, 1, 4, 5};
+  switch (size)
+  {
+    case 1: // Cosmic trigger
+      if (!GetAbsFastORIndexFromTRU(iTRU, id, idx[1])) return kFALSE;
+      break;
+    case 4: // 4 x 4
+      for (Int_t k = 0; k < 4; k++)
+      {
+        Int_t iADC = motif[k] + 4 * int(id / 3) + (id % 3);
                                
-                               if (!GetAbsFastORIndexFromTRU(iTRU, iADC, idx[k])) return kFALSE;
-                       }
-                       break;
-               default:
-                       break;
-       }
+        if (!GetAbsFastORIndexFromTRU(iTRU, iADC, idx[k])) return kFALSE;
+      }
+      break;
+    default:
+      break;
+  }
        
-       return kTRUE;
+  return kTRUE;
 }
 
 //____________________________________________________________________________
-const TGeoHMatrix * AliEMCALGeometry::GetMatrixForSuperModule(Int_t smod) const {
-
-       //Provides shift-rotation matrix for EMCAL
+const TGeoHMatrix * AliEMCALGeometry::GetMatrixForSuperModule(Int_t smod) const 
+{
+  //Provides shift-rotation matrix for EMCAL
        
-       if(smod < 0 || smod > fEMCGeometry->GetNumberOfSuperModules()) 
-               AliFatal(Form("Wrong supermodule index -> %d",smod));
+  if(smod < 0 || smod > fEMCGeometry->GetNumberOfSuperModules()) 
+    AliFatal(Form("Wrong supermodule index -> %d",smod));
                
-       //If GeoManager exists, take matrixes from it
+  //If GeoManager exists, take matrixes from it
        
-       //
-       //    if(fKey110DEG && ind>=10) {
-       //    }
-       //
-       //    if(!gGeoManager->cd(volpath.Data()))
-       //      AliFatal(Form("AliEMCALGeometry::GeoManager cannot find path %s!",volpath.Data()));
-       //
-       //    TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
+  //
+  //    if(fKey110DEG && ind>=10) {
+  //    }
+  //
+  //    if(!gGeoManager->cd(volpath.Data()))
+  //      AliFatal(Form("AliEMCALGeometry::GeoManager cannot find path %s!",volpath.Data()));
+  //
+  //    TGeoHMatrix* m = gGeoManager->GetCurrentMatrix();
   
   //Use matrices set externally
-       if(!gGeoManager || (gGeoManager && fUseExternalMatrices)){
+  if(!gGeoManager || (gGeoManager && fUseExternalMatrices)){
     if(fkSModuleMatrix[smod]){
       return fkSModuleMatrix[smod] ;
     }
@@ -1469,35 +1596,45 @@ const TGeoHMatrix * AliEMCALGeometry::GetMatrixForSuperModule(Int_t smod) const
       printf("\t Either import TGeoManager from geometry.root or \n");
       printf("\t read stored matrixes from AliESD Header:  \n") ;   
       printf("\t AliEMCALGeometry::SetMisalMatrixes(header->GetEMCALMisalMatrix()) \n") ;
-      abort() ;
+      AliFatal("") ;
     }  
   }//external matrices
   
-       if(gGeoManager){
+  if(gGeoManager){
     const Int_t buffersize = 255;
-               char path[buffersize] ;
-               snprintf(path,buffersize,"/ALIC_1/XEN1_1/SMOD_%d",smod+1) ;
-               //TString volpath = "ALIC_1/XEN1_1/SMOD_";
-           //volpath += smod+1;
-
-               if(fKey110DEG && smod >= 10){
-                         snprintf(path,buffersize,"/ALIC_1/XEN1_1/SM10_%d",smod-10+1) ;
-                       //volpath = "ALIC_1/XEN1_1/SM10_";
-                       //volpath += smod-10+1;
-               }
-               if (!gGeoManager->cd(path)){
-                       AliFatal(Form("Geo manager can not find path %s!\n",path));
-               }
-               return gGeoManager->GetCurrentMatrix();
-       }
-
-       return 0 ;
+    char path[buffersize] ;
+    TString SMName;
+    Int_t tmpType = -1;
+    Int_t SMOrder = 0;
+//Get the order for SM
+    for( Int_t i = 0; i < smod+1; i++){
+      if(GetSMType(i) == tmpType) {
+        SMOrder++;
+      } else {
+        tmpType = GetSMType(i);
+        SMOrder = 1;
+      }
+    } 
+
+    if(GetSMType(smod) == kEMCAL_Standard )      SMName = "SMOD";
+    else if(GetSMType(smod) == kEMCAL_Half )     SMName = "SM10";
+    else if(GetSMType(smod) == kEMCAL_3rd )      SMName = "SM3rd";
+    else if( GetSMType(smod) == kDCAL_Standard ) SMName = "DCSM";
+    else if( GetSMType(smod) == kDCAL_Ext )      SMName = "DCEXT";
+    else AliError("Unkown SM Type!!");
+    snprintf(path,buffersize,"/ALIC_1/XEN1_1/%s_%d", SMName.Data(), SMOrder) ;
+
+    if (!gGeoManager->cd(path)){
+      AliFatal(Form("Geo manager can not find path %s!\n",path));
+    }
+    return gGeoManager->GetCurrentMatrix();
+  }
+  return 0 ;
 }
 
 //______________________________________________________________________
 void AliEMCALGeometry::GetModulePhiEtaIndexInSModuleFromTRUIndex(Int_t itru, Int_t iphitru, Int_t ietatru, Int_t &iphiSM, Int_t &ietaSM) const 
 {
-  
   // This method transforms the (eta,phi) index of module in a 
   // TRU matrix into Super Module (eta,phi) index.
   
@@ -1509,20 +1646,18 @@ void AliEMCALGeometry::GetModulePhiEtaIndexInSModuleFromTRUIndex(Int_t itru, Int
    
   iphiSM = fEMCGeometry->GetNModulesInTRUPhi()*row + iphitru  ;
   ietaSM = fEMCGeometry->GetNModulesInTRUEta()*col + ietatru  ; 
-  //printf(" GetModulePhiEtaIndexInSModuleFromTRUIndex : itru %2i iphitru %2i ietatru %2i iphiSM %2i ietaSM %2i \n", 
-  // itru, iphitru, ietatru, iphiSM, ietaSM);
 }
 
 //__________________________________________________________________________________________________________________
 void AliEMCALGeometry::RecalculateTowerPosition(Float_t drow, Float_t dcol, const Int_t sm, const Float_t depth,
                                                 const Float_t misaligTransShifts[15], const Float_t misaligRotShifts[15], Float_t global[3]) const
-{ //Transform clusters cell position into global with alternative method, taking into account the depth calculation.
+{ 
+  //Transform clusters cell position into global with alternative method, taking into account the depth calculation.
   //Input are: the tower indeces, 
   //           supermodule, 
   //           particle type (photon 0, electron 1, hadron 2 )
   //           misalignment shifts to global position in case of need.
   // Federico.Ronchetti@cern.ch
-  
     
   // To use in a print later
   Float_t droworg = drow;
@@ -1557,7 +1692,7 @@ void AliEMCALGeometry::RecalculateTowerPosition(Float_t drow, Float_t dcol, cons
     Int_t istrip = 0;
     Float_t z0   = 0;
     Float_t zb   = 0;
-    Float_t z_is = 0;
+    Float_t zIs = 0;
     
     Float_t x,y,z; // return variables in terry's RF
     
@@ -1600,16 +1735,16 @@ void AliEMCALGeometry::RecalculateTowerPosition(Float_t drow, Float_t dcol, cons
       
       teta1 = TMath::DegToRad() * (is*1.5 + 0.75);
       if(is==0)
-        z_is = z_is + 2*dz*TMath::Cos(teta1);
+        zIs = zIs + 2*dz*TMath::Cos(teta1);
       else
-        z_is = z_is + 2*dz*TMath::Cos(teta1) + 2*dz*TMath::Sin(teta1)*TMath::Tan(teta1-0.75*TMath::DegToRad());
+        zIs = zIs + 2*dz*TMath::Cos(teta1) + 2*dz*TMath::Sin(teta1)*TMath::Tan(teta1-0.75*TMath::DegToRad());
       
     }
     
     z0 = dz*(dcol-2*istrip+0.5);
     zb = (2*dz-z0-depth*TMath::Tan(teta1));
     
-    z = z_is - zb*TMath::Cos(teta1);
+    z = zIs - zb*TMath::Cos(teta1);
     y = depth/TMath::Cos(teta1) + zb*TMath::Sin(teta1);
     
     x = (drow + 0.5)*dx;
@@ -1644,11 +1779,34 @@ void AliEMCALGeometry::RecalculateTowerPosition(Float_t drow, Float_t dcol, cons
       global[1] = dglobal[1] ;
       global[2] = dglobal[2] ;
     }
-    
-    
   }
   else{
     AliFatal("Geometry boxes information, check that geometry.root is loaded\n");
   }
-  
+}
+
+//__________________________________________________________________________________________________________________
+void AliEMCALGeometry::SetMisalMatrix(const TGeoHMatrix * m, Int_t smod) 
+{
+  // Method to set shift-rotational matrixes from ESDHeader
+  // Move from header due to coding violations : Dec 2,2011 by PAI
+  fUseExternalMatrices = kTRUE;
+
+  if (smod >= 0 && smod < fEMCGeometry->GetNumberOfSuperModules()){
+    if(!fkSModuleMatrix[smod]) fkSModuleMatrix[smod] = new TGeoHMatrix(*m) ; //Set only if not set yet
+  } else AliFatal(Form("Wrong supermodule index -> %d",smod));
+}
+
+//__________________________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::IsDCALSM(Int_t iSupMod) const
+{
+  if( fEMCSMSystem[iSupMod] == kDCAL_Standard || fEMCSMSystem[iSupMod] == kDCAL_Ext ) return kTRUE;
+  return kFALSE;
+}
+
+//__________________________________________________________________________________________________________________
+Bool_t AliEMCALGeometry::IsDCALExtSM(Int_t iSupMod) const
+{
+  if( fEMCSMSystem[iSupMod] == kDCAL_Ext ) return kTRUE;
+  return kFALSE;
 }