File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments