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

#include <AtomDef.h>

+ Inheritance diagram for Heed::AtomMixDef:

Public Member Functions

 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 atomic mixtures. Pointers to atoms, weights and various mean parameters.

Definition at line 73 of file AtomDef.h.

Constructor & Destructor Documentation

◆ AtomMixDef() [1/3]

Heed::AtomMixDef::AtomMixDef ( )
default

Default constructor.

Referenced by Heed::MatterDef::MatterDef(), and Heed::MoleculeDef::MoleculeDef().

◆ AtomMixDef() [2/3]

Heed::AtomMixDef::AtomMixDef ( unsigned long fqatom,
const std::vector< std::string > & fatom_not,
const std::vector< double > & fweight_quan )

Constructor from list of atoms and weights.

Definition at line 143 of file AtomDef.cpp.

146 : qatomh(fqatom),
147 atomh(fqatom, nullptr),
148 weight_quanh(fqatom, 0.0),
149 weight_massh(fqatom, 0.0) {
150 mfunnamep("AtomMixDef::AtomMixDef(...)");
151 check_econd11(fqatom, <= 0, mcerr);
152 check_econd12(fqatom, >, fatom_not.size(), mcerr);
153 check_econd12(fqatom, >, fweight_quan.size(), mcerr);
154
155 for (long n = 0; n < qatomh; ++n) {
156 auto ad = AtomDefs::getAtom(fatom_not[n]);
157 if (!ad) {
158 funnw.ehdr(mcerr);
159 mcerr << "cannot find atom with notation " << fatom_not[n]
160 << "\nIn particular, check the sequence of initialization\n";
161 spexit(mcerr);
162 }
163 atomh[n] = ad;
164 }
165 double s = 0.0;
166 for (long n = 0; n < qatomh; n++) {
167 weight_quanh[n] = fweight_quan[n];
168 check_econd11(weight_quanh[n], <= 0, mcerr);
169 s += weight_quanh[n];
170 }
171 check_econd11(s, <= 0, mcerr);
172 if (s != 1.0) {
173 for (long n = 0; n < qatomh; n++) {
174 weight_quanh[n] /= s;
175 }
176 }
177 for (long n = 0; n < qatomh; n++) {
178 weight_massh[n] = weight_quanh[n] * atomh[n]->A();
179 }
180 s = 0.0;
181 for (long n = 0; n < qatomh; n++) {
182 s += weight_massh[n];
183 }
184 check_econd11(s, <= 0, mcerr);
185 if (s != 1.0) {
186 for (long n = 0; n < qatomh; n++) {
187 weight_massh[n] /= s;
188 }
189 }
190 for (long n = 0; n < qatomh; n++) {
191 Z_meanh += atomh[n]->Z() * weight_quanh[n];
192 A_meanh += atomh[n]->A() * weight_quanh[n];
193 inv_A_meanh += (1.0 / atomh[n]->A()) * weight_quanh[n];
194 }
195 mean_ratio_Z_to_Ah = Z_meanh / A_meanh;
196 NumberOfElectronsInGramh = mean_ratio_Z_to_Ah * (gram / mole) * Avogadro;
197}
#define check_econd11(a, signb, stream)
#define mfunnamep(string)
#define spexit(stream)
#define check_econd12(a, sign, b, stream)
static const AtomDef * getAtom(const std::string &fnotation)
Definition AtomDef.cpp:114
#define mcerr
Definition prstream.h:128

◆ AtomMixDef() [3/3]

Heed::AtomMixDef::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.

Definition at line 199 of file AtomDef.cpp.

202 : qatomh(fqatom),
203 atomh(fqatom, nullptr),
204 weight_quanh(fqatom, 0.0),
205 weight_massh(fqatom, 0.0) {
206 mfunnamep("AtomMixDef::AtomMixDef(...)");
207 check_econd11(fqatom, <= 0, mcerr);
208 check_econd12(fqatom, >, fatom_not.size(), mcerr);
209 check_econd12(fqatom, >, fweight_quan.size(), mcerr);
210
211 for (long n = 0; n < qatomh; ++n) {
212 auto ad = AtomDefs::getAtom(fatom_not[n]);
213 if (!ad) {
214 funnw.ehdr(mcerr);
215 mcerr << "cannot find atom with notation " << fatom_not[n]
216 << "\nIn particular, check the sequence of initialization\n";
217 spexit(mcerr);
218 }
219 atomh[n] = ad;
220 }
221 double s = 0.0;
222 for (long n = 0; n < qatomh; n++) {
223 weight_quanh[n] = fweight_quan[n];
224 check_econd11(weight_quanh[n], <= 0, mcerr);
225 s += weight_quanh[n];
226 }
227 check_econd11(s, <= 0, mcerr);
228 if (s != 1.0) {
229 for (long n = 0; n < qatomh; n++) {
230 weight_quanh[n] /= s;
231 }
232 }
233 for (long n = 0; n < qatomh; n++) {
234 weight_massh[n] = weight_quanh[n] * atomh[n]->A();
235 }
236 s = 0.0;
237 for (long n = 0; n < qatomh; n++) {
238 s += weight_massh[n];
239 }
240 check_econd11(s, <= 0, mcerr);
241 if (s != 1.0) {
242 for (long n = 0; n < qatomh; n++) {
243 weight_massh[n] /= s;
244 }
245 }
246 for (long n = 0; n < qatomh; n++) {
247 Z_meanh += atomh[n]->Z() * weight_quanh[n];
248 A_meanh += atomh[n]->A() * weight_quanh[n];
249 inv_A_meanh += (1.0 / atomh[n]->A()) * weight_quanh[n];
250 }
251 mean_ratio_Z_to_Ah = Z_meanh / A_meanh;
252 NumberOfElectronsInGramh = mean_ratio_Z_to_Ah * (gram / mole) * Avogadro;
253}

Member Function Documentation

◆ A_mean()

double Heed::AtomMixDef::A_mean ( ) const
inline

Definition at line 109 of file AtomDef.h.

109{ return A_meanh; }

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

◆ atom() [1/2]

const std::vector< const AtomDef * > & Heed::AtomMixDef::atom ( ) const
inline

Definition at line 102 of file AtomDef.h.

102{ return atomh; }

Referenced by Heed::MoleculeDef::MoleculeDef(), Heed::operator<<(), and Heed::operator<<().

◆ atom() [2/2]

const AtomDef * Heed::AtomMixDef::atom ( long n) const
inline

Definition at line 103 of file AtomDef.h.

103{ return atomh[n]; }

◆ inv_A_mean()

double Heed::AtomMixDef::inv_A_mean ( ) const
inline

Definition at line 110 of file AtomDef.h.

110{ return inv_A_meanh; }

Referenced by Heed::operator<<().

◆ mean_ratio_Z_to_A()

double Heed::AtomMixDef::mean_ratio_Z_to_A ( ) const
inline

Definition at line 111 of file AtomDef.h.

111{ return mean_ratio_Z_to_Ah; }

Referenced by Heed::operator<<().

◆ NumberOfElectronsInGram()

double Heed::AtomMixDef::NumberOfElectronsInGram ( ) const
inline

Definition at line 112 of file AtomDef.h.

112 {
113 return NumberOfElectronsInGramh;
114 }

Referenced by Heed::operator<<().

◆ print()

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

Definition at line 255 of file AtomDef.cpp.

255 {
256 if (l > 0) file << (*this);
257}

◆ qatom()

◆ weight_mass() [1/2]

const std::vector< double > & Heed::AtomMixDef::weight_mass ( ) const
inline

Definition at line 105 of file AtomDef.h.

105{ return weight_massh; }

Referenced by Heed::operator<<().

◆ weight_mass() [2/2]

double Heed::AtomMixDef::weight_mass ( long n) const
inline

Definition at line 107 of file AtomDef.h.

107{ return weight_massh[n]; }

◆ weight_quan() [1/2]

const std::vector< double > & Heed::AtomMixDef::weight_quan ( ) const
inline

Definition at line 104 of file AtomDef.h.

104{ return weight_quanh; }

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

◆ weight_quan() [2/2]

double Heed::AtomMixDef::weight_quan ( long n) const
inline

Definition at line 106 of file AtomDef.h.

106{ return weight_quanh[n]; }

◆ Z_mean()

double Heed::AtomMixDef::Z_mean ( ) const
inline

Definition at line 108 of file AtomDef.h.

108{ return Z_meanh; }

Referenced by Heed::operator<<().


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