]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALFast.cxx
Logging message with AliLog
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALFast.cxx
index ac9f4f2380cadce3ac05aaa60ca52c4d22cb3a92..4ac26c4b1505158eabbd26cda60a2129f64955cd 100644 (file)
 
 
 /* $Id$ */
-
+//____________________________________________________________________________
+//*-- 
 //*-- Author: Andreas Morsch (CERN)
+//*--
+//*--
+////////////////////////////////////////////////////////////////////////////
 
-#include "AliEMCALFast.h"
+#include "TMath.h"
 #include <TRandom.h>
 
+#include "AliEMCALFast.h"
+
 
 ClassImp(AliEMCALFast)
 
@@ -82,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;
 }