]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Moved coordinates
authormhorner <mhorner@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Dec 2003 11:31:07 +0000 (11:31 +0000)
committermhorner <mhorner@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Dec 2003 11:31:07 +0000 (11:31 +0000)
EMCAL/AliEMCALFast.cxx

index b67fb16d85943b415ccc72eec7cb8b9ca7f65ef7..918e70e6c6dab10b263ff1a743e0ec80fe782045 100644 (file)
@@ -84,8 +84,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;
 }