Skip to content

Commit b9a20b4

Browse files
authored
Use UpperCamelCase for names of constexpr constants.
Use UpperCamelCase for names of constexpr constants.
1 parent 3c36e42 commit b9a20b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/HFC/Tasks/taskCharmHadronsFemtoDream.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ struct HfTaskCharmHadronsFemtoDream {
309309
continue;
310310
}
311311

312-
constexpr int cutBitChargePositive = 2;
312+
constexpr int CutBitChargePositive = 2;
313313
// proton track charge
314314
float chargeTrack = 0.;
315-
if ((p1.cut() & cutBitChargePositive) == cutBitChargePositive) {
315+
if ((p1.cut() & CutBitChargePositive) == CutBitChargePositive) {
316316
chargeTrack = PositiveCharge;
317317
} else {
318318
chargeTrack = NegativeCharge;

0 commit comments

Comments
 (0)