1 #ifndef __JAANET__JPDB__
2 #define __JAANET__JPDB__
24 namespace JPP {
using namespace JAANET; }
78 return out << setw(32) << left << particle.
name <<
" "
79 << setw( 6) << right << particle.
pdg <<
" "
80 << setw( 6) << right << particle.
geant <<
" "
99 #define MAKE_PARTICLE(PDG, GEANT, MASS) JParticle(#PDG, PDG, GEANT, MASS)
123 using namespace JAANET;
124 using namespace JTOOLS;
201 if (p != this->end())
231 if (p != this->end())
249 out << setw(32) << left <<
"particle" <<
" "
250 << setw( 6) << right <<
"PDG" <<
" "
251 << setw( 6) << right <<
"GEANT" <<
" "
252 << setw(12) << right <<
"Mass [GeV]" << endl;
254 for (JPDB::const_iterator i = pdb.begin(); i != pdb.end(); ++i) {
std::string name
name of particle
JPredicate< JResult_t T::*, JComparison::eq > make_predicate(JResult_t T::*member, const JResult_t value)
Helper method to create predicate for data member.
const JParticle & getGEANT(const int geant) const
Get particle corresponding to given GEANT code.
#define THROW(JException_t, A)
Marco for throwing exception with std::ostream compatible message.
const JParticle & getPDG(const int pdg) const
Get particle corresponding to given PDG code.
JParticle()
Default constructor.
Auxiliary data structure for floating point format specification.
JPDB()
Default constructor.
static const JPDB & getInstance()
Get particle data book.
I/O formatting auxiliaries.
bool hasGEANT(const int geant) const
Check if PDB has particle corresponding to given GEANT code.
friend std::ostream & operator<<(std::ostream &out, const JPDB &pdb)
Print particle data book.
Auxiliary class to handle particle name, codes and mass.
bool hasPDG(const int pdg) const
Check if PDB has particle corresponding to given PDG code.
double mass
mass of particle [GeV]
friend std::ostream & operator<<(std::ostream &out, const JParticle &particle)
Print particle.
int geant
GEANT code of particle.
Definition of particle types.
int pdg
PDG code of particle.
#define MAKE_PARTICLE(PDG, GEANT, MASS)
Auxiliary macro for particle creation.
JParticle(const std::string &name, const int pdg, const int geant, const double mass)
Constructor.