Skip to content

Commit ee75668

Browse files
authored
Fixed TPC eta acceptance magic number
1 parent 945f47e commit ee75668

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1751,7 +1751,7 @@ struct FlowDecorrelation {
17511751
// loop over all TPC tracks
17521752
for (auto const& track2 : tracks2) {
17531753

1754-
if (std::abs(track2.eta()) > 0.9)
1754+
if (std::abs(track2.eta()) > tpcEtaAcceptance)
17551755
continue;
17561756

17571757
if (step >= CorrelationContainer::kCFStepTrackedOnlyPrim && !track2.isPhysicalPrimary())

0 commit comments

Comments
 (0)