@@ -428,17 +428,17 @@ struct StrangenessInJets {
428428 return false ;
429429
430430 // Constants for identifying heavy-flavor (charm and bottom) content from PDG codes
431- static constexpr int kCharmQuark = 4 ;
432- static constexpr int kBottomQuark = 5 ;
433- static constexpr int hundreds = 100 ;
434- static constexpr int thousands = 1000 ;
431+ static constexpr int CharmQuark = 4 ;
432+ static constexpr int BottomQuark = 5 ;
433+ static constexpr int Hundreds = 100 ;
434+ static constexpr int Thousands = 1000 ;
435435
436436 // Check if particle is from heavy-flavor decay
437437 bool fromHF = false ;
438438 if (particle.has_mothers ()) {
439439 auto mother = mcParticles.iteratorAt (particle.mothersIds ()[0 ]);
440440 int motherPdg = std::abs (mother.pdgCode ());
441- fromHF = (motherPdg / hundreds == kCharmQuark || motherPdg / hundreds == kBottomQuark || motherPdg / thousands == kCharmQuark || motherPdg / thousands == kBottomQuark );
441+ fromHF = (motherPdg / Hundreds == CharmQuark || motherPdg / Hundreds == BottomQuark || motherPdg / Thousands == CharmQuark || motherPdg / Thousands == BottomQuark );
442442 }
443443
444444 // Select only physical primary particles or from heavy-flavor
@@ -1255,8 +1255,8 @@ struct StrangenessInJets {
12551255 continue ;
12561256
12571257 // Build 4-momentum assuming charged pion mass
1258- static constexpr float kMassPionChargedSquared = o2::constants::physics::MassPionCharged * o2::constants::physics::MassPionCharged;
1259- const double energy = std::sqrt (particle.p () * particle.p () + kMassPionChargedSquared );
1258+ static constexpr float MassPionChargedSquared = o2::constants::physics::MassPionCharged * o2::constants::physics::MassPionCharged;
1259+ const double energy = std::sqrt (particle.p () * particle.p () + MassPionChargedSquared );
12601260 fastjet::PseudoJet fourMomentum (particle.px (), particle.py (), particle.pz (), energy);
12611261 fourMomentum.set_user_index (particle.pdgCode ());
12621262 fjParticles.emplace_back (fourMomentum);
0 commit comments