@@ -1534,9 +1534,9 @@ struct HfTaskCharmPolarisation {
15341534 if constexpr (withEP) {
15351535 assert (qVecs && " EP analysis requested but qVecs == nullptr" );
15361536 }
1537- if constexpr (withMl) {
1538- constexpr std::size_t NScores{3u };
1539- }
1537+
1538+ constexpr std::size_t NScores{3u };
1539+
15401540 bool isCandidateInSignalRegion{false };
15411541 int8_t origin{RecoDecay::OriginType::None};
15421542 int8_t massHypoMcTruth{-1 };
@@ -2329,7 +2329,7 @@ struct HfTaskCharmPolarisation {
23292329 auto groupedDstarCandidates = dstarCandidates.sliceBy (dstarPerCollision, thisCollId);
23302330 int nCands{0 }, nCandsInSignalRegion{0 };
23312331
2332- std::vector<float > qVecs = getQvec (collision);
2332+ std::vector<float > qVecs = getQVec (collision);
23332333
23342334 for (const auto & dstarCandidate : groupedDstarCandidates) {
23352335 nCands++;
@@ -2355,7 +2355,7 @@ struct HfTaskCharmPolarisation {
23552355 auto groupedDstarCandidates = dstarCandidates.sliceBy (dstarWithMlPerCollision, thisCollId);
23562356 int nCands{0 }, nCandsInSignalRegion{0 };
23572357
2358- std::vector<float > qVecs = getQvec (collision);
2358+ std::vector<float > qVecs = getQVec (collision);
23592359
23602360 for (const auto & dstarCandidate : groupedDstarCandidates) {
23612361 nCands++;
@@ -2380,7 +2380,7 @@ struct HfTaskCharmPolarisation {
23802380 }
23812381 int numPvContributorsGen{0 };
23822382
2383- std::vector<float > qVecs = getQvec (collision);
2383+ std::vector<float > qVecs = getQVec (collision);
23842384
23852385 for (const auto & collision : collisions) { // loop over reco collisions associated to this gen collision
23862386 auto thisCollId = collision.globalIndex ();
@@ -2419,7 +2419,7 @@ struct HfTaskCharmPolarisation {
24192419 }
24202420 int numPvContributorsGen{0 };
24212421
2422- std::vector<float > qVecs = getQvec (collision);
2422+ std::vector<float > qVecs = getQVec (collision);
24232423
24242424 for (const auto & collision : collisions) { // loop over reco collisions associated to this gen collision
24252425 auto thisCollId = collision.globalIndex ();
0 commit comments