32 double spin_factor = (c.
spin() + 1) * (d.
spin() + 1);
33 spin_factor /= (a.
spin() + 1) * (b.
spin() + 1);
34 double symmetry_factor = (1 + (a == b));
35 symmetry_factor /= (1 + (c == d));
38 return spin_factor * symmetry_factor * momentum_factor;
54 double spin_factor = (c.
spin() + 1) * (d.
spin() + 1);
55 spin_factor /= (a.
spin() + 1) * (b.
spin() + 1);
56 double symmetry_factor = (1 + (a == b));
57 symmetry_factor /= (1 + (c == d));
58 const double momentum_factor =
61 return spin_factor * symmetry_factor * momentum_factor;
77 double spin_factor = (c.
spin() + 1) * (d.
spin() + 1);
78 spin_factor /= (a.
spin() + 1) * (b.
spin() + 1);
79 double symmetry_factor = (1 + (a == b));
80 symmetry_factor /= (1 + (c == d));
81 const double momentum_factor =
84 return spin_factor * symmetry_factor * momentum_factor;
92 CollisionBranchList in_list,
double weight = 1.) {
93 main_list.reserve(main_list.size() + in_list.size());
94 for (
auto& proc : in_list) {
95 proc->set_weight(proc->weight() * weight);
96 main_list.emplace_back(std::move(proc));
102 const std::pair<FourVector, FourVector> potentials)
103 : incoming_particles_(incoming_particles),
105 potentials_(potentials),
106 is_BBbar_pair_(incoming_particles_[0].type().is_baryon() &&
107 incoming_particles_[1].type().is_baryon() &&
108 incoming_particles_[0].type().antiparticle_sign() ==
109 -incoming_particles_[1].type().antiparticle_sign()),
111 incoming_particles_[0].type().is_nucleon() &&
112 incoming_particles_[1].pdgcode() ==
113 incoming_particles_[0].type().get_antiparticle()->pdgcode()) {}
118 CollisionBranchList process_list;
122 double p_pythia = 0.;
129 const bool reject_by_nucleon_elastic_cutoff =
135 if (incl_elastic && !reject_by_nucleon_elastic_cutoff) {
136 process_list.emplace_back(
elastic(finder_parameters));
142 const double sig_current =
sum_xs_of(process_list);
143 const double sig_string = std::max(
151 p_pythia * finder_parameters.
scale_xs);
157 (1. - p_pythia) * finder_parameters.
scale_xs);
165 (1. - p_pythia) * finder_parameters.
scale_xs);
167 if (finder_parameters
172 (1. - p_pythia) * finder_parameters.
scale_xs);
174 if (finder_parameters
179 (1. - p_pythia) * finder_parameters.
scale_xs);
208 double total_xs = 0.;
292 throw std::runtime_error(
"wrong isospin in ππ scattering");
307 double elastic_xs = 0.;
319 return std::make_unique<CollisionBranch>(
327 CollisionBranchList process_list;
330 const auto& pdg_a = data_a.
pdgcode();
331 const auto& pdg_b = data_b.
pdgcode();
332 if ((pdg_a.is_nucleon() && pdg_b.is_pion()) ||
333 (pdg_b.is_nucleon() && pdg_a.is_pion())) {
341 const bool use_AQM = finder_parameters.
use_AQM;
342 const double pipi_offset =
346 double elastic_xs = 0.0;
354 elastic_xs =
nk_el();
358 elastic_xs =
nn_el();
366 const bool is_deuteron = pdg_nucleus.
is_deuteron();
367 if (is_deuteron && pdg_other.
is_pion()) {
370 }
else if (is_deuteron && pdg_other.
is_nucleon()) {
374 }
else if (use_AQM) {
379 elastic_xs =
nn_el();
390 (m1 + m2 + pipi_offset) >
sqrt_s_) {
424 std::stringstream ss;
427 ss <<
"problem in CrossSections::elastic: a=" << name_a <<
" b=" << name_b
428 <<
" j_a=" << pdg_a.
spin() <<
" j_b=" << pdg_b.
spin()
429 <<
" sigma=" << sig_el <<
" s=" << s;
430 throw std::runtime_error(ss.str());
440 assert(pion != nucleon);
445 switch (nucleon.
code()) {
447 switch (pion.
code()) {
460 switch (pion.
code()) {
473 switch (pion.
code()) {
486 switch (pion.
code()) {
499 throw std::runtime_error(
500 "only the elastic cross section for proton-pion "
507 std::stringstream ss;
510 ss <<
"problem in CrossSections::elastic: a=" << name_a <<
" b=" << name_b
511 <<
" j_a=" << pdg_a.
spin() <<
" j_b=" << pdg_b.
spin()
512 <<
" sigma=" << sig_el <<
" s=" << s;
513 throw std::runtime_error(ss.str());
523 const auto pdg_nucleon = type_nucleon.
pdgcode().
code();
532 CollisionBranchList process_list;
533 switch (pdg_nucleon) {
541 sqrt_s_, type_K_p, type_Sigma_p);
552 sqrt_s_, type_K_p, type_Sigma_m);
555 type_K_z, type_Sigma_z);
558 type_K_z, type_Lambda);
574 sqrt_s_, type_K_p, type_Sigma_z);
577 type_K_z, type_Sigma_p);
580 sqrt_s_, type_K_p, type_Lambda);
596 sqrt_s_, type_K_z, type_Sigma_p);
599 type_K_p, type_Sigma_z);
602 type_K_p, type_Lambda);
610 sqrt_s_, type_K_z, type_Sigma_m);
626 sqrt_s_, type_K_z, type_Sigma_z);
629 type_K_p, type_Sigma_m);
632 sqrt_s_, type_K_z, type_Lambda);
648 sqrt_s_, type_K_m, type_Sigma_m_bar);
651 type_Kbar_z, type_Sigma_z_bar);
654 type_Kbar_z, type_Lambda_bar);
662 sqrt_s_, type_K_m, type_Sigma_p_bar);
678 sqrt_s_, type_K_m, type_Sigma_z_bar);
681 type_Kbar_z, type_Sigma_p_bar);
684 sqrt_s_, type_K_m, type_Lambda_bar);
697 sqrt_s_, type_Kbar_z, type_Sigma_m_bar);
708 sqrt_s_, type_Kbar_z, type_Sigma_p_bar);
711 type_K_m, type_Sigma_z_bar);
714 type_K_m, type_Lambda_bar);
730 sqrt_s_, type_Kbar_z, type_Sigma_z_bar);
733 type_K_m, type_Sigma_m_bar);
736 sqrt_s_, type_Kbar_z, type_Lambda_bar);
753 assert(kaon != nucleon);
758 switch (nucleon.
code()) {
760 switch (kaon.
code()) {
776 switch (kaon.
code()) {
792 switch (kaon.
code()) {
808 switch (kaon.
code()) {
824 throw std::runtime_error(
825 "elastic cross section for antinucleon-kaon "
832 std::stringstream ss;
835 ss <<
"problem in CrossSections::elastic: a=" << name_a <<
" b=" << name_b
836 <<
" j_a=" << pdg_a.
spin() <<
" j_b=" << pdg_b.
spin()
837 <<
" sigma=" << sig_el <<
" s=" << s;
838 throw std::runtime_error(ss.str());
843 CollisionBranchList resonance_process_list;
851 ParticleTypePtrList possible_resonances =
856 double resonance_xsection =
formation(*type_resonance, p_cm_sqr);
860 resonance_process_list.push_back(std::make_unique<CollisionBranch>(
864 "->", type_resonance->name(),
865 " at sqrt(s)[GeV] = ",
sqrt_s_,
866 " with xs[mb] = ", resonance_xsection);
869 return resonance_process_list;
873 double cm_momentum_sqr)
const {
880 if (partial_width <= 0.) {
884 assert(type_resonance.
charge() ==
890 const double spinfactor =
891 static_cast<double>(type_resonance.
spin() + 1) /
892 ((type_particle_a.
spin() + 1) * (type_particle_b.
spin() + 1));
893 const int sym_factor =
898 return spinfactor * sym_factor * 2. * M_PI * M_PI / cm_momentum_sqr *
905 CollisionBranchList process_list;
910 const auto& pdg_a = data_a.
pdgcode();
911 const auto& pdg_b = data_b.
pdgcode();
914 if (pdg_a.is_nucleon() && pdg_b.is_nucleon() &&
915 pdg_a.antiparticle_sign() == pdg_b.antiparticle_sign()) {
917 process_list =
nn_xx(included_2to2);
925 if ((pdg_a.is_nucleon() && pdg_b.is_kaon()) ||
926 (pdg_b.is_nucleon() && pdg_a.is_kaon())) {
928 process_list =
nk_xx(included_2to2, KN_offset);
929 }
else if ((pdg_a.is_hyperon() && pdg_b.is_pion()) ||
930 (pdg_b.is_hyperon() && pdg_a.is_pion())) {
932 process_list =
ypi_xx(included_2to2);
933 }
else if ((pdg_a.is_Delta() && pdg_b.is_kaon()) ||
934 (pdg_b.is_Delta() && pdg_a.is_kaon())) {
942 process_list =
dn_xx(included_2to2);
948 process_list =
dpi_xx(included_2to2);
955 CollisionBranchList process_list;
969 process_list.push_back(std::make_unique<CollisionBranch>(
977 process_list.push_back(std::make_unique<CollisionBranch>(
978 type_pi, type_anti_p, type_anti_n,
993 process_list.push_back(std::make_unique<CollisionBranch>(
1001 process_list.push_back(std::make_unique<CollisionBranch>(
1002 type_N, type_anti_p, type_anti_n,
1006 return process_list;
1010 CollisionBranchList process_list;
1029 ParticleTypePtrList components;
1030 components.reserve(3);
1032 for (
int i = 0; i < nucleus_pdg.
nucleus_p(); i++) {
1033 components.push_back(type_p);
1035 for (
int i = 0; i < nucleus_pdg.
nucleus_n(); i++) {
1036 components.push_back(type_n);
1038 for (
int i = 0; i < nucleus_pdg.
nucleus_ap(); i++) {
1039 components.push_back(type_anti_p);
1041 for (
int i = 0; i < nucleus_pdg.
nucleus_an(); i++) {
1042 components.push_back(type_anti_n);
1044 for (
int i = 0; i < nucleus_pdg.
nucleus_La(); i++) {
1045 components.push_back(type_la);
1047 for (
int i = 0; i < nucleus_pdg.
nucleus_aLa(); i++) {
1048 components.push_back(type_anti_la);
1050 if (
sqrt_s_ > type_catalyzer->
mass() + components[0]->mass() +
1051 components[1]->mass() + components[2]->mass()) {
1052 process_list.push_back(std::make_unique<CollisionBranch>(
1053 *type_catalyzer, *(components[0]), *(components[1]), *(components[2]),
1058 return process_list;
1062 const double x = pion_kinetic_energy;
1063 return x * (4.3 + 10.0 * x) / ((x - 0.16) * (x - 0.16) + 0.007);
1067 const double x = N_kinetic_energy;
1068 return x * (1.0 + 50 * x) / (x * x + 0.01) +
1069 4 * x / ((x - 0.008) * (x - 0.008) + 0.0004);
1073 return 55.0 / (aN_kinetic_energy + 0.17);
1082 type_nucleus = &type_b;
1083 type_catalyzer = &type_a;
1086 bool nonzero_xs = type_nucleus->
is_nucleus() &&
1087 (type_catalyzer->is_pion() || type_catalyzer->is_nucleon());
1092 const double md = type_nucleus->
mass(), mcat = type_catalyzer->mass();
1093 const double Tkin = (sqrts * sqrts - (md + mcat) * (md + mcat)) / (2.0 * md);
1100 if (type_catalyzer->is_pion()) {
1102 }
else if (type_catalyzer->is_nucleon()) {
1104 type_catalyzer->pdgcode().antiparticle_sign()) {
1120 type_nucleus = &type_b;
1121 type_catalyzer = &type_a;
1123 bool nonzero_xs = type_nucleus->
is_nucleus() &&
1124 (type_catalyzer->is_pion() || type_catalyzer->is_nucleon());
1129 const double mA = type_nucleus->
mass(), mcat = type_catalyzer->mass();
1130 const double Tkin = (sqrts * sqrts - (mA + mcat) * (mA + mcat)) / (2.0 * mA);
1133 if (A != 3 || Tkin <= 0.0) {
1137 if (type_catalyzer->is_pion()) {
1139 }
else if (type_catalyzer->is_nucleon()) {
1141 type_catalyzer->pdgcode().antiparticle_sign()) {
1154 CollisionBranchList process_list;
1160 if (!same_sign && !any_nucleus) {
1161 return process_list;
1176 return process_list;
1181 CollisionBranchList process_list, channel_list;
1187 bool both_antinucleons =
1190 const ParticleTypePtrList& nuc_or_anti_nuc =
1193 const ParticleTypePtrList& delta_or_anti_delta =
1203 process_list.reserve(process_list.size() + channel_list.size());
1204 std::move(channel_list.begin(), channel_list.end(),
1205 std::inserter(process_list, process_list.end()));
1206 channel_list.clear();
1218 process_list.reserve(process_list.size() + channel_list.size());
1219 std::move(channel_list.begin(), channel_list.end(),
1220 std::inserter(process_list, process_list.end()));
1221 channel_list.clear();
1231 if (
deuteron && antideutron && pim && pi0 && pip &&
1233 const ParticleTypePtrList deutron_list = {
deuteron};
1234 const ParticleTypePtrList antideutron_list = {antideutron};
1235 const ParticleTypePtrList pion_list = {pim, pi0, pip};
1237 (both_antinucleons ? antideutron_list : deutron_list), pion_list,
1240 return pCM(sqrts, type_res_1.
mass(), type_res_2.
mass());
1242 process_list.reserve(process_list.size() + channel_list.size());
1243 std::move(channel_list.begin(), channel_list.end(),
1244 std::inserter(process_list, process_list.end()));
1245 channel_list.clear();
1248 return process_list;
1252 const double KN_offset)
const {
1258 const auto pdg_nucleon = type_nucleon.
pdgcode().
code();
1271 const double KN_to_KDelta_cutoff = KN_offset +
1276 bool incl_KN_to_KDelta =
1278 sqrt_s_ < KN_to_KDelta_cutoff;
1279 bool incl_Strangeness_exchange =
1282 CollisionBranchList process_list;
1287 switch (pdg_nucleon) {
1289 if (incl_Strangeness_exchange) {
1299 sqrt_s_, type_pi_m, type_Sigma_p);
1302 sqrt_s_, type_pi_p, type_Sigma_m);
1305 sqrt_s_, type_pi_z, type_Sigma_z);
1308 sqrt_s_, type_pi_z, type_Lambda);
1310 if (incl_KN_to_KN) {
1315 type_Kbar_z, type_n);
1320 if (incl_Strangeness_exchange) {
1328 sqrt_s_, type_pi_m, type_Sigma_z);
1331 sqrt_s_, type_pi_z, type_Sigma_m);
1334 sqrt_s_, type_pi_m, type_Lambda);
1339 if (incl_KN_to_KDelta) {
1348 type_nucleon, type_kaon,
1349 type_Kbar_z, type_Delta_pp_bar);
1351 sqrt_s_, type_Kbar_z, type_Delta_pp_bar);
1356 type_nucleon, type_kaon, type_K_m,
1359 sqrt_s_, type_K_m, type_Delta_p_bar);
1364 if (incl_KN_to_KDelta) {
1373 type_nucleon, type_kaon,
1374 type_Kbar_z, type_Delta_p_bar);
1376 sqrt_s_, type_Kbar_z, type_Delta_p_bar);
1381 type_nucleon, type_kaon, type_K_m,
1384 sqrt_s_, type_K_m, type_Delta_z_bar);
1386 if (incl_KN_to_KN) {
1391 type_Kbar_z, type_p_bar);
1401 switch (pdg_nucleon) {
1403 if (incl_KN_to_KDelta) {
1411 return sigma_kplusp *
1413 type_K_z, type_Delta_pp);
1415 sqrt_s_, type_K_z, type_Delta_pp);
1419 return sigma_kplusp *
1421 type_K_p, type_Delta_p);
1423 sqrt_s_, type_K_p, type_Delta_p);
1428 if (incl_KN_to_KDelta) {
1436 return sigma_kplusn *
1438 type_K_z, type_Delta_p);
1440 sqrt_s_, type_K_z, type_Delta_p);
1444 return sigma_kplusn *
1446 type_K_p, type_Delta_z);
1448 sqrt_s_, type_K_p, type_Delta_z);
1450 if (incl_KN_to_KN) {
1460 if (incl_Strangeness_exchange) {
1470 sqrt_s_, type_pi_p, type_Sigma_p_bar);
1473 sqrt_s_, type_pi_m, type_Sigma_m_bar);
1476 sqrt_s_, type_pi_z, type_Sigma_z_bar);
1479 sqrt_s_, type_pi_z, type_Lambda_bar);
1481 if (incl_KN_to_KN) {
1486 type_K_z, type_n_bar);
1491 if (incl_Strangeness_exchange) {
1499 sqrt_s_, type_pi_p, type_Sigma_z_bar);
1502 sqrt_s_, type_pi_z, type_Sigma_m_bar);
1505 sqrt_s_, type_pi_p, type_Lambda_bar);
1518 switch (pdg_nucleon) {
1520 if (incl_KN_to_KDelta) {
1528 return sigma_kplusn *
1530 type_K_z, type_Delta_p);
1532 sqrt_s_, type_K_z, type_Delta_p);
1536 return sigma_kplusn *
1538 type_K_p, type_Delta_z);
1540 sqrt_s_, type_K_p, type_Delta_z);
1542 if (incl_KN_to_KN) {
1557 if (incl_KN_to_KDelta) {
1565 return sigma_kplusp *
1567 type_K_z, type_Delta_z);
1569 sqrt_s_, type_K_z, type_Delta_z);
1573 return sigma_kplusp *
1575 type_K_p, type_Delta_m);
1577 sqrt_s_, type_K_p, type_Delta_m);
1582 if (incl_Strangeness_exchange) {
1590 sqrt_s_, type_pi_m, type_Sigma_z_bar);
1593 sqrt_s_, type_pi_z, type_Sigma_p_bar);
1596 sqrt_s_, type_pi_m, type_Lambda_bar);
1601 if (incl_Strangeness_exchange) {
1611 sqrt_s_, type_pi_m, type_Sigma_m_bar);
1614 sqrt_s_, type_pi_p, type_Sigma_p_bar);
1617 sqrt_s_, type_pi_z, type_Sigma_z_bar);
1620 sqrt_s_, type_pi_z, type_Lambda_bar);
1622 if (incl_KN_to_KN) {
1627 type_K_p, type_p_bar);
1635 switch (pdg_nucleon) {
1637 if (incl_Strangeness_exchange) {
1645 sqrt_s_, type_pi_z, type_Sigma_p);
1648 sqrt_s_, type_pi_p, type_Sigma_z);
1651 sqrt_s_, type_pi_p, type_Lambda);
1656 if (incl_Strangeness_exchange) {
1666 sqrt_s_, type_pi_p, type_Sigma_m);
1669 sqrt_s_, type_pi_m, type_Sigma_p);
1672 sqrt_s_, type_pi_z, type_Sigma_z);
1675 sqrt_s_, type_pi_z, type_Lambda);
1677 if (incl_KN_to_KN) {
1687 if (incl_KN_to_KDelta) {
1689 const auto& type_Kbar_z = type_kaon;
1696 type_nucleon, type_kaon,
1697 type_Kbar_z, type_Delta_bar_m);
1699 sqrt_s_, type_Kbar_z, type_Delta_bar_m);
1704 type_nucleon, type_kaon, type_K_m,
1707 sqrt_s_, type_K_m, type_Delta_bar_z);
1709 if (incl_KN_to_KN) {
1719 sqrt_s_, type_K_m, type_n_bar);
1724 if (incl_KN_to_KDelta) {
1733 type_nucleon, type_kaon,
1734 type_Kbar_z, type_Delta_z_bar);
1736 sqrt_s_, type_Kbar_z, type_Delta_z_bar);
1741 type_nucleon, type_kaon, type_K_m,
1744 sqrt_s_, type_K_m, type_Delta_m_bar);
1752 return process_list;
1757 CollisionBranchList process_list;
1759 return process_list;
1766 const auto pdg_delta = type_delta.
pdgcode().
code();
1774 switch (
pack(pdg_delta, pdg_kaon)) {
1783 type_kaon, type_p, type_K_p) *
1799 type_kaon, type_p_bar, type_K_m) *
1801 type_kaon, type_delta) *
1804 sqrt_s_, type_p_bar, type_K_m);
1817 type_kaon, type_n, type_K_p) *
1828 type_kaon, type_p, type_K_z) *
1846 type_kaon, type_n_bar, type_K_m) *
1848 type_kaon, type_delta) *
1851 sqrt_s_, type_n_bar, type_K_m);
1857 type_kaon, type_p_bar,
1860 type_kaon, type_delta) *
1863 sqrt_s_, type_p_bar, type_Kbar_z);
1874 type_kaon, type_n, type_K_z) *
1890 type_kaon, type_n_bar,
1893 type_kaon, type_delta) *
1896 sqrt_s_, type_n_bar, type_Kbar_z);
1903 return process_list;
1908 CollisionBranchList process_list;
1910 return process_list;
1917 const auto pdg_hyperon = type_hyperon.
pdgcode().
code();
1922 switch (
pack(pdg_hyperon, pdg_pion)) {
1943 type_p, type_Kbar_z) *
1946 sqrt_s_, type_p, type_Kbar_z);
1956 type_n_bar, type_K_p) *
1959 sqrt_s_, type_n_bar, type_K_p);
1969 type_p_bar, type_K_z) *
1972 sqrt_s_, type_p_bar, type_K_z);
1995 type_p, type_Kbar_z) *
1998 sqrt_s_, type_p, type_Kbar_z);
2008 type_n_bar, type_K_p) *
2011 sqrt_s_, type_n_bar, type_K_p);
2021 type_p_bar, type_K_z) *
2024 sqrt_s_, type_p_bar, type_K_z);
2047 type_p, type_Kbar_z) *
2050 sqrt_s_, type_p, type_Kbar_z);
2060 type_n_bar, type_K_p) *
2063 sqrt_s_, type_n_bar, type_K_p);
2073 type_p_bar, type_K_z) *
2076 sqrt_s_, type_p_bar, type_K_z);
2096 type_n, type_Kbar_z) *
2099 sqrt_s_, type_n, type_Kbar_z);
2111 type_p_bar, type_K_p) *
2114 sqrt_s_, type_p_bar, type_K_p);
2119 type_n_bar, type_K_z) *
2122 sqrt_s_, type_n_bar, type_K_z);
2142 type_n, type_Kbar_z) *
2145 sqrt_s_, type_n, type_Kbar_z);
2157 type_p_bar, type_K_p) *
2160 sqrt_s_, type_p_bar, type_K_p);
2165 type_n_bar, type_K_z) *
2168 sqrt_s_, type_n_bar, type_K_z);
2188 type_n, type_Kbar_z) *
2191 sqrt_s_, type_n, type_Kbar_z);
2203 type_p_bar, type_K_p) *
2206 sqrt_s_, type_p_bar, type_K_p);
2211 type_n_bar, type_K_z) *
2214 sqrt_s_, type_n_bar, type_K_z);
2234 type_n, type_Kbar_z) *
2237 sqrt_s_, type_n, type_Kbar_z);
2249 type_p_bar, type_K_p) *
2252 sqrt_s_, type_p_bar, type_K_p);
2257 type_n_bar, type_K_z) *
2260 sqrt_s_, type_n_bar, type_K_z);
2267 return process_list;
2273 const double s = sqrts * sqrts;
2278 const double matrix_element =
2279 295.5 + 2.862 / (0.00283735 +
pow_int(sqrts - 2.181, 2)) +
2280 0.0672 /
pow_int(tmp, 2) - 6.61753 / tmp;
2282 const double spin_factor =
2283 (produced_nucleus->
spin() + 1) * (type_pi.
spin() + 1);
2288 double xsection = matrix_element * spin_factor / (s * cm_mom);
2292 const double resonance_integral =
2294 xsection *= resonance_integral;
2296 ", matrix element: ", matrix_element,
2297 ", cm_momentum: ", cm_mom);
2304 CollisionBranchList process_list;
2314 ParticleTypePtrList nuc = (baryon_number > 0)
2321 nuc_a->charge() + nuc_b->charge()) {
2325 for (
const int twoI :
I_tot_range(*nuc_a, *nuc_b)) {
2327 type_a, type_b, *nuc_a, *nuc_b, twoI);
2334 const double matrix_element =
2336 if (matrix_element <= 0.) {
2340 const double spin_factor = (nuc_a->spin() + 1) * (nuc_b->spin() + 1);
2341 const int sym_fac_in =
2343 const int sym_fac_out =
2344 (nuc_a->iso_multiplet() == nuc_b->iso_multiplet()) ? 2 : 1;
2345 double p_cm_final =
pCM_from_s(s, nuc_a->mass(), nuc_b->mass());
2346 const double xsection = isospin_factor * spin_factor * sym_fac_in /
2347 sym_fac_out * p_cm_final * matrix_element /
2351 process_list.push_back(std::make_unique<CollisionBranch>(
2354 nuc_a->name(), nuc_b->name(),
2355 " at sqrts [GeV] = ", sqrts,
2356 " with cs[mb] = ", xsection);
2368 if (is_pid_or_pidprime &&
2375 if (produced_nucleus == &type_nucleus ||
2377 produced_nucleus->baryon_number() != type_nucleus.
baryon_number()) {
2380 const double xsection =
2382 process_list.push_back(std::make_unique<CollisionBranch>(
2385 type_pi.
name(), produced_nucleus->name(),
2386 " at ", sqrts,
" GeV, xs[mb] = ", xsection);
2389 return process_list;
2396 const double s = sqrts * sqrts;
2397 double matrix_element = 0.0;
2405 matrix_element = 79.0474 / std::pow(tmp, 0.7897) + 654.596 * tmp;
2410 matrix_element = 342.572 / std::pow(tmp, 0.6);
2412 const double spin_factor =
2413 (produced_nucleus->
spin() + 1) * (type_N.
spin() + 1);
2417 double xsection = matrix_element * spin_factor / (s * cm_mom);
2423 const double resonance_integral =
2425 xsection *= resonance_integral;
2436 CollisionBranchList process_list;
2438 return process_list;
2444 if (produced_nucleus == &type_nucleus ||
2446 produced_nucleus->baryon_number() != type_nucleus.
baryon_number()) {
2451 process_list.push_back(std::make_unique<CollisionBranch>(
2454 type_N.
name(), produced_nucleus->name(),
" at ",
2455 sqrt_s_,
" GeV, xs[mb] = ", xsection);
2457 return process_list;
2463 if (!string_process) {
2464 throw std::runtime_error(
"string_process should be initialized.");
2467 CollisionBranchList channel_list;
2468 if (total_string_xs <= 0.) {
2469 return channel_list;
2478 std::array<int, 2> pdgid;
2479 double AQM_scaling = 1.;
2480 for (
int i = 0; i < 2; i++) {
2488 bool can_annihilate =
false;
2491 for (
int iq = 1; iq <= n_q_types; iq++) {
2492 std::array<int, 2> nquark;
2493 for (
int i = 0; i < 2; i++) {
2497 if (nquark[0] != 0 && nquark[1] != 0) {
2498 can_annihilate =
true;
2514 std::array<double, 3> xs =
2516 if (finder_parameters.
use_AQM) {
2517 for (
int ip = 0; ip < 3; ip++) {
2518 xs[ip] *= AQM_scaling;
2521 double single_diffr_AX = xs[0], single_diffr_XB = xs[1], double_diffr = xs[2];
2522 double single_diffr = single_diffr_AX + single_diffr_XB;
2523 double diffractive = single_diffr + double_diffr;
2529 double sig_annihilation = 0.0;
2530 if (can_annihilate) {
2535 if (finder_parameters.
use_AQM) {
2536 xs_param *= AQM_scaling;
2538 sig_annihilation = std::min(total_string_xs, xs_param);
2541 const double nondiffractive_all =
2542 std::max(0., total_string_xs - sig_annihilation - diffractive);
2543 diffractive = total_string_xs - sig_annihilation - nondiffractive_all;
2544 double_diffr = std::max(0., diffractive - single_diffr);
2545 const double a = (diffractive - double_diffr) / single_diffr;
2546 single_diffr_AX *= a;
2547 single_diffr_XB *= a;
2548 assert(std::abs(single_diffr_AX + single_diffr_XB + double_diffr +
2549 sig_annihilation + nondiffractive_all - total_string_xs) <
2552 double nondiffractive_soft = 0.;
2553 double nondiffractive_hard = 0.;
2554 if (nondiffractive_all > 0.) {
2559 nondiffractive_soft =
2560 nondiffractive_all * std::exp(-hard_xsec / nondiffractive_all);
2561 nondiffractive_hard = nondiffractive_all - nondiffractive_soft;
2572 const double sig_string_soft = total_string_xs - nondiffractive_hard;
2575 if (sig_string_soft > 0.) {
2576 channel_list.push_back(std::make_unique<CollisionBranch>(
2578 channel_list.push_back(std::make_unique<CollisionBranch>(
2580 channel_list.push_back(std::make_unique<CollisionBranch>(
2582 channel_list.push_back(std::make_unique<CollisionBranch>(
2584 if (can_annihilate) {
2585 channel_list.push_back(std::make_unique<CollisionBranch>(
2589 if (nondiffractive_hard > 0.) {
2590 channel_list.push_back(std::make_unique<CollisionBranch>(
2593 return channel_list;
2606 if (pdg_a == pdg_b) {
2623 auto [region_lower, region_upper] =
2626 xs = xs_l * (1. - prob_high) + xs_h * prob_high;
2662 double cross_sec = 0.;
2697 return std::make_unique<CollisionBranch>(
2698 type_pip, type_pim, type_pip, type_pim, type_piz, nnbar_xsec * scale_xs,
2703 const double current_xs,
const double scale_xs)
const {
2707 double nnbar_xsec = std::max(0.,
ppbar_total(s) * scale_xs - current_xs);
2716 CollisionBranchList channel_list;
2730 if (
sqrt_s_ - 2 * type_N.mass() < 0) {
2731 return channel_list;
2735 type_N, type_Nbar) *
2738 channel_list.push_back(std::make_unique<CollisionBranch>(
2740 channel_list.push_back(std::make_unique<CollisionBranch>(
2744 return channel_list;
2748 const bool is_anti_particles)
const {
2751 CollisionBranchList process_list;
2757 ParticleTypePtrList nuc_or_anti_nuc;
2758 if (is_anti_particles) {
2769 nuc_a->charge() + nuc_b->charge()) {
2773 for (
const int twoI :
I_tot_range(*nuc_a, *nuc_b)) {
2775 type_a, type_b, *nuc_a, *nuc_b, twoI);
2782 const double matrix_element =
2784 if (matrix_element <= 0.) {
2792 const double spin_factor = (nuc_a->spin() + 1) * (nuc_b->spin() + 1);
2793 const int sym_fac_in =
2795 const int sym_fac_out =
2796 (nuc_a->iso_multiplet() == nuc_b->iso_multiplet()) ? 2 : 1;
2797 const double xsection = isospin_factor * spin_factor * sym_fac_in /
2798 sym_fac_out * p_cm_final * matrix_element /
2802 process_list.push_back(std::make_unique<CollisionBranch>(
2805 "2->2 absorption with original particles: ", type_a, type_b);
2810 return process_list;
2817 const double m_a = type_a.
mass();
2818 const double m_b = type_b.
mass();
2819 const double msqr = 2. * (m_a * m_a + m_b * m_b);
2829 const double uplmt = m_a + m_b + 3.0 * (w_a + w_b) + 3.0;
2830 if (sqrts > uplmt) {
2837 return 68. / std::pow(sqrts - 1.104, 1.951);
2846 }
else if (twoI == 0) {
2847 const double parametrization = 14. / msqr;
2854 return 6.5 * parametrization;
2856 return parametrization;
2869 }
else if (twoI == 0) {
2883 }
else if (twoI == 0) {
2893 (1.0 - std::exp(-(sqrts - 2.0) * 20.0));
2900 template <
class IntegrationMethod>
2902 const ParticleTypePtrList& list_res_1,
2903 const ParticleTypePtrList& list_res_2,
2904 const IntegrationMethod integrator)
const {
2908 CollisionBranchList channel_list;
2916 if (type_res_1->charge() + type_res_2->charge() !=
2922 for (
const int twoI :
I_tot_range(type_particle_a, type_particle_b)) {
2924 type_particle_a, type_particle_b, *type_res_1, *type_res_2, twoI);
2931 const double lower_limit = type_res_1->min_mass_kinematic();
2932 const double upper_limit =
sqrt_s_ - type_res_2->mass();
2936 if (upper_limit - lower_limit < 1E-3) {
2942 sqrt_s_, *type_res_1, *type_res_2, twoI);
2943 if (matrix_element <= 0.) {
2950 const double resonance_integral = integrator(*type_res_1, *type_res_2);
2955 const double spin_factor =
2956 (type_res_1->spin() + 1) * (type_res_2->spin() + 1);
2957 const double xsection = isospin_factor * spin_factor * matrix_element *
2961 channel_list.push_back(std::make_unique<CollisionBranch>(
2964 "Found 2->2 creation process for resonance ", type_res_1,
", ",
2967 type_particle_a, type_particle_b);
2972 return channel_list;
2985 const bool treat_BBbar_with_strings =
2987 const bool is_NN_scattering =
2990 const bool is_BBbar_scattering =
2999 const bool is_AQM_scattering =
3006 const double mass_sum =
3009 if (!is_NN_scattering && !is_BBbar_scattering && !is_Npi_scattering &&
3010 !is_AQM_scattering) {
3014 }
else if (is_BBbar_scattering) {
3021 const bool is_KplusP =
3034 }
else if (pdg1.
is_pion() && pdg2.is_pion()) {
3040 return static_cast<double>(
sqrt_s_ > mass_sum + aqm_offset);
3044 double region_lower, region_upper;
3045 if (is_Npi_scattering) {
3046 std::tie(region_lower, region_upper) =
3048 }
else if (is_NN_scattering) {
3049 std::tie(region_lower, region_upper) =
3054 region_lower = mass_sum + aqm_offset;
3055 region_upper = mass_sum + aqm_offset +
3061 }
else if (
sqrt_s_ < region_lower) {
3071 const double region_lower,
const double region_upper)
const {
3080 double x = (
sqrt_s_ - 0.5 * (region_lower + region_upper)) /
3081 (region_upper - region_lower);
3082 assert(x >= -0.5 && x <= 0.5);
3083 double prob = 0.5 * (std::sin(M_PI * x) + 1.0);
3084 assert(prob >= 0. && prob <= 1.);
const double sqrt_s_
Total energy in the center-of-mass frame.
static double d_N_inelastic_xs(double N_kinetic_energy)
Parametrization of deuteron-nucleon inelastic cross section.
static double xs_dpi_dprimepi(double sqrts, double cm_mom, ParticleTypePtr produced_nucleus, const ParticleType &type_pi)
Parametrized cross section for πd→ πd' (mockup for πd→ πnp), πd̅→ πd̅' and reverse,...
CollisionBranchList two_to_two(const ReactionsBitSet &included_2to2, double KN_offset) const
Find all inelastic 2->2 processes for the given scattering.
CollisionBranchPtr NNbar_to_5pi(double scale_xs) const
Create collision branch for NNbar annihilation going directly into 5 pions.
double probability_transit_high(double region_lower, double region_upper) const
CollisionBranchList NNbar_creation() const
Determine the cross section for NNbar creation, which is given by detailed balance from the reverse r...
CollisionBranchList dpi_xx(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes involving Pion and (anti-) Deuteron (dpi), specifically dπ→ NN,...
double high_energy(const ScatterActionsFinderParameters &finder_parameters) const
Determine the parametrized total cross section at high energies for the given collision,...
CollisionBranchList bb_xx_except_nn(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes for Baryon-Baryon (BB) Scattering except the more specific Nucleon-...
CollisionBranchList npi_yk() const
Find all processes for Nucleon-Pion to Hyperon-Kaon Scattering.
CollisionBranchList find_nn_xsection_from_type(const ParticleTypePtrList &type_res_1, const ParticleTypePtrList &type_res_2, const IntegrationMethod integrator) const
Utility function to avoid code replication in nn_xx().
double cm_momentum() const
Determine the momenta of the incoming particles in the center-of-mass system.
CollisionBranchList bar_bar_to_nuc_nuc(const bool is_anti_particles) const
Calculate cross sections for resonance absorption (i.e.
double string_probability(const ScatterActionsFinderParameters &finder_parameters) const
CollisionBranchList deltak_xx(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes for Delta-Kaon (DeltaK) Scattering.
CrossSections(const ParticleList &incoming_particles, double sqrt_s, const std::pair< FourVector, FourVector > potentials)
Construct CrossSections instance.
static double xs_dn_dprimen(double sqrts, double cm_mom, ParticleTypePtr produced_nucleus, const ParticleType &type_nucleus, const ParticleType &type_N)
Parametrized cross section for Nd → Nd', N̅d → N̅d', N̅d̅→ N̅d̅', Nd̅→ Nd̅' and reverse (e....
double elastic_parametrization(const ScatterActionsFinderParameters &finder_parameters) const
Choose the appropriate parametrizations for given incoming particles and return the (parametrized) el...
CollisionBranchList two_to_four() const
Find all 2->4 processes for the given scattering.
CollisionBranchPtr elastic(const ScatterActionsFinderParameters &finder_parameters) const
Determine the elastic cross section for this collision.
double formation(const ParticleType &type_resonance, double cm_momentum_sqr) const
Return the 2-to-1 resonance production cross section for a given resonance.
void add_channel(CollisionBranchList &process_list, F &&get_xsection, double sqrts, const ParticleType &type_a, const ParticleType &type_b) const
Helper function: Add a 2-to-2 channel to a collision branch list given a cross section.
double string_hard_cross_section() const
Determine the (parametrized) hard non-diffractive string cross section for this collision.
static double two_to_three_xs(const ParticleType &type_in1, const ParticleType &type_in2, double sqrts)
Determine 2->3 cross section for the scattering of the given particle types.
double nk_el() const
Determine the elastic cross section for a nucleon-kaon (NK) collision.
CollisionBranchList nk_xx(const ReactionsBitSet &included_2to2, double KN_offset) const
Find all inelastic 2->2 background processes for Nucleon-Kaon (NK) Scattering.
CollisionBranchList two_to_one() const
Find all resonances that can be produced in a 2->1 collision of the two input particles and the produ...
const ParticleList incoming_particles_
List with data of scattering particles.
double npi_el() const
Determine the elastic cross section for a nucleon-pion (Npi) collision.
double nn_el() const
Determine the (parametrized) elastic cross section for a nucleon-nucleon (NN) collision.
const bool is_BBbar_pair_
Whether incoming particles are a pair of a baryon and an antibaryon (could be different baryon types)
CollisionBranchList dn_xx(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes involving Nucleon and (anti-) Deuteron (dN), specifically Nd → Nd',...
static double two_to_four_xs(const ParticleType &type_in1, const ParticleType &type_in2, double sqrts)
Determine 2->4 cross section for the scattering of the given particle types.
CollisionBranchList ypi_xx(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes for Hyperon-Pion (Ypi) Scattering.
CollisionBranchList string_excitation(double total_string_xs, StringProcess *string_process, const ScatterActionsFinderParameters &finder_parameters) const
Determine the cross section for string excitations, which is given by the difference between the para...
double parametrized_total(const ScatterActionsFinderParameters &finder_parameters) const
Select the parametrization for the total cross section, given the types of incoming particles.
const bool is_NNbar_pair_
Whether incoming particles are a nulecon-antinucleon pair (same isospin)
static double nn_to_resonance_matrix_element(double sqrts, const ParticleType &type_a, const ParticleType &type_b, const int twoI)
Scattering matrix amplitude squared (divided by 16π) for resonance production processes like NN → NR ...
CollisionBranchList rare_two_to_two() const
Find all 2->2 processes which are suppressed at high energies when strings are turned on with probabi...
static double sum_xs_of(const CollisionBranchList &list)
Helper function: Sum all cross sections of the given process list.
CollisionBranchList two_to_three() const
Find all 2->3 processes for the given scattering.
static double d_aN_inelastic_xs(double aN_kinetic_energy)
Parametrization of deuteron-antinucleon inelastic cross section.
CollisionBranchPtr NNbar_annihilation(double current_xs, double scale_xs) const
Determine the cross section for NNbar annihilation, which is given by the difference between the para...
CollisionBranchList generate_collision_list(const ScatterActionsFinderParameters &finder_parameters, StringProcess *string_process) const
Generate a list of all possible collisions between the incoming particles with the given c....
static double d_pi_inelastic_xs(double pion_kinetic_energy)
Parametrization of deuteron-pion inelastic cross section.
CollisionBranchList nn_xx(const ReactionsBitSet &included_2to2) const
Find all inelastic 2->2 processes for Nucelon-Nucelon Scattering.
Range of total isospin for reaction of particle a with particle b.
double get_integral_RR(IsoParticleType *type_res_2, double sqrts)
Look up the tabulated resonance integral for the XX -> RR cross section.
double get_integral_NR(double sqrts)
Look up the tabulated resonance integral for the XX -> NR cross section.
double get_integral_RK(double sqrts)
Look up the tabulated resonance integral for the XX -> RK cross section.
double get_integral_piR(double sqrts)
Look up the tabulated resonance integral for the XX -> piR cross section.
double get_ratio(const ParticleType &a, const ParticleType &b, const ParticleType &c, const ParticleType &d) const
Return the isospin ratio of the given K N -> K Delta cross section.
ParticleData contains the dynamic information of a certain particle.
PdgCode pdgcode() const
Get the pdgcode of the particle.
const ParticleType & type() const
Get the type of the particle.
A pointer-like interface to global references to ParticleType objects.
Particle type contains the static properties of a particle species.
double spectral_function(double m) const
Full spectral function of the resonance (relativistic Breit-Wigner distribution with mass-dependent ...
static const ParticleTypePtr try_find(PdgCode pdgcode)
Returns the ParticleTypePtr for the given pdgcode.
static const ParticleType & find(PdgCode pdgcode)
Returns the ParticleType object for the given pdgcode.
const std::string & name() const
int32_t charge() const
The charge of the particle.
int antiparticle_sign() const
static ParticleTypePtrList & list_nucleons()
static ParticleTypePtrList & list_anti_nucleons()
bool is_Nstar1535() const
double width_at_pole() const
static ParticleTypePtrList & list_anti_Deltas()
static ParticleTypePtrList & list_baryon_resonances()
static ParticleTypePtrList & list_Deltas()
double get_partial_in_width(const double m, const ParticleData &p_a, const ParticleData &p_b) const
Get the mass-dependent partial in-width of a resonance with mass m, decaying into two given daughter ...
unsigned int spin() const
int baryon_number() const
bool is_Deltastar() const
IsoParticleType * iso_multiplet() const
static ParticleTypePtrList & list_light_nuclei()
PdgCode stores a Particle Data Group Particle Numbering Scheme particle type number.
std::int32_t code() const
int antiparticle_sign() const
int nucleus_n() const
Number of neutrons in nucleus.
int nucleus_ap() const
Number of antiprotons in nucleus.
int nucleus_an() const
Number of antineutrons in nucleus.
unsigned int spin() const
bool is_antiparticle_of(const PdgCode rhs) const
int nucleus_p() const
Number of protons in nucleus.
int nucleus_La() const
Number of Lambdas in nucleus.
int nucleus_A() const
Nucleus mass number.
int nucleus_aLa() const
Number of anti-Lambdas in nucleus.
Helper class for ScatterActionsFinder.
const bool strings_with_probability
This indicates whether the string fragmentation is swiched on with a probability smoothly increasing ...
const ReactionsBitSet included_2to2
List of included 2<->2 reactions.
const bool use_AQM
Switch to control whether to use AQM or not.
const double scale_xs
Factor by which all (partial) cross sections are scaled.
const double elastic_parameter
Elastic cross section parameter (in mb).
const bool strings_switch
Indicates whether string fragmentation is switched on.
const StringTransitionParameters transition_high_energy
Constants related to transition between low collision energies - mediated via resonances - and high c...
const double additional_el_xs
Additional constant contribution (in mb) to the elastic cross sections.
double AQM_scaling_factor(const PdgCode &pdg) const
AQM scaling factor for a hadron.
const NNbarTreatment nnbar_treatment
Switch for NNbar reactions.
const double low_snn_cut
Elastic collsions between two nucleons with sqrt_s below low_snn_cut_ are excluded.
const bool two_to_one
Enables resonance production.
String excitation processes used in SMASH.
static int pdg_map_for_pythia(PdgCode &pdg)
Take pdg code and map onto particle specie which can be handled by PYTHIA.
std::array< double, 3 > cross_sections_diffractive(int pdg_a, int pdg_b, double sqrt_s)
Interface to pythia_sigmatot_ to compute cross-sections of A+B-> different final states Schuler:1993w...
Collection of useful constants that are known at compile time.
std::bitset< 10 > ReactionsBitSet
Container for the 2 to 2 reactions in the code.
@ TwoToFive
Directly create 5 pions, use with multi-particle reactions.
@ Resonances
Use intermediate Resonances.
@ Strings
Use string fragmentation.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
constexpr int Delta_pp
Δ⁺⁺.
constexpr int64_t antideuteron
Anti-deuteron in decimal digits.
constexpr int h1
h₁(1170).
constexpr int64_t deuteron
Deuteron.
double kplusn_k0p(double mandelstam_s)
K+ n charge exchange cross section parametrization.
double kplusp_total(double mandelstam_s)
K+ p total cross section parametrization.
double pizeropizero_total(double sqrts)
pi0 pi0 total cross section parametrized from PDG2018, smoothed using the LOWESS algorithm.
double kminusp_pi0lambda(double sqrts)
K- p <-> pi0 Lambda cross section parametrization Fit to Landolt-Börnstein instead of UrQMD values.
T pCM(const T sqrts, const T mass_a, const T mass_b) noexcept
double pipluspiminus_total(double sqrts)
pi+ pi- total cross section parametrized from PDG2018, smoothed using the LOWESS algorithm.
ParticleTypePtrList list_possible_resonances(const ParticleTypePtr type_a, const ParticleTypePtr type_b)
Lists the possible resonances that decay into two particles.
double piminusp_sigma0k0_res(double mandelstam_s)
pi- p -> Sigma0 K0 cross section parametrization, resonance contribution.
T pCM_sqr(const T sqrts, const T mass_a, const T mass_b) noexcept
double ppbar_total(double mandelstam_s)
ppbar total cross section parametrization Source: Bass:1998ca
double np_total(double mandelstam_s)
np total cross section parametrization Sources: low-p: Cugnon:1996kh highest-p: Buss:2011mx
double piminusp_elastic(double mandelstam_s)
pi-p elastic cross section parametrization Source: GiBUU:parametrizationBarMes_HighEnergy....
double npbar_high_energy(double mandelstam_s)
npbar total cross section at high energies
static double detailed_balance_factor_RR(double sqrts, double pcm, const ParticleType &a, const ParticleType &b, const ParticleType &c, const ParticleType &d)
Helper function: Calculate the detailed balance factor R such that.
double kminusn_piminussigma0(double sqrts)
K- n <-> pi- Sigma0 cross section parametrization Follow from the parametrization with the same stran...
double kbar0p_elastic_background(double mandelstam_s)
Kbar0 p elastic background cross section parametrization Source: Buss:2011mx , B.3....
KaonNucleonRatios kaon_nucleon_ratios
double ppbar_elastic(double mandelstam_s)
ppbar elastic cross section parametrization Source: Bass:1998ca
double kminusp_elastic_background(double mandelstam_s)
K- p elastic background cross section parametrization Source: Buss:2011mx , B.3.9.
double np_high_energy(double mandelstam_s)
np total cross section at high energies
double pp_elastic_high_energy(double mandelstam_s, double m1, double m2)
pp elastic cross section parametrization, with only the high energy part generalized to all energy re...
double Npi_string_hard(double mandelstam_s)
nucleon-pion hard scattering cross section (with partonic scattering)
double kminusn_piminuslambda(double sqrts)
K- n <-> pi- Lambda cross section parametrization Follow from the parametrization with the same stran...
double isospin_clebsch_gordan_sqr_2to2(const ParticleType &p_a, const ParticleType &p_b, const ParticleType &p_c, const ParticleType &p_d, const int I=-1)
Calculate the squared isospin Clebsch-Gordan coefficient for a 2-to-2 reaction A + B -> C + D.
@ TwoToOne
See here for a short description.
@ StringSoftDoubleDiffractive
See here for a short description.
@ TwoToFive
See here for a short description.
@ StringSoftSingleDiffractiveXB
See here for a short description.
@ TwoToTwo
See here for a short description.
@ Elastic
See here for a short description.
@ TwoToFour
See here for a short description.
@ StringSoftAnnihilation
See here for a short description.
@ StringSoftNonDiffractive
See here for a short description.
@ StringSoftSingleDiffractiveAX
See here for a short description.
@ StringHard
See here for a short description.
@ TwoToThree
See here for a short description.
constexpr double minimum_sqrts_pythia_can_handle
Energy in GeV, below which hard reactions via pythia are impossible.
double ppbar_high_energy(double mandelstam_s)
ppbar total cross section at high energies
double pp_high_energy(double mandelstam_s)
pp total cross section at high energies
T pCM_sqr_from_s(const T s, const T mass_a, const T mass_b) noexcept
double pipi_string_hard(double mandelstam_s)
pion-pion hard scattering cross section (with partonic scattering)
double piplusp_high_energy(double mandelstam_s)
pi+p total cross section at high energies
double kminusp_piminussigmaplus(double sqrts)
K- p <-> pi- Sigma+ cross section parametrization Taken from UrQMD (Graef:2014mra ).
double piplusp_elastic_high_energy(double mandelstam_s, double m1, double m2)
pi+p elactic cross section parametrization.
double piplusp_sigmapluskplus_pdg(double mandelstam_s)
pi+ p to Sigma+ K+ cross section parametrization, PDG data.
static constexpr int LCrossSections
double piminusp_total(double sqrts)
pi- p total cross section parametrized from PDG2018, smoothed using the LOWESS algorithm.
constexpr double deuteron_mass
Deuteron mass in GeV.
double deuteron_nucleon_elastic(double mandelstam_s)
Deuteron nucleon elastic cross-section [mb] parametrized by Oh:2009gx .
constexpr double nucleon_mass
Nucleon mass in GeV.
constexpr T pow_int(const T base, unsigned const exponent)
Efficient template for calculating integer powers using squaring.
double piminusp_sigmaminuskplus_pdg(double mandelstam_s)
pi- p -> Sigma- K+ cross section parametrization, PDG data.
double piminusp_lambdak0_pdg(double mandelstam_s)
pi- p -> Lambda K0 cross section parametrization, PDG data.
static void append_list(CollisionBranchList &main_list, CollisionBranchList in_list, double weight=1.)
Helper function: Append a list of processes to another (main) list of processes.
static double detailed_balance_factor_stable(double s, const ParticleType &a, const ParticleType &b, const ParticleType &c, const ParticleType &d)
Helper function: Calculate the detailed balance factor R such that.
double k0p_elastic_background(double mandelstam_s)
K0 p elastic background cross section parametrization Source: Buss:2011mx , B.3.9.
constexpr uint64_t pack(int32_t x, int32_t y)
Pack two int32_t into an uint64_t.
double deuteron_pion_elastic(double mandelstam_s)
Deuteron pion elastic cross-section [mb] parametrized to fit pi-d elastic scattering data (the data c...
double NN_string_hard(double mandelstam_s)
nucleon-nucleon hard scattering cross section (with partonic scattering)
double xs_ppbar_annihilation(double mandelstam_s)
parametrized cross-section for proton-antiproton annihilation used in the UrQMD model
double kplusp_inelastic_background(double mandelstam_s)
K+ p inelastic background cross section parametrization Source: Buss:2011mx , B.3....
constexpr double pion_mass
Pion mass in GeV.
constexpr double hbarc
GeV <-> fm conversion factor.
double kminusp_pi0sigma0(double sqrts)
K- p <-> pi0 Sigma0 cross section parametrization Fit to Landolt-Börnstein instead of UrQMD values.
double kplusn_elastic_background(double mandelstam_s)
K+ n elastic background cross section parametrization sigma(K+n->K+n) = sigma(K+n->K0p) = 0....
double pp_total(double mandelstam_s)
pp total cross section parametrization Sources: low-p: Cugnon:1996kh highest-p: Buss:2011mx
T pCM_from_s(const T s, const T mass_a, const T mass_b) noexcept
double kplusn_total(double mandelstam_s)
K+ n total cross section parametrization.
constexpr double really_small
Numerical error tolerance.
double np_elastic(double mandelstam_s)
np elastic cross section parametrization Source: Weil:2013mya , eq.
static double detailed_balance_factor_RK(double sqrts, double pcm, const ParticleType &a, const ParticleType &b, const ParticleType &c, const ParticleType &d)
Helper function: Calculate the detailed balance factor R such that.
double k0n_elastic_background(double mandelstam_s)
K0 n elastic background cross section parametrization Source: Buss:2011mx , B.3.9.
static constexpr int LScatterAction
double kminusp_piplussigmaminus(double sqrts)
K- p <-> pi+ Sigma- cross section parametrization Taken from UrQMD (Graef:2014mra ).
double kminusp_total(double mandelstam_s)
K- p total cross section parametrization.
double kbar0n_elastic_background(double mandelstam_s)
Kbar0 n elastic background cross section parametrization Source: Buss:2011mx , B.3....
double kminusp_kbar0n(double mandelstam_s)
K- p <-> Kbar0 n cross section parametrization.
double piplusp_total(double sqrts)
pi+ p total cross section parametrized from PDG2018, smoothed using the LOWESS algorithm.
double piminusp_high_energy(double mandelstam_s)
pi-p total cross section at high energies
double kminusn_total(double mandelstam_s)
K- n total cross section parametrization.
double kminusn_elastic_background(double mandelstam_s)
K- n elastic background cross section parametrization Source: Buss:2011mx , B.3.9.
double pp_elastic(double mandelstam_s)
pp elastic cross section parametrization Source: Weil:2013mya , eq.
double kplusn_inelastic_background(double mandelstam_s)
K+ n inelastic background cross section parametrization Source: Buss:2011mx , B.3....
double kplusp_elastic_background(double mandelstam_s)
K+ p elastic background cross section parametrization.
double piplusp_elastic_AQM(double mandelstam_s, double m1, double m2)
An overload of piplusp_elastic_high_energy in which the very low part is replaced by a flat 5 mb cros...
double piplusp_elastic(double mandelstam_s)
pi+p elastic cross section parametrization, PDG data.
constexpr double fm2_mb
mb <-> fm^2 conversion factor.
const std::pair< double, double > sqrts_range_Npi
Transition range in N collisions.
const double pipi_offset
Constant offset as to where to turn on the strings and elastic processes for reactions (this is an e...
const double sqrts_add_lower
Constant for the lower end of transition region in the case of AQM this is added to the sum of masses...
const double KN_offset
Constant offset as to where to shift from 2to2 to string processes (in GeV) in the case of KN reactio...
const std::pair< double, double > sqrts_range_NN
Transition range in NN collisions.
const double sqrts_range_width
Constant for the range of transition region, in the case of AQM this is added to the sum of masses + ...