]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALFast.cxx
Added AliEMCALReconstructioner
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALFast.cxx
index b67fb16d85943b415ccc72eec7cb8b9ca7f65ef7..4ac26c4b1505158eabbd26cda60a2129f64955cd 100644 (file)
 
 
 /* $Id$ */
-
+//____________________________________________________________________________
+//*-- 
 //*-- Author: Andreas Morsch (CERN)
+//*--
+//*--
+////////////////////////////////////////////////////////////////////////////
 
 #include "TMath.h"
 #include <TRandom.h>
@@ -84,8 +88,8 @@ Bool_t AliEMCALFast::EmcalAcceptance(Float_t eta, Float_t phi)
 // EMCAL eta-phi acceptance
     Bool_t acc = kFALSE;
     if (TMath::Abs(eta) < 0.7 &&
-       phi > 0. &&
-       phi < 120.*TMath::Pi()/180.)
+       phi > 60.*TMath::Pi()/180. &&
+       phi < TMath::Pi())
        acc = kTRUE;
     return acc;
 }