![]() |
Iguana 0.8.0
Implementation Guardian of Analysis Algorithms
|
Light-weight namespace for particle constants.
Enumerations | |
enum | PDG { electron = 11 , photon = 22 , proton = 2212 , antiproton = -2212 , neutron = 2112 , antineutron = -2112 , pi_plus = 211 , pi_minus = -211 , kaon_plus = 321 , kaon_minus = -321 } |
PDG codes. More... | |
Functions | |
template<typename VALUE_TYPE> | |
std::optional< VALUE_TYPE > const | get (std::unordered_map< PDG, VALUE_TYPE > const &property, PDG const &pdg_code) |
get a particle property given a PDG code | |
template<typename VALUE_TYPE> | |
std::optional< VALUE_TYPE > const | get (std::unordered_map< PDG, VALUE_TYPE > const &property, int const &pdg_code) |
get a particle property given a PDG code | |
Variables | |
const std::unordered_map< PDG, std::string > | name |
Particle names. | |
const std::unordered_map< PDG, std::string > | title |
Particle titles. | |
const std::unordered_map< PDG, double > | mass |
Particle mass in GeV. | |
PDG codes.
Definition at line 41 of file TypeDefs.h.
std::optional< VALUE_TYPE > const iguana::particle::get | ( | std::unordered_map< PDG, VALUE_TYPE > const & | property, |
int const & | pdg_code ) |
get a particle property given a PDG code
Example:
property | the particle property, such as particle::name , particle::title , or particle::mass |
pdg_code | the particle::PDG value |
pdg_code
Definition at line 123 of file TypeDefs.h.
std::optional< VALUE_TYPE > const iguana::particle::get | ( | std::unordered_map< PDG, VALUE_TYPE > const & | property, |
PDG const & | pdg_code ) |
get a particle property given a PDG code
Example:
property | the particle property, such as particle::name , particle::title , or particle::mass |
pdg_code | the particle::PDG value |
pdg_code
Definition at line 106 of file TypeDefs.h.
const std::unordered_map<PDG, double> iguana::particle::mass |
Particle mass in GeV.
Definition at line 83 of file TypeDefs.h.
const std::unordered_map<PDG, std::string> iguana::particle::name |
Particle names.
Definition at line 55 of file TypeDefs.h.
const std::unordered_map<PDG, std::string> iguana::particle::title |
Particle titles.
Definition at line 69 of file TypeDefs.h.