Skip to content

Commit f8f21f4

Browse files
committed
Clean up magic number
1 parent 196adb9 commit f8f21f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGCF/Flow/Tasks/flowSP.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,8 +1622,8 @@ struct FlowSP {
16221622
if (std::fabs(charge) < 1)
16231623
continue;
16241624

1625-
int minPDG = 100;
1626-
if(cfgFilterLeptons && std::fabs(pdgCode) < minPDG) {
1625+
int minVal = 100;
1626+
if(cfgFilterLeptons && std::fabs(pdgCode) < minVal) {
16271627
continue;
16281628
}
16291629

0 commit comments

Comments
 (0)