Version: SMASH-3.2
smash::decaytree Namespace Reference

Classes

struct  Node
 Node of a decay tree, representing a possible action (2-to-2 or 1-to-2). More...
 

Functions

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. More...
 
static void add_decays (Node &node, double sqrts)
 Add nodes for all decays possible from the given node and all of its children. More...
 

Function Documentation

◆ make_decay_name()

static std::string smash::decaytree::make_decay_name ( const std::string &  res_name,
const DecayBranchPtr &  decay,
ParticleTypePtrList &  final_state 
)
static

Generate name for decay and update final state.

Parameters
[in]res_nameName of resonance.
[in]decayDecay branch.
[out]final_stateFinal state of decay.
Returns
Name of decay.

Definition at line 846 of file scatteractionsfinder.cc.

848  {
849  std::stringstream name;
850  name << "[" << res_name << "->";
851  for (const auto& p : decay->particle_types()) {
852  name << p->name();
853  final_state.push_back(p);
854  }
855  name << "]";
856  return name.str();
857 }
constexpr int p
Proton.

◆ add_decays()

static void smash::decaytree::add_decays ( Node node,
double  sqrts 
)
static

Add nodes for all decays possible from the given node and all of its children.

Parameters
nodeStarting node.
[in]sqrtscenter-of-mass energy.

Definition at line 866 of file scatteractionsfinder.cc.

866  {
867  // If there is more than one unstable particle in the current state, then
868  // there will be redundant paths in the decay tree, corresponding to
869  // reorderings of the decays. To avoid double counting, we normalize by the
870  // number of possible decay orderings. Normalizing by the number of unstable
871  // particles recursively corresponds to normalizing by the factorial that
872  // gives the number of reorderings.
873  //
874  // Ideally, the redundant paths should never be added to the decay tree, but
875  // we never have more than two redundant paths, so it probably does not
876  // matter much.
877  uint32_t n_unstable = 0;
878  double sqrts_minus_masses = sqrts;
879  for (const ParticleTypePtr ptype : node.state_) {
880  if (!ptype->is_stable()) {
881  n_unstable += 1;
882  }
883  sqrts_minus_masses -= ptype->mass();
884  }
885  const double norm =
886  n_unstable != 0 ? 1. / static_cast<double>(n_unstable) : 1.;
887 
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()) {
893  // Make sure to skip kinematically impossible decays.
894  // In principle, we would have to integrate over the mass of the
895  // resonance, but as an approximation we just assume it at its pole.
896  double final_state_mass = 0.;
897  for (const auto& p : decay->particle_types()) {
898  final_state_mass += p->mass();
899  }
900  if (final_state_mass > sqrts_decay) {
901  continue;
902  }
903  can_decay = true;
904 
905  ParticleTypePtrList parts;
906  const auto name = make_decay_name(ptype->name(), decay, parts);
907  auto& new_node = node.add_action(name, norm * decay->weight(), {ptype},
908  std::move(parts));
909  add_decays(new_node, sqrts_decay);
910  }
911  if (!can_decay) {
912  // Remove final-state cross sections with resonances that cannot
913  // decay due to our "mass = pole mass" approximation.
914  node.weight_ = 0;
915  return;
916  }
917  }
918  }
919 }
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.