Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
|
#include <particle_def.h>
Public Member Functions | |
particle_def ()=default | |
Default constructor. | |
particle_def (const std::string &fname, const std::string &fnotation, double fmass, double fcharge, float fspin) | |
Constructor. | |
particle_def (const std::string &fname, const std::string &fnotation, particle_def &p) | |
Constructor to create an anti-particle. | |
particle_def (const particle_def &f) | |
Copy constructor. | |
particle_def & | operator= (const particle_def &)=default |
Assignment operator. | |
~particle_def ()=default | |
Destructor. | |
particle_def | anti_particle (const particle_def &p) |
Function for making an anti-particle. | |
void | print (std::ostream &file, int l) const |
void | set_mass (const double m) |
void | set_charge (const double z) |
Public Attributes | |
std::string | name = "none" |
std::string | notation = "none" |
Short name to make data summary files short. | |
double | mass = 0. |
double | charge = 0. |
float | spin = 0. |
Definition of particles. Only the basic information: the name, the notation, the mass, the charge, and other auxiliary data.
1999 - 2004, I. Smirnov
Definition at line 14 of file particle_def.h.
|
default |
Default constructor.
Referenced by anti_particle(), operator=(), particle_def(), particle_def(), particle_def(), and ~particle_def().
Heed::particle_def::particle_def | ( | const std::string & | fname, |
const std::string & | fnotation, | ||
double | fmass, | ||
double | fcharge, | ||
float | fspin ) |
Constructor.
Definition at line 43 of file particle_def.cpp.
Heed::particle_def::particle_def | ( | const std::string & | fname, |
const std::string & | fnotation, | ||
particle_def & | p ) |
Constructor to create an anti-particle.
Definition at line 50 of file particle_def.cpp.
|
inline |
|
default |
Destructor.
particle_def Heed::particle_def::anti_particle | ( | const particle_def & | p | ) |
Function for making an anti-particle.
Definition at line 58 of file particle_def.cpp.
Referenced by particle_def().
|
default |
Assignment operator.
void Heed::particle_def::print | ( | std::ostream & | file, |
int | l ) const |
Definition at line 68 of file particle_def.cpp.
void Heed::particle_def::set_charge | ( | const double | z | ) |
Definition at line 66 of file particle_def.cpp.
void Heed::particle_def::set_mass | ( | const double | m | ) |
Definition at line 64 of file particle_def.cpp.
double Heed::particle_def::charge = 0. |
Definition at line 20 of file particle_def.h.
Referenced by anti_particle(), Heed::operator<<(), particle_def(), particle_def(), and set_charge().
double Heed::particle_def::mass = 0. |
Definition at line 19 of file particle_def.h.
Referenced by anti_particle(), Heed::operator<<(), particle_def(), particle_def(), and set_mass().
std::string Heed::particle_def::name = "none" |
Definition at line 16 of file particle_def.h.
Referenced by anti_particle(), Heed::operator<<(), particle_def(), particle_def(), and particle_def().
std::string Heed::particle_def::notation = "none" |
Short name to make data summary files short.
Definition at line 18 of file particle_def.h.
Referenced by anti_particle(), Heed::operator<<(), particle_def(), particle_def(), and particle_def().
float Heed::particle_def::spin = 0. |
Definition at line 21 of file particle_def.h.
Referenced by anti_particle(), Heed::operator<<(), particle_def(), and particle_def().