Skip to content

Commit 196adb9

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

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-
1626-
if(cfgFilterLeptons && std::fabs(pdgCode) < 100) {
1625+
int minPDG = 100;
1626+
if(cfgFilterLeptons && std::fabs(pdgCode) < minPDG) {
16271627
continue;
16281628
}
16291629

0 commit comments

Comments
 (0)