10 #ifndef SRC_INCLUDE_SMASH_PDGCODE_H_
11 #define SRC_INCLUDE_SMASH_PDGCODE_H_
25 #include <type_traits>
118 using std::invalid_argument::invalid_argument;
134 explicit PdgCode(
const std::string& codestring) {
148 if (codenumber < 0) {
150 codenumber = -codenumber;
160 digits_.antiparticle_ = ((abscode & 0x80000000u) != 0);
219 template <
typename T>
221 typename std::enable_if_t<std::is_integral_v<T> && 4 <
sizeof(T),
223 :
PdgCode{std::invoke([&codenumber]() {
224 std::stringstream stream;
226 if (codenumber < 0) {
228 codenumber = -codenumber;
230 stream << sign << std::hex << codenumber;
255 if (digits_.n_ > 9) {
258 if (digits_.n_R_ > 9) {
261 if (digits_.n_L_ > 9) {
264 if (digits_.n_q1_ > 6) {
267 if (digits_.n_q2_ > 6) {
270 if (digits_.n_q3_ > 6) {
273 if (digits_.n_J_ > 15) {
290 if (baryon_number() == 0) {
292 if ((digits_.n_J_ % 2 == 0) && dump() != 0x130 && dump() != 0x310) {
294 " (meson with even n_J)");
297 if ((digits_.n_J_ % 2 != 0) || digits_.n_J_ == 0) {
299 " (baryon with odd n_J)");
303 if (digits_.n_J_ == 0 && dump() != 0x0) {
304 throw InvalidPdgCode(
"Invalid PDG code " +
string() +
" (n_J==0)");
309 if (digits_.antiparticle_ && !has_antiparticle()) {
311 " (cannot be negative)");
316 inline std::uint32_t
dump()
const {
318 return (dump_ & 0x8fffffff);
322 inline std::int32_t
code()
const {
return antiparticle_sign() * ucode(); }
326 std::stringstream ss;
334 result.
digits_.antiparticle_ = !digits_.antiparticle_;
344 if (std::abs(pdgcode_decimal) > 1E7) {
345 return PdgCode(std::to_string(pdgcode_decimal));
347 int a = pdgcode_decimal;
348 int hex_pdg = 0, tmp = 1;
350 hex_pdg += (a % 10) * tmp;
365 assert(digits_.is_nucleus_ == nucleus_.is_nucleus_);
366 return nucleus_.is_nucleus_;
371 return (digits_.n_q3_ != 0 && digits_.n_q2_ != 0 && !is_nucleus());
376 return (digits_.n_q1_ == 0 && digits_.n_q2_ == 0 && digits_.n_q3_ == 1 &&
382 return (is_lepton() && digits_.n_J_ % 2 == 0);
387 return is_meson() && digits_.n_q2_ == 4 && digits_.n_q3_ == 4;
393 return static_cast<int>(nucleus_.A_) * antiparticle_sign();
395 if (!is_hadron() || digits_.n_q1_ == 0) {
398 return antiparticle_sign();
401 inline bool is_baryon()
const {
return is_hadron() && digits_.n_q1_ != 0; }
404 inline bool is_meson()
const {
return is_hadron() && digits_.n_q1_ == 0; }
408 const auto abs_code = std::abs(code());
414 const auto abs_code = std::abs(code());
415 return (abs_code ==
pdg::p);
420 const auto abs_code = std::abs(code());
421 return (abs_code ==
pdg::n);
426 const auto abs_code = std::abs(code());
432 const auto abs_code = std::abs(code());
438 inline bool is_hyperon()
const {
return is_hadron() && digits_.n_q1_ == 3; }
442 return is_hyperon() && digits_.n_q2_ == 3 && digits_.n_q3_ == 3;
447 return is_hyperon() && digits_.n_q2_ == 3 && digits_.n_q3_ != 3;
452 return is_hyperon() && digits_.n_q2_ == 1 && digits_.n_q3_ == 2;
457 return is_hyperon() && digits_.n_q2_ != 3 && !is_Lambda();
462 const auto abs_code = std::abs(code());
468 const auto c = code();
474 const auto c = code();
480 const auto c = code();
486 return is_nucleus() && nucleus_.A_ == 2 && nucleus_.Z_ == 1 &&
487 nucleus_.n_Lambda_ == 0 && nucleus_.I_ == 0;
492 return is_nucleus() && nucleus_.A_ == 3 && nucleus_.Z_ == 1 &&
493 nucleus_.n_Lambda_ == 0 && nucleus_.I_ == 0;
505 return (baryon_number() != 0) || (digits_.n_q2_ != digits_.n_q3_);
507 return digits_.n_q3_ == 1;
519 return net_quark_number(2) - net_quark_number(1);
532 if (is_hadron() && digits_.n_q3_ == 3 && digits_.n_q2_ == 3) {
537 return std::abs(strangeness()) / 3.;
538 }
else if (is_meson()) {
539 return std::abs(strangeness()) / 2.;
558 if (is_hadron() && digits_.n_q3_ == 4 && digits_.n_q2_ == 4) {
563 return std::abs(charmness()) / 3.;
564 }
else if (is_meson()) {
565 return std::abs(charmness()) / 2.;
584 if (is_hadron() && digits_.n_q3_ == 3 && digits_.n_q2_ == 3) {
589 return std::abs(bottomness()) / 3.;
590 }
else if (is_meson()) {
591 return std::abs(bottomness()) / 2.;
612 inline int charmness()
const {
return +net_quark_number(4); }
619 inline int bottomness()
const {
return -net_quark_number(5); }
630 if (is_hadron() || is_nucleus()) {
637 for (
int i = 1; i < 7; i++) {
640 Q += (i % 2 == 0 ? 2 : -1) * net_quark_number(i);
647 if (digits_.n_q3_ == 1) {
648 return -1 * (digits_.n_J_ % 2) * antiparticle_sign();
654 if ((dump_ & 0x0000ffff) == 0x24) {
655 return antiparticle_sign();
670 inline unsigned int spin()
const {
675 if (nucleus_.A_ == 2) {
678 }
else if (nucleus_.A_ == 3) {
683 }
else if (nucleus_.A_ == 4) {
687 throw std::runtime_error(
"Unknown spin of nucleus.");
693 if (digits_.n_J_ == 0) {
696 return digits_.n_J_ - 1;
703 return digits_.n_q3_;
707 if (is_hadron() && digits_.n_J_ > 0) {
714 return (digits_.antiparticle_ ? -1 : +1);
718 if (!is_hadron() || is_nucleus()) {
721 return chunks_.quarks_;
734 std::array<int, 3> result = {
static_cast<int>(digits_.n_q1_),
735 static_cast<int>(digits_.n_q2_),
736 static_cast<int>(digits_.n_q3_)};
739 if (digits_.n_q1_ != 0 && digits_.antiparticle_) {
740 for (
size_t i = 0; i < 3; i++) {
741 result[i] = -result[i];
745 if (digits_.n_q1_ == 0) {
747 if (digits_.n_q2_ == digits_.n_q3_) {
748 result[2] = -result[2];
751 if (digits_.antiparticle_) {
752 result[1] = -result[1];
755 result[2] = -result[2];
759 if (digits_.n_q2_ != digits_.n_q3_ && digits_.n_q2_ % 2 == 1) {
760 for (
int i = 1; i <= 2; i++) {
761 result[i] = -result[i];
781 bool contains_enough_valence_quarks(
int valence_quarks_required)
const;
794 return dump_ < rhs.
dump_;
809 return code() == -rhs.
code();
834 return antiparticle_sign() *
835 (nucleus_.I_ + 10 * nucleus_.A_ + 10000 * nucleus_.Z_ +
836 10000000 * nucleus_.n_Lambda_ + 1000000000);
839 int n_J_2 = digits_.n_J_;
844 return antiparticle_sign() *
845 (n_J_2 + digits_.n_q3_ * 10 + digits_.n_q2_ * 100 +
846 digits_.n_q1_ * 1000 + digits_.n_L_ * 10000 +
847 digits_.n_R_ * 100000 + digits_.n_ * 1000000 + n_J_1 * 10000000);
853 chunks_.excitation_ = 0;
869 int net_quark_number(
const int quark)
const;
873 return (is_nucleus() && !nucleus_.antiparticle_) ? nucleus_.Z_ : 0;
877 return (is_nucleus() && !nucleus_.antiparticle_)
878 ? nucleus_.A_ - nucleus_.Z_ - nucleus_.n_Lambda_
883 return (is_nucleus() && !nucleus_.antiparticle_) ? nucleus_.n_Lambda_ : 0;
887 return (is_nucleus() && nucleus_.antiparticle_) ? nucleus_.Z_ : 0;
891 return (is_nucleus() && nucleus_.antiparticle_)
892 ? nucleus_.A_ - nucleus_.Z_ - nucleus_.n_Lambda_
897 return (is_nucleus() && nucleus_.antiparticle_) ? nucleus_.n_Lambda_ : 0;
900 int nucleus_A()
const {
return is_nucleus() ? nucleus_.A_ : 0; }
914 #if defined(LITTLE_ENDIAN_ARCHITECTURE) || defined(DOXYGEN)
928 std::uint32_t
n_ : 4, : 2;
933 #elif defined(BIG_ENDIAN_ARCHITECTURE)
934 bool antiparticle_ : 1;
935 bool is_nucleus_ : 1, : 2;
936 std::uint32_t n_ : 4;
937 std::uint32_t n_R_ : 4;
938 std::uint32_t n_L_ : 4;
939 std::uint32_t n_q1_ : 4;
940 std::uint32_t n_q2_ : 4;
941 std::uint32_t n_q3_ : 4;
942 std::uint32_t n_J_ : 4;
944 #error Endianness macro of the machine not defined.
957 #if defined(LITTLE_ENDIAN_ARCHITECTURE) || defined(DOXYGEN)
963 #elif defined(BIG_ENDIAN_ARCHITECTURE)
964 std::uint32_t : 4, excitation_ : 12;
965 std::uint32_t quarks_ : 12, : 4;
967 #error Endianness macro of the machine not defined.
972 #if defined(LITTLE_ENDIAN_ARCHITECTURE) || defined(DOXYGEN)
974 std::uint32_t
Z_ : 10;
975 std::uint32_t
A_ : 10;
976 std::uint32_t
I_ : 4;
978 bool antiparticle_ : 1;
979 #elif defined(BIG_ENDIAN_ARCHITECTURE)
980 bool antiparticle_ : 1;
981 bool is_nucleus_ : 1;
982 std::uint32_t I_ : 4;
983 std::uint32_t A_ : 10;
984 std::uint32_t Z_ : 10;
985 std::uint32_t n_Lambda_ : 6;
987 #error Endianness macro of the machine not defined.
996 inline std::uint32_t
ucode()
const {
return (dump_ & 0x0fffffff); }
1006 if (48 <= inp && inp <= 57) {
1010 if (65 <= inp && inp <= 70) {
1011 return inp - 65 + 10;
1014 if (97 <= inp && inp <= 102) {
1015 return inp - 97 + 10;
1017 throw InvalidPdgCode(
"PdgCode: Invalid character " + std::string(&inp, 1) +
1045 digits_.n_ = digits_.n_R_ = digits_.n_L_ = digits_.n_q1_ = digits_.n_q2_ =
1046 digits_.n_q3_ = digits_.n_J_ = digits_.is_nucleus_ = 0;
1047 size_t length = codestring.size();
1049 throw InvalidPdgCode(
"Empty string does not contain PDG Code\n");
1054 if (codestring[c] ==
'-') {
1055 digits_.antiparticle_ =
true;
1057 }
else if (codestring[c] ==
'+') {
1058 digits_.antiparticle_ =
false;
1062 unsigned int sign = c;
1065 if (length == 10 + sign) {
1066 nucleus_.is_nucleus_ =
true;
1067 if (codestring[c] !=
'1' || codestring[c + 1] !=
'0') {
1069 "\" should start with 10\n");
1073 std::array<int, 8> digits;
1074 for (
int i = 0; i < 8; i++) {
1075 digits[i] = get_digit_from_char(codestring[c + i]);
1077 nucleus_.n_Lambda_ = digits[0];
1078 nucleus_.Z_ = 100 * digits[1] + 10 * digits[2] + digits[3];
1079 nucleus_.A_ = 100 * digits[4] + 10 * digits[5] + digits[6];
1080 nucleus_.I_ = digits[7];
1085 if (length > 8 + sign) {
1087 "\" too long for PDG Code\n");
1091 if (length > 7 + sign) {
1092 digits_.n_J_ += get_digit_from_char(codestring[c++]);
1095 if (length > 6 + sign) {
1096 digits_.n_ = get_digit_from_char(codestring[c++]);
1099 if (length > 5 + sign) {
1100 digits_.n_R_ = get_digit_from_char(codestring[c++]);
1103 if (length > 4 + sign) {
1104 digits_.n_L_ = get_digit_from_char(codestring[c++]);
1107 if (length > 3 + sign) {
1108 digits_.n_q1_ = get_digit_from_char(codestring[c++]);
1109 if (digits_.n_q1_ > 6) {
1110 throw InvalidPdgCode(
"Invalid PDG code " + codestring +
" (n_q1>6)");
1114 if (length > 2 + sign) {
1115 digits_.n_q2_ = get_digit_from_char(codestring[c++]);
1116 if (digits_.n_q2_ > 6) {
1117 throw InvalidPdgCode(
"Invalid PDG code " + codestring +
" (n_q2>6)");
1121 if (length > 1 + sign) {
1122 digits_.n_q3_ = get_digit_from_char(codestring[c++]);
1123 if (digits_.n_q3_ > 6) {
1124 throw InvalidPdgCode(
"Invalid PDG code " + codestring +
" (n_q3>6)");
1128 if (length > sign) {
1129 digits_.n_J_ += get_digit_from_char(codestring[c++]);
1132 "String \"" + codestring +
1133 "\" only consists of a sign, that is no valid PDG Code\n");
1150 bool ap = digits_.antiparticle_;
1151 dump_ = abscode & 0x0fffffff;
1152 digits_.antiparticle_ = ap;
1153 int test = test_code();
1156 " in PDG Code " +
string());
1162 static_assert(
sizeof(PdgCode) == 4,
"should fit into 32 bit integer");
1170 std::istream&
operator>>(std::istream& is, PdgCode& code);
1176 std::ostream&
operator<<(std::ostream& is,
const PdgCode& code);
1180 const auto c1 = pdg1.
code();
1181 const auto c2 = pdg2.
code();
1182 const auto min = std::min(c1, c2);
1183 const auto max = std::max(c1, c2);
1184 return (max == 0x11 && min == -0x11) || (max == 0x13 && min == -0x13) ||
1185 (max == 0x12 && min == -0x11) || (max == 0x11 && min == -0x12);
PdgCode stores a Particle Data Group Particle Numbering Scheme particle type number.
std::uint32_t quarks_
The quark digits n_q{1,2,3}_.
bool is_Nstar1535() const
std::int32_t code() const
int antiparticle_sign() const
PdgCode(T codenumber, typename std::enable_if_t< std::is_integral_v< T > &&4< sizeof(T), bool >=true)
The creation of PdgCode instances for nuclei that have a 10-digits code cannot be done using the inte...
bool operator!=(const PdgCode rhs) const
int nucleus_n() const
Number of neutrons in nucleus.
int baryon_number() const
PdgCode(const std::uint32_t abscode)
Receive an unsigned integer and process it into a PDG Code.
std::uint32_t n_q1_
first quark field. 0 for mesons.
bool is_charmonia() const
PdgCode(const std::string &codestring)
Initialize using a string The string is interpreted as a hexadecimal number, i.e.,...
int nucleus_ap() const
Number of antiprotons in nucleus.
int nucleus_an() const
Number of antineutrons in nucleus.
std::array< int, 3 > quark_content() const
The return is always an array of three numbers, which are pdgcodes of quarks: 1 - d,...
std::uint32_t n_q3_
third quark field
unsigned int spin() const
bool antiparticle_
first bit: stores the sign.
std::uint32_t dump() const
Dumps the bitfield into an unsigned integer.
std::uint32_t n_
first field: "counter"
double frac_charm() const
std::uint32_t n_J_
spin quantum number .
static PdgCode from_decimal(const int pdgcode_decimal)
Construct PDG code from decimal number.
bool is_antiparticle_of(const PdgCode rhs) const
std::uint32_t bool is_nucleus_
1 for nuclei, 0 for the rest
struct smash::PdgCode::@0::@2 digits_
The single digits collection of the code.
int nucleus_p() const
Number of protons in nucleus.
int32_t get_decimal() const
void set_fields(std::uint32_t abscode)
Sets the bitfield from an unsigned integer.
void check() const
Do all sorts of validity checks.
std::string string() const
int test_code() const
Checks the integer for invalid hex digits.
PdgCode get_antiparticle() const
Construct the antiparticle to a given PDG code.
int nucleus_La() const
Number of Lambdas in nucleus.
double frac_bottom() const
bool operator==(const PdgCode rhs) const
PdgCode()
Standard initializer.
int nucleus_A() const
Nucleus mass number.
static PdgCode invalid()
PdgCode 0x0 is guaranteed not to be valid by the PDG standard, but it passes all tests here,...
int nucleus_aLa() const
Number of anti-Lambdas in nucleus.
bool operator<(const PdgCode rhs) const
Sorts PDG Codes according to their numeric value.
PdgCode(std::int32_t codenumber)
Receive a signed integer and process it into a PDG Code.
void deexcite()
Remove all excitation, except spin. Sign and quark content remains.
std::uint32_t n_L_
"angular momentum"
void set_from_string(const std::string &codestring)
Set the PDG code from the given string.
std::uint32_t ucode() const
std::uint32_t n_R_
"radial excitation"
std::uint32_t dump_
The bitfield dumped into a single integer.
double frac_strange() const
bool has_antiparticle() const
std::uint32_t get_digit_from_char(const char inp) const
std::int32_t quarks() const
std::uint32_t n_q2_
second quark field
unsigned int spin_degeneracy() const
std::uint32_t excitation_
The excitation digits n_, n_R_, n_L_.
int charge() const
The charge of the particle.
std::ostream & operator<<(std::ostream &is, const PdgCode &code)
Writes the textual representation of the PDG code to the output stream.
constexpr int Delta_pp
Δ⁺⁺.
constexpr int N1535_z
N(1535)⁰.
constexpr int N1535_p
N(1535)⁺.
bool is_dilepton(const PdgCode pdg1, const PdgCode pdg2)
std::istream & operator>>(std::istream &is, PdgCode &code)
Sets the PDG code from the textual representation in the input stream.
bool has_lepton_pair(const PdgCode pdg1, const PdgCode pdg2, const PdgCode pdg3)
thrown for invalid inputs