Skip to content

Commit 7178387

Browse files
jaimenormanalcaliva
authored andcommitted
fix full acceptance cut (#1704)
(cherry picked from commit 1701ebe)
1 parent f678260 commit 7178387

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

MC/run/common/detector_acceptance.C

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ enum EDetectorAcceptance_t {
2626
//
2727
bool full(Float_t phi, Float_t eta)
2828
{
29-
if (phi > 0. &&
30-
phi < 360. * TMath::DegToRad() &&
31-
TMath::Abs(eta) < 1.5)
29+
if (TMath::Abs(eta) < 1.5)
3230
return true;
3331
else
3432
return false;

0 commit comments

Comments
 (0)