Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion PWGHF/TableProducer/treeCreatorD0ToKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ struct HfTreeCreatorD0ToKPi {

template <bool ApplyMl, typename T>
auto fillTable(const T& candidate, int candFlag, double invMass, double topoChi2,
double ct, double y, double e, int8_t flagMc, int8_t flagMcDecay, int8_t origin, int8_t pdgBmother)
double ct, double y, double e, int8_t flagMc, int8_t flagMcDecay, int8_t origin, int pdgBmother)
{
if (fillCandidateLiteTable) {
rowCandidateLite(
Expand Down
2 changes: 1 addition & 1 deletion PWGHF/TableProducer/treeCreatorDplusToPiKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ struct HfTreeCreatorDplusToPiKPi {
int8_t flagMc = 0;
int8_t originMc = 0;
int8_t channelMc = 0;
int8_t bMotherPdg = 0;
int bMotherPdg = 0;
if constexpr (DoMc) {
flagMc = candidate.flagMcMatchRec();
originMc = candidate.originMcRec();
Expand Down
2 changes: 1 addition & 1 deletion PWGHF/TableProducer/treeCreatorDsToKKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ struct HfTreeCreatorDsToKKPi {
int8_t flagMc{0};
int8_t originMc{0};
int8_t channelMc{0};
int8_t bMotherPdg{0};
int bMotherPdg{0};
int8_t isSwapped{MassHypo}; // 0 if KKPi, 1 if PiKK
float eCand{0.f};
float ctCand{0.f};
Expand Down
Loading