We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed77090 commit e08584bCopy full SHA for e08584b
1 file changed
PWGHF/TableProducer/treeCreatorLcToPKPi.cxx
@@ -546,13 +546,12 @@ struct HfTreeCreatorLcToPKPi {
546
template <int ReconstructionType>
547
void reserveTables(size_t candidatesSize, bool isMc)
548
{
549
- if constexpr (ReconstructionType == aod::hf_cand::VertexerType::DCAFitter) {
550
- if (fillCandidateLiteTable) {
551
- rowCandidateLite.reserve(candidatesSize * 2);
552
- } else {
553
- rowCandidateFull.reserve(candidatesSize * 2);
554
- }
+ if (fillCandidateLiteTable) {
+ rowCandidateLite.reserve(candidatesSize * 2);
555
} else {
+ rowCandidateFull.reserve(candidatesSize * 2);
+ }
+ if constexpr (ReconstructionType == aod::hf_cand::VertexerType::KfParticle) {
556
rowCandidateKF.reserve(candidatesSize * 2);
557
}
558
if (fillCollIdTable) {
0 commit comments