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::AtomDef Class Reference

#include <AtomDef.h>

Public Member Functions

 AtomDef ()=default
 Default constructor.
 
 AtomDef (const std::string &fnameh, const std::string &fnotationh, int fZh, double fAh)
 Constructor.
 
 ~AtomDef ()=default
 Destructor.
 
const std::string & name () const
 
const std::string & notation () const
 
int Z () const
 
double A () const
 
void print (std::ostream &file, int l=0) const
 
AtomDefcopy () const
 

Detailed Description

Definition of atoms. Only the basic information: name, notation, atomic weight and charge.

In principle I am going to initiate all atoms from Mendeleev's table, but I haven't finished yet. Only its first half is filled at the moment.

1998-2004, I. Smirnov.

Definition at line 18 of file AtomDef.h.

Constructor & Destructor Documentation

◆ AtomDef() [1/2]

Heed::AtomDef::AtomDef ( )
default

Default constructor.

Referenced by copy().

◆ AtomDef() [2/2]

Heed::AtomDef::AtomDef ( const std::string & fnameh,
const std::string & fnotationh,
int fZh,
double fAh )

Constructor.

Definition at line 14 of file AtomDef.cpp.

16 : nameh(fnameh), notationh(fnotationh), Zh(fZh), Ah(fAh) {
17 mfunname("AtomDef::AtomDef(...)");
18 static constexpr int max_poss_atom_z = 100;
19 check_econd21(fZh, < 1 ||, > max_poss_atom_z, mcerr);
20}
#define check_econd21(a, sign1_b1_sign0, sign2_b2, stream)
#define mfunname(string)
#define mcerr
Definition prstream.h:128

◆ ~AtomDef()

Heed::AtomDef::~AtomDef ( )
default

Destructor.

Member Function Documentation

◆ A()

double Heed::AtomDef::A ( ) const
inline

Definition at line 38 of file AtomDef.h.

38{ return Ah; }

Referenced by Heed::operator<<().

◆ copy()

AtomDef * Heed::AtomDef::copy ( ) const
inline

Definition at line 41 of file AtomDef.h.

41{ return new AtomDef(*this); }
AtomDef()=default
Default constructor.

◆ name()

const std::string & Heed::AtomDef::name ( ) const
inline

Definition at line 35 of file AtomDef.h.

35{ return nameh; }

Referenced by Heed::operator<<().

◆ notation()

const std::string & Heed::AtomDef::notation ( ) const
inline

Definition at line 36 of file AtomDef.h.

36{ return notationh; }

Referenced by Heed::operator<<().

◆ print()

void Heed::AtomDef::print ( std::ostream & file,
int l = 0 ) const

Definition at line 22 of file AtomDef.cpp.

22 {
23 if (l > 0) file << (*this);
24}

◆ Z()

int Heed::AtomDef::Z ( ) const
inline

Definition at line 37 of file AtomDef.h.

37{ return Zh; }

Referenced by Heed::operator<<().


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