Skip to content

Commit e981b85

Browse files
authored
PW
1 parent 93a772f commit e981b85

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGHF/HFC/TableProducer/correlatorLcScHadrons.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -914,11 +914,11 @@ struct HfCorrelatorLcScHadrons {
914914
registry.fill(HIST("hPtCandVsChargeMcGenNonPrompt"), particle.pt(), chargeLc);
915915
}
916916

917-
static constexpr size_t NDaughtersSc{4u};
918-
static constexpr size_t NDaughtersLc{3u};
917+
static constexpr std::size_t NDaughtersSc{4u};
918+
static constexpr std::size_t NDaughtersLc{3u};
919919
std::vector<int> listDaughters{};
920920
listDaughters.clear();
921-
const size_t expectedDaughters = isCandSc ? 4 : 3;
921+
const std::size_t nDaughtersExpected = isCandSc ? 4 : 3;
922922

923923
if (isCandSc) {
924924
if (massCand == o2::constants::physics::MassSigmaC0 || massCand == o2::constants::physics::MassSigmaCStar0) {
@@ -934,8 +934,8 @@ struct HfCorrelatorLcScHadrons {
934934
}
935935

936936
int counterDaughters = 0;
937-
std::vector<int> prongsId(expectedDaughters);
938-
if (listDaughters.size() == expectedDaughters) {
937+
std::vector<int> prongsId(nDaughtersExpected);
938+
if (listDaughters.size() == nDaughtersExpected) {
939939
for (const auto& dauIdx : listDaughters) {
940940
auto daughI = mcParticles.rawIteratorAt(dauIdx - mcParticles.offset());
941941
counterDaughters += 1;

0 commit comments

Comments
 (0)