Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
ExtraParticles.h
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 */
8#ifndef EXTRAPARTICLES_H
9#define EXTRAPARTICLES_H
10
11#include <map>
12#include <vector>
13#include <set>
14#include <fstream>
15
17
18namespace thermalfist {
19
21 namespace ExtraParticles {
22 const ThermalParticle& Particle(int id);
23 const ThermalParticle& ParticleByPdg(long long pdg);
24 int PdgToId(long long pdg);
25 bool Init();
26 std::string NameByPdg(long long pdg);
27 }
28
29 namespace DecayLifetimes {
30 // In units of ctau (fm)
31 double GetLifetime(long long pdg);
32 }
33
34} // namespace thermalfist
35
36#endif
Class containing all information about a particle specie.
Contains decay lifetimes needed for propagation in Monte Carlo.
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