Iguana 0.8.0
Implementation Guardian of Analysis Algorithms
All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
TypeDefs.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <string>
6#include <optional>
7#include <unordered_map>
8
9namespace iguana {
10
12 using vector_element_t = double;
13
23
35
37 namespace particle {
38 // clang-format off
39
41 enum PDG {
42 electron = 11,
43 photon = 22,
44 proton = 2212,
45 antiproton = -2212,
46 neutron = 2112,
47 antineutron = -2112,
48 pi_plus = 211,
49 pi_minus = -211,
50 kaon_plus = 321,
51 kaon_minus = -321
52 };
53
55 const std::unordered_map<PDG, std::string> name{
56 { electron, "electron" },
57 { photon, "photon" },
58 { proton, "proton" },
59 { antiproton, "antiproton" },
60 { neutron, "neutron" },
61 { antineutron, "antineutron" },
62 { pi_plus, "pi_plus" },
63 { pi_minus, "pi_minus" },
64 { kaon_plus, "kaon_plus" },
65 { kaon_minus, "kaon_minus" }
66 };
67
69 const std::unordered_map<PDG, std::string> title{
70 { electron, "e^{-}" },
71 { photon, "#gamma" },
72 { proton, "p" },
73 { antiproton, "#bar{p}" },
74 { neutron, "n" },
75 { antineutron, "#bar{n}" },
76 { pi_plus, "#pi^{+}" },
77 { pi_minus, "#pi^{-}" },
78 { kaon_plus, "K^{+}" },
79 { kaon_minus, "K^{-}" }
80 };
81
83 const std::unordered_map<PDG, double> mass{
84 { electron, 0.000511 },
85 { photon, 0.0 },
86 { proton, 0.938272 },
87 { antiproton, 0.938272 },
88 { neutron, 0.939565 },
89 { antineutron, 0.939565 },
90 { pi_plus, 0.139570 },
91 { pi_minus, 0.139570 },
92 { kaon_plus, 0.493677 },
93 { kaon_minus, 0.493677 }
94 };
95
105 template <typename VALUE_TYPE>
106 std::optional<VALUE_TYPE> const get(std::unordered_map<PDG,VALUE_TYPE> const& property, PDG const& pdg_code)
107 {
108 if(auto const& it = property.find(pdg_code); it != property.end())
109 return it->second;
110 return std::nullopt;
111 }
112
122 template <typename VALUE_TYPE>
123 std::optional<VALUE_TYPE> const get(std::unordered_map<PDG,VALUE_TYPE> const& property, int const& pdg_code)
124 {
125 return get(property, static_cast<particle::PDG>(pdg_code));
126 }
127
128 // clang-format on
129 }
130
131}
Light-weight namespace for particle constants.
Definition TypeDefs.h:37
const std::unordered_map< PDG, std::string > name
Particle names.
Definition TypeDefs.h:55
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
Definition TypeDefs.h:106
const std::unordered_map< PDG, double > mass
Particle mass in GeV.
Definition TypeDefs.h:83
PDG
PDG codes.
Definition TypeDefs.h:41
const std::unordered_map< PDG, std::string > title
Particle titles.
Definition TypeDefs.h:69
General, top-level namespace for algorithms and infrastructure. For algorithms and bindings,...
Definition Algorithm.h:14
double vector_element_t
Vector element type.
Definition TypeDefs.h:12
3-momentum type
Definition TypeDefs.h:15
vector_element_t pz
-component
Definition TypeDefs.h:21
vector_element_t py
-component
Definition TypeDefs.h:19
vector_element_t px
-component
Definition TypeDefs.h:17
4-momentum type
Definition TypeDefs.h:25
vector_element_t px
-component
Definition TypeDefs.h:27
vector_element_t E
-component
Definition TypeDefs.h:33
vector_element_t py
-component
Definition TypeDefs.h:29
vector_element_t pz
-component
Definition TypeDefs.h:31