Skip to content

Commit

Permalink
fix full acceptance cut (AliceO2Group#1704)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimenorman authored Aug 28, 2024
1 parent fd832bd commit 1701ebe
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions MC/run/common/detector_acceptance.C
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ enum EDetectorAcceptance_t {
//
bool full(Float_t phi, Float_t eta)
{
if (phi > 0. &&
phi < 360. * TMath::DegToRad() &&
TMath::Abs(eta) < 1.5)
if (TMath::Abs(eta) < 1.5)
return true;
else
return false;
Expand Down

0 comments on commit 1701ebe

Please sign in to comment.