File indexing completed on 2024-04-06 12:11:18
0001 #ifndef FastSimulation_Particle_pdg_functions_h
0002 #define FastSimulation_Particle_pdg_functions_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include "SimGeneral/HepPDTRecord/interface/ParticleDataTable.h"
0023
0024
0025
0026
0027
0028 namespace pdg {
0029 constexpr static double kInvalidMass = -99999;
0030 double mass(int pdgID, const HepPDT::ParticleDataTable* pdt);
0031
0032 constexpr static double kInvalidCtau = 1E99;
0033 double cTau(int pdgID, const HepPDT::ParticleDataTable* pdt);
0034 }
0035
0036 #endif