Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions PWGHF/TableProducer/treeCreatorLcToPKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -546,13 +546,12 @@ struct HfTreeCreatorLcToPKPi {
template <int ReconstructionType>
void reserveTables(size_t candidatesSize, bool isMc)
{
if constexpr (ReconstructionType == aod::hf_cand::VertexerType::DCAFitter) {
if (fillCandidateLiteTable) {
rowCandidateLite.reserve(candidatesSize * 2);
} else {
rowCandidateFull.reserve(candidatesSize * 2);
}
if (fillCandidateLiteTable) {
rowCandidateLite.reserve(candidatesSize * 2);
} else {
rowCandidateFull.reserve(candidatesSize * 2);
}
if constexpr (ReconstructionType == aod::hf_cand::VertexerType::KfParticle) {
rowCandidateKF.reserve(candidatesSize * 2);
}
if (fillCollIdTable) {
Expand Down
Loading