Add nodes for all decays possible from the given node and all of its children.
877 uint32_t n_unstable = 0;
878 double sqrts_minus_masses = sqrts;
879 for (
const ParticleTypePtr ptype : node.state_) {
880 if (!ptype->is_stable()) {
883 sqrts_minus_masses -= ptype->mass();
886 n_unstable != 0 ? 1. /
static_cast<double>(n_unstable) : 1.;
888 for (
const ParticleTypePtr ptype : node.state_) {
889 if (!ptype->is_stable()) {
890 const double sqrts_decay = sqrts_minus_masses + ptype->mass();
891 bool can_decay =
false;
892 for (
const auto& decay : ptype->decay_modes().decay_mode_list()) {
896 double final_state_mass = 0.;
897 for (
const auto&
p : decay->particle_types()) {
898 final_state_mass +=
p->mass();
900 if (final_state_mass > sqrts_decay) {
905 ParticleTypePtrList parts;
907 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.