Add nodes for all decays possible from the given node and all of its children.
828 uint32_t n_unstable = 0;
829 double sqrts_minus_masses = sqrts;
830 for (
const ParticleTypePtr ptype : node.state_) {
831 if (!ptype->is_stable()) {
834 sqrts_minus_masses -= ptype->mass();
837 n_unstable != 0 ? 1. /
static_cast<double>(n_unstable) : 1.;
839 for (
const ParticleTypePtr ptype : node.state_) {
840 if (!ptype->is_stable()) {
841 const double sqrts_decay = sqrts_minus_masses + ptype->mass();
842 bool can_decay =
false;
843 for (
const auto& decay : ptype->decay_modes().decay_mode_list()) {
847 double final_state_mass = 0.;
848 for (
const auto&
p : decay->particle_types()) {
849 final_state_mass +=
p->mass();
851 if (final_state_mass > sqrts_decay) {
856 ParticleTypePtrList parts;
858 auto& new_node = node.add_action(name, norm * decay->weight(), {ptype},
static std::string make_decay_name(const std::string &res_name, const DecayBranchPtr &decay, ParticleTypePtrList &final_state)
Generate name for decay and update final state.
static void add_decays(Node &node, double sqrts)
Add nodes for all decays possible from the given node and all of its children.