Skip to content

Commit

Permalink
Merge pull request alisw#313 from gconesab/master
Browse files Browse the repository at this point in the history
consider 1/3 DCal SM case when applying the border fiducial cut
  • Loading branch information
alibuild authored Jul 5, 2017
2 parents 7ccd438 + 6d5fd1c commit 71b3073
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EMCAL/EMCALUtils/AliEMCALRecoUtils.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,8 @@ Bool_t AliEMCALRecoUtils::CheckCellFiducialRegion(const AliEMCALGeometry* geom,
Int_t iPhiLast = 24;
if ( geom->GetSMType(iSM) == AliEMCALGeometry::kEMCAL_Half ) iPhiLast /= 2;
else if ( geom->GetSMType(iSM) == AliEMCALGeometry::kEMCAL_3rd ) iPhiLast /= 3;// 1/3 sm case

else if ( geom->GetSMType(iSM) == AliEMCALGeometry::kDCAL_Ext ) iPhiLast /= 3;// 1/3 sm case

if(iphi >= fNCellsFromEMCALBorder && iphi < iPhiLast - fNCellsFromEMCALBorder) okrow = kTRUE;

// Check columns/eta
Expand Down

0 comments on commit 71b3073

Please sign in to comment.