]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALFast.cxx
Logging message with AliLog
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALFast.cxx
index a8918ac6e921db07f2fac9c00202264efef0676f..4ac26c4b1505158eabbd26cda60a2129f64955cd 100644 (file)
  **************************************************************************/
 
 
-/*
-$Log$
-Revision 1.3.4.1  2003/07/07 14:13:31  schutz
-NewIO
-
-Revision 1.4  2002/12/18 08:25:31  morsch
-Correction in efficiency for p < 0.5.
-
-Revision 1.3  2002/02/05 11:32:15  morsch
-Smearing parameters with TRD included added.
-
-Revision 1.2  2002/01/18 03:27:12  morsch
-Acceptance and random rejection added.
-
-*/
-
-
+/* $Id$ */
+//____________________________________________________________________________
+//*-- 
 //*-- Author: Andreas Morsch (CERN)
+//*--
+//*--
+////////////////////////////////////////////////////////////////////////////
 
-#include "AliEMCALFast.h"
+#include "TMath.h"
 #include <TRandom.h>
 
+#include "AliEMCALFast.h"
+
 
 ClassImp(AliEMCALFast)
 
@@ -97,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;
 }