Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4NistElementBuilder Class Reference

#include <G4NistElementBuilder.hh>

Public Member Functions

 G4NistElementBuilder (G4int vb)
 
 ~G4NistElementBuilder ()=default
 
G4ElementFindElement (G4int Z) const
 
G4ElementFindOrBuildElement (G4int Z, G4bool buildIsotopes=true)
 
G4ElementFindOrBuildElement (const G4String &symb, G4bool buildIsotopes=true)
 
void PrintElement (G4int Z) const
 
const std::vector< G4String > & GetElementNames () const
 
G4int GetZ (const G4String &symb) const
 
G4double GetAtomicMassAmu (const G4String &symb) const
 
G4double GetAtomicMassAmu (G4int Z) const
 
G4double GetIsotopeMass (G4int Z, G4int N) const
 
G4double GetAtomicMass (G4int Z, G4int N) const
 
G4double GetTotalElectronBindingEnergy (G4int Z) const
 
G4double GetIsotopeAbundance (G4int Z, G4int N) const
 
G4int GetNistFirstIsotopeN (G4int Z) const
 
G4int GetNumberOfNistIsotopes (G4int Z) const
 
G4int GetMaxNumElements () const
 
void SetVerbose (G4int)
 

Detailed Description

Definition at line 63 of file G4NistElementBuilder.hh.

Constructor & Destructor Documentation

◆ G4NistElementBuilder()

G4NistElementBuilder::G4NistElementBuilder ( G4int vb)
explicit

Definition at line 67 of file G4NistElementBuilder.cc.

67 : verbose(vb)
68{
69 atomicMass[0] = 0.0;
70 nFirstIsotope[0] = 0;
71 nIsotopes[0] = 0;
72 idxIsotopes[0] = 0;
73 elmSymbol.push_back(" ");
74 Initialise();
75 for (G4int i=0; i<maxNumElements; ++i) {
76 elmIndex[i] = -1;
77 }
78}
const G4int maxNumElements
int G4int
Definition G4Types.hh:85

◆ ~G4NistElementBuilder()

G4NistElementBuilder::~G4NistElementBuilder ( )
default

Member Function Documentation

◆ FindElement()

G4Element * G4NistElementBuilder::FindElement ( G4int Z) const
inline

Definition at line 233 of file G4NistElementBuilder.hh.

234{
235 const G4ElementTable* theElementTable = G4Element::GetElementTable();
236 return (Z > 0 && Z < maxNumElements && elmIndex[Z] >= 0) ? (*theElementTable)[elmIndex[Z]]
237 : nullptr;
238}
std::vector< G4Element * > G4ElementTable
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401

Referenced by FindOrBuildElement().

◆ FindOrBuildElement() [1/2]

G4Element * G4NistElementBuilder::FindOrBuildElement ( const G4String & symb,
G4bool buildIsotopes = true )

Definition at line 117 of file G4NistElementBuilder.cc.

118{
119 G4Element* elm = nullptr;
120 const G4ElementTable* theElementTable = G4Element::GetElementTable();
121 std::size_t nelm = theElementTable->size();
122 for (std::size_t i = 0; i < nelm; ++i) {
123 if (symb == ((*theElementTable)[i])->GetSymbol()) {
124 elm = (*theElementTable)[i];
125 break;
126 }
127 }
128 if (nullptr == elm) {
129 for (G4int Z = 1; Z < maxNumElements; ++Z) {
130 if (symb == elmSymbol[Z]) {
131 elm = BuildElement(Z);
132 break;
133 }
134 }
135 }
136 return elm;
137}

◆ FindOrBuildElement() [2/2]

G4Element * G4NistElementBuilder::FindOrBuildElement ( G4int Z,
G4bool buildIsotopes = true )

Definition at line 106 of file G4NistElementBuilder.cc.

107{
108 G4Element* anElement = FindElement(Z);
109 if (anElement == nullptr && Z > 0 && Z < maxNumElements) {
110 anElement = BuildElement(Z);
111 }
112 return anElement;
113}
G4Element * FindElement(G4int Z) const

◆ GetAtomicMass()

G4double G4NistElementBuilder::GetAtomicMass ( G4int Z,
G4int N ) const
inline

Definition at line 169 of file G4NistElementBuilder.hh.

170{
171 G4double mass = 0.0;
172 if (Z > 0 && Z < maxNumElements) {
173 G4int i = N - nFirstIsotope[Z];
174 if (i >= 0 && i < nIsotopes[Z]) {
175 mass = massIsotopes[i + idxIsotopes[Z]] + Z * CLHEP::electron_mass_c2 - bindingEnergy[Z];
176 }
177 }
178 return mass;
179}
double G4double
Definition G4Types.hh:83
#define N
Definition crc32.c:57

Referenced by PrintElement().

◆ GetAtomicMassAmu() [1/2]

G4double G4NistElementBuilder::GetAtomicMassAmu ( const G4String & symb) const

Definition at line 94 of file G4NistElementBuilder.cc.

95{
97 // Loop checking, 07-Aug-2015, Vladimir Ivanchenko
98 do {
99 --Z;
100 } while (Z > 0 && elmSymbol[Z] != name);
101 return GetAtomicMassAmu(Z);
102}
G4double GetAtomicMassAmu(const G4String &symb) const

Referenced by GetAtomicMassAmu().

◆ GetAtomicMassAmu() [2/2]

G4double G4NistElementBuilder::GetAtomicMassAmu ( G4int Z) const
inline

Definition at line 148 of file G4NistElementBuilder.hh.

149{
150 return (Z > 0 && Z < maxNumElements) ? atomicMass[Z] : 0.0;
151}

◆ GetElementNames()

const std::vector< G4String > & G4NistElementBuilder::GetElementNames ( ) const
inline

Definition at line 218 of file G4NistElementBuilder.hh.

219{
220 return elmSymbol;
221}

◆ GetIsotopeAbundance()

G4double G4NistElementBuilder::GetIsotopeAbundance ( G4int Z,
G4int N ) const
inline

Definition at line 190 of file G4NistElementBuilder.hh.

191{
192 G4double x = 0.0;
193 if (Z > 0 && Z < maxNumElements) {
194 G4int i = N - nFirstIsotope[Z];
195 if (i >= 0 && i < nIsotopes[Z]) {
196 x = relAbundance[i + idxIsotopes[Z]];
197 }
198 }
199 return x;
200}

Referenced by G4LENDCrossSection::create_used_target_map(), and G4LENDModel::create_used_target_map().

◆ GetIsotopeMass()

G4double G4NistElementBuilder::GetIsotopeMass ( G4int Z,
G4int N ) const
inline

Definition at line 155 of file G4NistElementBuilder.hh.

156{
157 G4double mass = 0.0;
158 if (Z > 0 && Z < maxNumElements) {
159 G4int i = N - nFirstIsotope[Z];
160 if (i >= 0 && i < nIsotopes[Z]) {
161 mass = massIsotopes[i + idxIsotopes[Z]];
162 }
163 }
164 return mass;
165}

◆ GetMaxNumElements()

G4int G4NistElementBuilder::GetMaxNumElements ( ) const
inline

Definition at line 225 of file G4NistElementBuilder.hh.

225{ return maxNumElements - 1; }

◆ GetNistFirstIsotopeN()

G4int G4NistElementBuilder::GetNistFirstIsotopeN ( G4int Z) const
inline

Definition at line 204 of file G4NistElementBuilder.hh.

205{
206 return (Z > 0 && Z < maxNumElements) ? nFirstIsotope[Z] : 0;
207}

Referenced by G4LENDCrossSection::create_used_target_map(), and G4LENDModel::create_used_target_map().

◆ GetNumberOfNistIsotopes()

G4int G4NistElementBuilder::GetNumberOfNistIsotopes ( G4int Z) const
inline

Definition at line 211 of file G4NistElementBuilder.hh.

212{
213 return (Z > 0 && Z < maxNumElements) ? nIsotopes[Z] : 0;
214}

Referenced by G4LENDCrossSection::create_used_target_map(), and G4LENDModel::create_used_target_map().

◆ GetTotalElectronBindingEnergy()

G4double G4NistElementBuilder::GetTotalElectronBindingEnergy ( G4int Z) const
inline

Definition at line 183 of file G4NistElementBuilder.hh.

184{
185 return (Z > 0 && Z < maxNumElements) ? bindingEnergy[Z] : 0.0;
186}

◆ GetZ()

G4int G4NistElementBuilder::GetZ ( const G4String & symb) const

Definition at line 82 of file G4NistElementBuilder.cc.

83{
85 // Loop checking, 07-Aug-2015, Vladimir Ivanchenko
86 do {
87 --Z;
88 } while (Z > 0 && elmSymbol[Z] != name);
89 return Z;
90}

◆ PrintElement()

void G4NistElementBuilder::PrintElement ( G4int Z) const

Definition at line 201 of file G4NistElementBuilder.cc.

202{
203 G4int imin = Z;
204 G4int imax = Z + 1;
205 if (Z == 0) {
206 imin = 1;
207 imax = maxNumElements;
208 }
209 if (imax > maxNumElements) {
210 imax = maxNumElements;
211 }
212
213 for (G4int i = imin; i < imax; ++i) {
214 G4int nc = nIsotopes[i];
215 G4cout << "Nist Element: <" << elmSymbol[i] << "> Z= " << i << " Aeff(amu)= " << atomicMass[i]
216 << " " << nc << " isotopes:" << G4endl;
217 G4int j;
218 G4int idx = idxIsotopes[i];
219 G4int n0 = nFirstIsotope[i];
220 G4cout << " N: ";
221 for (j = 0; j < nc; ++j) {
222 G4cout << n0 + j << " ";
223 }
224 G4cout << G4endl;
225 G4cout << " mass(amu): ";
226 for (j = 0; j < nc; ++j) {
227 G4cout << GetAtomicMass(i, n0 + j) << " ";
228 }
229 G4cout << G4endl;
230 G4cout << " abundance: ";
231 for (j = 0; j < nc; ++j) {
232 G4cout << relAbundance[idx + j] << " ";
233 }
234 G4cout << G4endl;
235 }
236}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4double GetAtomicMass(G4int Z, G4int N) const

◆ SetVerbose()

void G4NistElementBuilder::SetVerbose ( G4int val)
inline

Definition at line 229 of file G4NistElementBuilder.hh.

229{ verbose = val; }

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