We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f4713 commit 3c36e42Copy full SHA for 3c36e42
PWGHF/HFC/Tasks/taskCharmHadronsFemtoDream.cxx
@@ -309,10 +309,10 @@ struct HfTaskCharmHadronsFemtoDream {
309
continue;
310
}
311
312
- constexpr int CUT_BIT_CHARGE_POSITIVE = 2;
+ constexpr int cutBitChargePositive = 2;
313
// proton track charge
314
float chargeTrack = 0.;
315
- if ((p1.cut() & CUT_BIT_CHARGE_POSITIVE) == CUT_BIT_CHARGE_POSITIVE) {
+ if ((p1.cut() & cutBitChargePositive) == cutBitChargePositive) {
316
chargeTrack = PositiveCharge;
317
} else {
318
chargeTrack = NegativeCharge;
0 commit comments