Skip to content
Merged
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
5 changes: 2 additions & 3 deletions PWGHF/Utils/utilsMcMatching.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ static const std::unordered_map<DecayChannelResonant, const std::array<int, 2>>
// cd+

static const std::unordered_map<DecayChannelMain, const std::vector<int>> daughtersCDeuteronMain{
{DecayChannelMain::CDeuteronToDeKPi, {+o2::constants::physics::Pdg::kDeuteron, +PDG_t::kKMinus, +PDG_t::kPiPlus}}
};
{DecayChannelMain::CDeuteronToDeKPi, {+o2::constants::physics::Pdg::kDeuteron, +PDG_t::kKMinus, +PDG_t::kPiPlus}}};

/// resonances in c-deuteron decay are not stored in the particle stack for c-deuteron, but tagged with specific status codes
static constexpr int statusCodeCDeuteronToDeKstar0{95};
Expand Down Expand Up @@ -337,7 +336,7 @@ inline void flipPdgSign(const int pdgMother, const int pdgToFlip, std::array<int
/// \param pdgToFlip PDG code to be flipped
/// \param arrPdg array of PDG codes to be modified
template <typename Part>
inline int getResonantDecayCDeuteron(Part const& particle)
inline int getResonantDecayCDeuteron(Part const& particle)
{
auto statusCode = std::abs(particle.getGenStatusCode());
if (statusCode == o2::hf_decay::hf_cand_3prong::statusCodeCDeuteronToDeKstar0) {
Expand Down
Loading