Skip to content

Commit

Permalink
fix full acceptance cut (#1704)
Browse files Browse the repository at this point in the history
(cherry picked from commit 1701ebe)
  • Loading branch information
jaimenorman authored and alcaliva committed Aug 29, 2024
1 parent 6bd4904 commit cbba260
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 cbba260

Please sign in to comment.