Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
ExtraParticles.cpp
Go to the documentation of this file.
1/*
2 * Thermal-FIST package
3 *
4 * Copyright (c) 2024 Volodymyr Vovchenko
5 *
6 * GNU General Public License (GPLv3 or later)
7 */
9
10#include <algorithm>
11#include <cstdlib>
12#include <stdexcept>
13
14#include "HRGBase/Utility.h"
15
16using namespace std;
17
18namespace thermalfist {
19
20 namespace ExtraParticles {
21 static std::vector<ThermalParticle> Particles;
22 static std::map<long long, int> PdgIdMap;
23 static bool isInitialized = []() {
24 return Init();
25 }();
26
27 const ThermalParticle& Particle(int id) {
28 if (id < 0 || id >= Particles.size()) {
29 throw std::out_of_range("ExtraParticles::Particle: id is out of bounds!");
30 }
31 return Particles[id];
32 }
33
34 const ThermalParticle& ParticleByPdg(long long pdgid)
35 {
36 int tid = PdgToId(pdgid);
37 if (tid == -1) {
38 throw std::invalid_argument("ExtraParticles::ParticleByPdg: pdgid " + std::to_string(pdgid) + " is unknown");
39 }
40 return Particle(tid);
41 }
42 int PdgToId(long long pdgid)
43 {
44 return (PdgIdMap.count(pdgid) > 0) ? PdgIdMap[pdgid] : -1;
45 }
46
47 // Initializes the particles and their PDG ID mappings.
48 // This function is used for static initialization.
49 bool Init()
50 {
51 Particles.clear();
52 PdgIdMap.clear();
53
54 int tsz = 0;
55 // photons
56 Particles.push_back(ThermalParticle(true, "gamma", 22, 2., -1, 0.));
57 PdgIdMap[Particles[tsz].PdgId()] = tsz;
58 tsz++;
59
60 // electrons
61 Particles.push_back(ThermalParticle(true, "e-", 11, 2., 1, 5.109989461E-04, 0, 0, -1));
62 PdgIdMap[Particles[tsz].PdgId()] = tsz;
63 tsz++;
64 Particles.push_back(ThermalParticle(true, "e+", -11, 2., 1, 5.109989461E-04, 0, 0, 1));
65 PdgIdMap[Particles[tsz].PdgId()] = tsz;
66 tsz++;
67
68 // muons
69 Particles.push_back(ThermalParticle(true, "mu-", 13, 2., 1, 1.056583745E-01, 0, 0, -1));
70 PdgIdMap[Particles[tsz].PdgId()] = tsz;
71 tsz++;
72 Particles.push_back(ThermalParticle(true, "mu+", -13, 2., 1, 1.056583745E-01, 0, 0, 1));
73 PdgIdMap[Particles[tsz].PdgId()] = tsz;
74 tsz++;
75
76 // tauons
77 Particles.push_back(ThermalParticle(true, "tau-", 15, 2., 1, 1.77686E+00, 0, 0, -1));
78 PdgIdMap[Particles[tsz].PdgId()] = tsz;
79 tsz++;
80 Particles.push_back(ThermalParticle(true, "tau+", -15, 2., 1, 1.77686E+00, 0, 0, 1));
81 PdgIdMap[Particles[tsz].PdgId()] = tsz;
82 tsz++;
83
84 // nu(e)
85 Particles.push_back(ThermalParticle(true, "nu(e)", 12, 1., 1, 0.));
86 PdgIdMap[Particles[tsz].PdgId()] = tsz;
87 tsz++;
88 Particles.push_back(ThermalParticle(true, "anti-nu(e)", -12, 1., 1, 0.));
89 PdgIdMap[Particles[tsz].PdgId()] = tsz;
90 tsz++;
91
92 // nu(mu)
93 Particles.push_back(ThermalParticle(true, "nu(mu)", 14, 1., 1, 0.));
94 PdgIdMap[Particles[tsz].PdgId()] = tsz;
95 tsz++;
96 Particles.push_back(ThermalParticle(true, "anti-nu(mu)", -14, 1., 1, 0.));
97 PdgIdMap[Particles[tsz].PdgId()] = tsz;
98 tsz++;
99
100 // nu(tau)
101 Particles.push_back(ThermalParticle(true, "nu(tau)", 16, 1., 1, 0.));
102 PdgIdMap[Particles[tsz].PdgId()] = tsz;
103 tsz++;
104 Particles.push_back(ThermalParticle(true, "anti-nu(tau)", -16, 1., 1, 0.));
105 PdgIdMap[Particles[tsz].PdgId()] = tsz;
106 tsz++;
107
108 return true;
109 }
110
111 std::string NameByPdg(long long pdg)
112 {
113 int tid = PdgToId(pdg);
114 if (tid != -1)
115 return Particle(tid).Name();
116 return std::string("???");
117 }
118 } // namespace ExtraParticles
119
120} // namespace thermalfist
Contains some helper functions.
Class containing all information about a particle specie.
const std::string & Name() const
Particle's name.
Contains properties of non-QCD particles such as photons and leptons.
const ThermalParticle & Particle(int id)
const ThermalParticle & ParticleByPdg(long long pdg)
std::string NameByPdg(long long pdg)
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9