Version: SMASH-1.5
smash::TwoBodyDecaySemistable Class Reference

#include <decaytype.h>

TwoBodyDecaySemistable represents a decay type with two final-state particles, one of which is stable and the other is unstable.

Definition at line 154 of file decaytype.h.

Inheritance diagram for smash::TwoBodyDecaySemistable:
[legend]
Collaboration diagram for smash::TwoBodyDecaySemistable:
[legend]

Public Member Functions

 TwoBodyDecaySemistable (ParticleTypePtrList part_types, int l)
 Construct a TwoBodyDecaySemistable. More...
 
double width (double m0, double G0, double m) const override
 
double in_width (double m0, double G0, double m, double m1, double m2) const override
 
- Public Member Functions inherited from smash::TwoBodyDecay
 TwoBodyDecay (ParticleTypePtrList part_types, int l)
 Construct a TwoBodyDecay. More...
 
unsigned int particle_number () const override
 
bool has_particles (ParticleTypePtrList list) const override
 
double threshold () const
 
- Public Member Functions inherited from smash::DecayType
 DecayType (ParticleTypePtrList part_types, int l)
 Construct a DecayType. More...
 
virtual ~DecayType ()=default
 Virtual Destructor. More...
 
virtual bool has_mother (ParticleTypePtr mother) const
 
const ParticleTypePtrList & particle_types () const
 
int angular_momentum () const
 

Protected Member Functions

double rho (double m) const override
 This is a virtual helper method which is used to write the width as Gamma(m) = Gamma_0 * rho(m) / rho(m_0). More...
 
double get_Lambda ()
 

Protected Attributes

double Lambda_
 Cut-off parameter Λ for semi-stable decays. More...
 
std::unique_ptr< Tabulationtabulation_
 Tabulation of the resonance integrals. More...
 
- Protected Attributes inherited from smash::DecayType
ParticleTypePtrList particle_types_
 final-state particles of the decay More...
 
int L_
 angular momentum of the decay More...
 

Constructor & Destructor Documentation

◆ TwoBodyDecaySemistable()

smash::TwoBodyDecaySemistable::TwoBodyDecaySemistable ( ParticleTypePtrList  part_types,
int  l 
)

Construct a TwoBodyDecaySemistable.

Parameters
[in]part_typesFinal-state particles of the decay.
[in]lAngular momentum of the decay.
Returns
The constructed object.

Definition at line 127 of file decaytype.cc.

129  : TwoBodyDecay(arrange_particles(part_types), l),
130  Lambda_(get_Lambda()),
131  tabulation_(nullptr) {}
TwoBodyDecay(ParticleTypePtrList part_types, int l)
Construct a TwoBodyDecay.
Definition: decaytype.cc:55
std::unique_ptr< Tabulation > tabulation_
Tabulation of the resonance integrals.
Definition: decaytype.h:191
double Lambda_
Cut-off parameter Λ for semi-stable decays.
Definition: decaytype.h:188
static ParticleTypePtrList & arrange_particles(ParticleTypePtrList &part_types)
Rearrange the particle list such that the first particle is the stable one.
Definition: decaytype.cc:113

Member Function Documentation

◆ width()

double smash::TwoBodyDecaySemistable::width ( double  m0,
double  G0,
double  m 
) const
overridevirtual
Returns
the mass-dependent width of the decay.
Parameters
[in]m0Pole mass of the decaying particle [GeV].
[in]G0Partial width at the pole mass [GeV].
[in]mActual mass of the decaying particle [GeV].

Implements smash::DecayType.

Definition at line 169 of file decaytype.cc.

169  {
170  assert(rho(m0) != 0);
171  return G0 * rho(m) / rho(m0) * post_ff_sqr(m, m0, threshold(), Lambda_);
172 }
double Lambda_
Cut-off parameter Λ for semi-stable decays.
Definition: decaytype.h:188
double rho(double m) const override
This is a virtual helper method which is used to write the width as Gamma(m) = Gamma_0 * rho(m) / rho...
Definition: decaytype.cc:149
double post_ff_sqr(double m, double M0, double srts0, double L)
An additional form factor for unstable final states as used in GiBUU, according to M...
Definition: formfactors.h:75
double threshold() const
Definition: decaytype.h:105
Here is the call graph for this function:

◆ in_width()

double smash::TwoBodyDecaySemistable::in_width ( double  m0,
double  G0,
double  m,
double  m1,
double  m2 
) const
overridevirtual
Returns
The mass-dependent in-width for a resonance formation process.
Parameters
[in]m0Pole mass of the produced resonance [GeV].
[in]G0Partial width at the pole mass [GeV].
[in]mActual mass of the produced resonance [GeV].
[in]m1Actual mass of the first incoming particle [GeV].
[in]m2Actual mass of the second incoming particle [GeV].

Implements smash::DecayType.

Definition at line 174 of file decaytype.cc.

175  {
176  assert(rho(m0) != 0);
177  const double p_f = pCM(m, m1, m2);
178 
179  return G0 * p_f * blatt_weisskopf_sqr(p_f, L_) *
180  post_ff_sqr(m, m0, threshold(), Lambda_) / (m * rho(m0));
181 }
int L_
angular momentum of the decay
Definition: decaytype.h:86
double blatt_weisskopf_sqr(const double p_ab, const int L)
Definition: formfactors.h:33
double Lambda_
Cut-off parameter Λ for semi-stable decays.
Definition: decaytype.h:188
double rho(double m) const override
This is a virtual helper method which is used to write the width as Gamma(m) = Gamma_0 * rho(m) / rho...
Definition: decaytype.cc:149
double post_ff_sqr(double m, double M0, double srts0, double L)
An additional form factor for unstable final states as used in GiBUU, according to M...
Definition: formfactors.h:75
T pCM(const T sqrts, const T mass_a, const T mass_b) noexcept
Definition: kinematics.h:79
double threshold() const
Definition: decaytype.h:105
Here is the call graph for this function:

◆ rho()

double smash::TwoBodyDecaySemistable::rho ( double  mass) const
overrideprotectedvirtual

This is a virtual helper method which is used to write the width as Gamma(m) = Gamma_0 * rho(m) / rho(m_0).

This ensures that the width is properly normalized at the pole mass to Gamma(m_0) = Gamma_0. By default rho simply equals one, which corresponds to a constant width.

Parameters
[in]massResonance mass of the decay.
Returns
Width of the decay at the given mass.

Reimplemented from smash::TwoBodyDecay.

Definition at line 149 of file decaytype.cc.

149  {
150  if (tabulation_ == nullptr) {
151  /* TODO(weil): Move this lazy init to a global initialization function,
152  * in order to avoid race conditions in multi-threading. */
153  const ParticleTypePtr res = particle_types_[1];
154  const double tabulation_interval = std::max(2., 10. * res->width_at_pole());
155  const double m_stable = particle_types_[0]->mass();
156  const double mres_min = res->min_mass_kinematic();
157 
158  tabulation_ = make_unique<Tabulation>(
159  threshold(), tabulation_interval, num_tab_pts, [&](double sqrts) {
160  const double mres_max = sqrts - m_stable;
161  return integrate(mres_min, mres_max, [&](double m) {
162  return integrand_rho_Manley_1res(sqrts, m, m_stable, res, L_);
163  });
164  });
165  }
166  return tabulation_->get_value_linear(mass);
167 }
ParticleTypePtrList particle_types_
final-state particles of the decay
Definition: decaytype.h:84
int L_
angular momentum of the decay
Definition: decaytype.h:86
constexpr int num_tab_pts
Definition: decaytype.cc:146
std::unique_ptr< Tabulation > tabulation_
Tabulation of the resonance integrals.
Definition: decaytype.h:191
static double integrand_rho_Manley_1res(double sqrts, double mass, double stable_mass, ParticleTypePtr type, int L)
Definition: decaytype.cc:25
static Integrator integrate
Definition: decaytype.cc:147
double threshold() const
Definition: decaytype.h:105
Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_Lambda()

double smash::TwoBodyDecaySemistable::get_Lambda ( )
protected
Returns
the cutoff parameter Λ for semi-stable decays, given the types of the daughter particles.

For the values used in GiBUU, see Buss:2011mx, eq. (175). For the original values used by M. Post, see table 1 in Post:2003hu.

We mostly stick to the GiBUU values, but use a different value for the ρπ decay, in order to avoid secondary bumps in the ω spectral function and achieve a better normalization. In contrast to smash, GiBUU does not have an ω → ρ π decay.

Definition at line 133 of file decaytype.cc.

133  {
134  // "semi-stable" decays (first daughter is stable and second one unstable)
135  if (particle_types_[1]->baryon_number() != 0) {
136  return 2.; // unstable baryons
137  } else if (particle_types_[1]->pdgcode().is_rho() &&
138  particle_types_[0]->pdgcode().is_pion()) {
139  return 0.8; // ρ+π
140  } else {
141  return 1.6; // other unstable mesons
142  }
143 }
ParticleTypePtrList particle_types_
final-state particles of the decay
Definition: decaytype.h:84

Member Data Documentation

◆ Lambda_

double smash::TwoBodyDecaySemistable::Lambda_
protected

Cut-off parameter Λ for semi-stable decays.

Definition at line 188 of file decaytype.h.

◆ tabulation_

std::unique_ptr<Tabulation> smash::TwoBodyDecaySemistable::tabulation_
mutableprotected

Tabulation of the resonance integrals.

Definition at line 191 of file decaytype.h.


The documentation for this class was generated from the following files: