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

#include <MatterDef.h>

+ Inheritance diagram for Heed::MatterDef:

Public Member Functions

 MatterDef ()=default
 
 MatterDef (const std::string &fname, const std::string &fnotation, long fqatom, const std::vector< std::string > &fatom_not, const std::vector< double > &fweight_quan, double fdensity, double ftemperature)
 
 MatterDef (const std::string &fname, const std::string &fnotation, const std::string &fatom_not, double fdensity, double ftemperature)
 
 MatterDef (const std::string &fname, const std::string &fnotation, const std::string &fatom_not1, double fweight_quan1, const std::string &fatom_not2, double fweight_quan2, double fdensity, double ftemperature)
 
 MatterDef (const std::string &fname, const std::string &fnotation, const std::string &fatom_not1, double fweight_quan1, const std::string &fatom_not2, double fweight_quan2, const std::string &fatom_not3, double fweight_quan3, double fdensity, double ftemperature)
 
virtual ~MatterDef ()=default
 
const std::string & name () const
 
const std::string & notation () const
 
double density () const
 
double temperature () const
 
double I_eff () const
 
void print (std::ostream &file, int l) const
 
MatterDefcopy () const
 
- Public Member Functions inherited from Heed::AtomMixDef
 AtomMixDef ()=default
 Default constructor.
 
 AtomMixDef (unsigned long fqatom, const std::vector< std::string > &fatom_not, const std::vector< double > &fweight_quan)
 Constructor from list of atoms and weights.
 
 AtomMixDef (unsigned long fqatom, const std::vector< std::string > &fatom_not, const std::vector< long > &fweight_quan)
 Constructor from list of atoms and number of atoms per molecule.
 
void print (std::ostream &file, int l) const
 
long qatom () const
 
const std::vector< const AtomDef * > & atom () const
 
const AtomDefatom (long n) const
 
const std::vector< double > & weight_quan () const
 
const std::vector< double > & weight_mass () const
 
double weight_quan (long n) const
 
double weight_mass (long n) const
 
double Z_mean () const
 
double A_mean () const
 
double inv_A_mean () const
 
double mean_ratio_Z_to_A () const
 
double NumberOfElectronsInGram () const
 

Detailed Description

Definition of matter (material or any media). Only the basic information: the name, the notation, the atomic mixture, temperature, density, effective ionization potential.

1998-2004 I. Smirnov

Definition at line 14 of file MatterDef.h.

Constructor & Destructor Documentation

◆ MatterDef() [1/5]

Heed::MatterDef::MatterDef ( )
default

◆ MatterDef() [2/5]

Heed::MatterDef::MatterDef ( const std::string & fname,
const std::string & fnotation,
long fqatom,
const std::vector< std::string > & fatom_not,
const std::vector< double > & fweight_quan,
double fdensity,
double ftemperature )

Definition at line 12 of file MatterDef.cpp.

16 : AtomMixDef(fqatom, fatom_not, fweight_quan),
17 nameh(fname),
18 notationh(fnotation),
19 temperatureh(ftemperature),
20 densityh(fdensity) {
21 mfunname("MatterDef::MatterDef(...)");
22 calc_I_eff();
23}
#define mfunname(string)
AtomMixDef()=default
Default constructor.

◆ MatterDef() [3/5]

Heed::MatterDef::MatterDef ( const std::string & fname,
const std::string & fnotation,
const std::string & fatom_not,
double fdensity,
double ftemperature )

Definition at line 25 of file MatterDef.cpp.

27 :
28 MatterDef(fname, fnotation, 1, {fatom_not}, {1.}, fdensity, ftemperature) {
29
30}
MatterDef()=default

◆ MatterDef() [4/5]

Heed::MatterDef::MatterDef ( const std::string & fname,
const std::string & fnotation,
const std::string & fatom_not1,
double fweight_quan1,
const std::string & fatom_not2,
double fweight_quan2,
double fdensity,
double ftemperature )

Definition at line 32 of file MatterDef.cpp.

35 :
36 MatterDef(fname, fnotation, 2, {fatom_not1, fatom_not2},
37 {fweight_quan1, fweight_quan2}, fdensity, ftemperature) {
38
39}

◆ MatterDef() [5/5]

Heed::MatterDef::MatterDef ( const std::string & fname,
const std::string & fnotation,
const std::string & fatom_not1,
double fweight_quan1,
const std::string & fatom_not2,
double fweight_quan2,
const std::string & fatom_not3,
double fweight_quan3,
double fdensity,
double ftemperature )

Definition at line 41 of file MatterDef.cpp.

45 :
46 MatterDef(fname, fnotation, 3, {fatom_not1, fatom_not2, fatom_not3},
47 {fweight_quan1, fweight_quan2, fweight_quan3},
48 fdensity, ftemperature) {
49
50}

◆ ~MatterDef()

virtual Heed::MatterDef::~MatterDef ( )
virtualdefault

Member Function Documentation

◆ copy()

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

Definition at line 51 of file MatterDef.h.

51{ return new MatterDef(*this); }

◆ density()

double Heed::MatterDef::density ( ) const
inline

Definition at line 46 of file MatterDef.h.

46{ return densityh; }

Referenced by Heed::operator<<(), and Heed::HeedPhoton::physics().

◆ I_eff()

double Heed::MatterDef::I_eff ( ) const
inline

Definition at line 48 of file MatterDef.h.

48{ return I_effh; }

Referenced by Heed::operator<<().

◆ name()

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

Definition at line 44 of file MatterDef.h.

44{ return nameh; }

Referenced by Heed::operator<<().

◆ notation()

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

Definition at line 45 of file MatterDef.h.

45{ return notationh; }

Referenced by Heed::operator<<().

◆ print()

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

Definition at line 52 of file MatterDef.cpp.

52 {
53 if (l > 0) file << (*this);
54}

◆ temperature()

double Heed::MatterDef::temperature ( ) const
inline

Definition at line 47 of file MatterDef.h.

47{ return temperatureh; }

Referenced by Heed::operator<<().


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