Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Heed::particle_def Class Reference

#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_defoperator= (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.
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ particle_def() [1/4]

Heed::particle_def::particle_def ( )
default

◆ particle_def() [2/4]

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.

45 :
46 name(fname), notation(fnotation), mass(fmass),
47 charge(fcharge), spin(fspin) {
48}
std::string notation
Short name to make data summary files short.

◆ particle_def() [3/4]

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.

51 {
52 // creates anti-particle through the call of anti_particle(p)
53 *this = anti_particle(p);
54 if (!(fname == "" || fname == " ")) name = fname;
55 if (!(fnotation == "" || fnotation == " ")) notation = fnotation;
56}
particle_def anti_particle(const particle_def &p)
Function for making an anti-particle.

◆ particle_def() [4/4]

Heed::particle_def::particle_def ( const particle_def & f)
inline

Copy constructor.

Definition at line 31 of file particle_def.h.

32 : name(f.name), notation(f.notation), mass(f.mass), charge(f.charge),
33 spin(f.spin) {
34 }

◆ ~particle_def()

Heed::particle_def::~particle_def ( )
default

Destructor.

Member Function Documentation

◆ anti_particle()

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.

58 {
59 std::string aname = "anti-" + p.name;
60 std::string anot = "anti-" + p.notation;
61 return particle_def(aname, anot, p.mass, -p.charge, -p.spin);
62}
particle_def()=default
Default constructor.

Referenced by particle_def().

◆ operator=()

particle_def & Heed::particle_def::operator= ( const particle_def & )
default

Assignment operator.

◆ print()

void Heed::particle_def::print ( std::ostream & file,
int l ) const

Definition at line 68 of file particle_def.cpp.

68 {
69 if (l > 0) file << (*this);
70}

◆ set_charge()

void Heed::particle_def::set_charge ( const double z)

Definition at line 66 of file particle_def.cpp.

66{ charge = z * eplus; }

◆ set_mass()

void Heed::particle_def::set_mass ( const double m)

Definition at line 64 of file particle_def.cpp.

64{ mass = m * MeV / c_squared; }

Member Data Documentation

◆ charge

double Heed::particle_def::charge = 0.

◆ mass

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().

◆ name

std::string Heed::particle_def::name = "none"

◆ notation

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().

◆ spin

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().


The documentation for this class was generated from the following files: