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

#include <G4NistManager.hh>

Public Member Functions

 ~G4NistManager ()
 
G4ElementGetElement (std::size_t index) const
 
G4ElementFindElement (G4int Z) const
 
G4ElementFindOrBuildElement (G4int Z, G4bool isotopes=true)
 
G4ElementFindOrBuildElement (const G4String &symb, G4bool isotopes=true)
 
std::size_t GetNumberOfElements () 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
 
G4int GetNistFirstIsotopeN (G4int Z) const
 
G4int GetNumberOfNistIsotopes (G4int Z) const
 
G4double GetIsotopeAbundance (G4int Z, G4int N) const
 
void PrintElement (G4int Z) const
 
void PrintElement (const G4String &) const
 
void PrintG4Element (const G4String &) const
 
const std::vector< G4String > & GetNistElementNames () const
 
G4double GetMeanIonisationEnergy (G4int Z) const
 
G4double GetNominalDensity (G4int Z) const
 
G4MaterialGetMaterial (std::size_t index) const
 
G4MaterialFindMaterial (const G4String &name) const
 
G4MaterialFindOrBuildMaterial (const G4String &name, G4bool isotopes=true, G4bool warning=false)
 
G4MaterialFindSimpleMaterial (G4int Z) const
 
G4MaterialFindOrBuildSimpleMaterial (G4int Z, G4bool warning=false)
 
G4MaterialBuildMaterialWithNewDensity (const G4String &name, const G4String &basename, G4double density=0.0, G4double temp=NTP_Temperature, G4double pres=CLHEP::STP_Pressure)
 
G4MaterialConstructNewMaterial (const G4String &name, const std::vector< G4String > &elm, const std::vector< G4int > &nbAtoms, G4double dens, G4bool isotopes=true, G4State state=kStateSolid, G4double temp=NTP_Temperature, G4double pressure=CLHEP::STP_Pressure)
 
G4MaterialConstructNewMaterial (const G4String &name, const std::vector< G4String > &elm, const std::vector< G4double > &weight, G4double dens, G4bool isotopes=true, G4State state=kStateSolid, G4double temp=NTP_Temperature, G4double pressure=CLHEP::STP_Pressure)
 
G4MaterialConstructNewGasMaterial (const G4String &name, const G4String &nameNist, G4double temp, G4double pres, G4bool isotopes=true)
 
G4MaterialConstructNewIdealGasMaterial (const G4String &name, const std::vector< G4String > &elm, const std::vector< G4int > &nbAtoms, G4bool isotopes=true, G4double temp=NTP_Temperature, G4double pressure=CLHEP::STP_Pressure)
 
void SetDensityEffectCalculatorFlag (const G4String &, G4bool)
 
void SetDensityEffectCalculatorFlag (G4Material *, G4bool)
 
std::size_t GetNumberOfMaterials () const
 
G4int GetVerbose () const
 
void SetVerbose (G4int)
 
void PrintG4Material (const G4String &) const
 
void ListMaterials (const G4String &) const
 
const std::vector< G4String > & GetNistMaterialNames () const
 
G4double GetZ13 (G4double Z) const
 
G4double GetZ13 (G4int Z) const
 
G4double GetA27 (G4int Z) const
 
G4double GetLOGZ (G4int Z) const
 
G4double GetLOGAMU (G4int Z) const
 
G4ICRU90StoppingDataGetICRU90StoppingData ()
 

Static Public Member Functions

static G4NistManagerInstance ()
 

Detailed Description

Definition at line 75 of file G4NistManager.hh.

Constructor & Destructor Documentation

◆ ~G4NistManager()

G4NistManager::~G4NistManager ( )

Definition at line 65 of file G4NistManager.cc.

66{
67 delete messenger;
68 delete matBuilder;
69 delete elmBuilder;
70 delete fICRU90;
71}

Member Function Documentation

◆ BuildMaterialWithNewDensity()

G4Material * G4NistManager::BuildMaterialWithNewDensity ( const G4String & name,
const G4String & basename,
G4double density = 0.0,
G4double temp = NTP_Temperature,
G4double pres = CLHEP::STP_Pressure )

Definition at line 75 of file G4NistManager.cc.

77{
78 G4Material* bmat = FindOrBuildMaterial(name);
79 if (bmat != nullptr) {
80 G4cout << "G4NistManager::BuildMaterialWithNewDensity ERROR: " << G4endl;
81 G4cout << " New material <" << name << "> cannot be built because material"
82 << " with the same name already exists." << G4endl;
83 G4Exception("G4NistManager::BuildMaterialWithNewDensity()", "mat101", FatalException,
84 "Wrong material name");
85 return nullptr;
86 }
87 bmat = FindOrBuildMaterial(basename);
88 if (bmat == nullptr) {
89 G4cout << "G4NistManager::BuildMaterialWithNewDensity ERROR: " << G4endl;
90 G4cout << " New material <" << name << "> cannot be built because " << G4endl;
91 G4cout << " base material <" << basename << "> does not exist." << G4endl;
92 G4Exception("G4NistManager::BuildMaterialWithNewDensity()", "mat102", FatalException,
93 "Wrong material name");
94 return nullptr;
95 }
96 G4double dens = density;
97 G4double temp = temperature;
98 G4double pres = pressure;
99 if (dens == 0.0) {
100 dens = bmat->GetDensity();
101 temp = bmat->GetTemperature();
102 pres = bmat->GetPressure();
103 }
104 auto mat = new G4Material(name, dens, bmat, bmat->GetState(), temp, pres);
105 return mat;
106}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
double G4double
Definition G4Types.hh:83
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4double GetPressure() const
G4double GetDensity() const
G4State GetState() const
G4double GetTemperature() const
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
const char * name(G4int ptype)

◆ ConstructNewGasMaterial()

G4Material * G4NistManager::ConstructNewGasMaterial ( const G4String & name,
const G4String & nameNist,
G4double temp,
G4double pres,
G4bool isotopes = true )
inline

Definition at line 460 of file G4NistManager.hh.

462{
463 return matBuilder->ConstructNewGasMaterial(name, nameNist, temp, pres);
464}

◆ ConstructNewIdealGasMaterial()

G4Material * G4NistManager::ConstructNewIdealGasMaterial ( const G4String & name,
const std::vector< G4String > & elm,
const std::vector< G4int > & nbAtoms,
G4bool isotopes = true,
G4double temp = NTP_Temperature,
G4double pressure = CLHEP::STP_Pressure )
inline

Definition at line 468 of file G4NistManager.hh.

471{
472 return matBuilder->ConstructNewIdealGasMaterial(name, elm, nbAtoms, T, P);
473}

◆ ConstructNewMaterial() [1/2]

G4Material * G4NistManager::ConstructNewMaterial ( const G4String & name,
const std::vector< G4String > & elm,
const std::vector< G4double > & weight,
G4double dens,
G4bool isotopes = true,
G4State state = kStateSolid,
G4double temp = NTP_Temperature,
G4double pressure = CLHEP::STP_Pressure )
inline

Definition at line 451 of file G4NistManager.hh.

454{
455 return matBuilder->ConstructNewMaterial(name, elm, w, dens, state, T, P);
456}

◆ ConstructNewMaterial() [2/2]

G4Material * G4NistManager::ConstructNewMaterial ( const G4String & name,
const std::vector< G4String > & elm,
const std::vector< G4int > & nbAtoms,
G4double dens,
G4bool isotopes = true,
G4State state = kStateSolid,
G4double temp = NTP_Temperature,
G4double pressure = CLHEP::STP_Pressure )
inline

Definition at line 441 of file G4NistManager.hh.

445{
446 return matBuilder->ConstructNewMaterial(name, elm, nbAtoms, dens, state, T, P);
447}

◆ FindElement()

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

Definition at line 295 of file G4NistManager.hh.

295{ return elmBuilder->FindElement(Z); }

◆ FindMaterial()

G4Material * G4NistManager::FindMaterial ( const G4String & name) const
inline

Definition at line 413 of file G4NistManager.hh.

414{
415 return matBuilder->FindMaterial(name);
416}

Referenced by SetDensityEffectCalculatorFlag().

◆ FindOrBuildElement() [1/2]

G4Element * G4NistManager::FindOrBuildElement ( const G4String & symb,
G4bool isotopes = true )
inline

Definition at line 306 of file G4NistManager.hh.

307{
308 return elmBuilder->FindOrBuildElement(symb, isotopes);
309}

◆ FindOrBuildElement() [2/2]

G4Element * G4NistManager::FindOrBuildElement ( G4int Z,
G4bool isotopes = true )
inline

Definition at line 299 of file G4NistManager.hh.

300{
301 return elmBuilder->FindOrBuildElement(Z, isotopes);
302}

Referenced by G4tgbMaterialMgr::FindOrBuildG4Element(), G4Material::G4Material(), and G4GDMLReadMaterials::GetElement().

◆ FindOrBuildMaterial()

◆ FindOrBuildSimpleMaterial()

G4Material * G4NistManager::FindOrBuildSimpleMaterial ( G4int Z,
G4bool warning = false )
inline

Definition at line 434 of file G4NistManager.hh.

435{
436 return matBuilder->FindOrBuildSimpleMaterial(Z, warning);
437}

◆ FindSimpleMaterial()

G4Material * G4NistManager::FindSimpleMaterial ( G4int Z) const
inline

Definition at line 427 of file G4NistManager.hh.

428{
429 return matBuilder->FindSimpleMaterial(Z);
430}

◆ GetA27()

G4double G4NistManager::GetA27 ( G4int Z) const
inline

Definition at line 499 of file G4NistManager.hh.

500{
501 return (0 <= Z && Z < 101) ? POWERA27[Z] : g4pow->powZ(Z, 0.27);
502}

Referenced by G4GammaConversionToMuons::ComputeCrossSectionPerAtom(), and G4GammaConversionToMuons::PostStepDoIt().

◆ GetAtomicMass()

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

Definition at line 342 of file G4NistManager.hh.

343{
344 return elmBuilder->GetAtomicMass(Z, N);
345}
#define N
Definition crc32.c:57

Referenced by G4Isotope::G4Isotope().

◆ GetAtomicMassAmu() [1/2]

◆ GetAtomicMassAmu() [2/2]

G4double G4NistManager::GetAtomicMassAmu ( G4int Z) const
inline

Definition at line 328 of file G4NistManager.hh.

329{
330 return elmBuilder->GetAtomicMassAmu(Z);
331}

◆ GetElement()

G4Element * G4NistManager::GetElement ( std::size_t index) const
inline

Definition at line 288 of file G4NistManager.hh.

289{
290 return (index < theElementTable->size()) ? (*theElementTable)[index] : nullptr;
291}

◆ GetICRU90StoppingData()

G4ICRU90StoppingData * G4NistManager::GetICRU90StoppingData ( )

Definition at line 182 of file G4NistManager.cc.

183{
184 if (fICRU90 == nullptr) {
185 G4AutoLock l(&nistManagerMutex);
186 if (fICRU90 == nullptr) {
187 fICRU90 = new G4ICRU90StoppingData();
188 }
189 l.unlock();
190 }
191 return fICRU90;
192}
G4TemplateAutoLock< G4Mutex > G4AutoLock

Referenced by G4BraggModel::Initialise().

◆ GetIsotopeAbundance()

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

Definition at line 356 of file G4NistManager.hh.

357{
358 return elmBuilder->GetIsotopeAbundance(Z, N);
359}

◆ GetIsotopeMass()

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

Definition at line 335 of file G4NistManager.hh.

336{
337 return elmBuilder->GetIsotopeMass(Z, N);
338}

◆ GetLOGAMU()

G4double G4NistManager::GetLOGAMU ( G4int Z) const
inline

Definition at line 510 of file G4NistManager.hh.

511{
512 return (0 <= Z && Z < 101) ? LOGAZ[Z] : 0.0;
513}

◆ GetLOGZ()

G4double G4NistManager::GetLOGZ ( G4int Z) const
inline

Definition at line 506 of file G4NistManager.hh.

506{ return g4pow->logZ(Z); }

◆ GetMaterial()

G4Material * G4NistManager::GetMaterial ( std::size_t index) const
inline

Definition at line 402 of file G4NistManager.hh.

403{
404 return (index < theMaterialTable->size()) ? (*theMaterialTable)[index] : nullptr;
405}

◆ GetMeanIonisationEnergy()

G4double G4NistManager::GetMeanIonisationEnergy ( G4int Z) const
inline

Definition at line 384 of file G4NistManager.hh.

385{
386 return matBuilder->GetMeanIonisationEnergy(Z);
387}

Referenced by G4IonisParamElm::G4IonisParamElm().

◆ GetNistElementNames()

const std::vector< G4String > & G4NistManager::GetNistElementNames ( ) const
inline

Definition at line 377 of file G4NistManager.hh.

378{
379 return elmBuilder->GetElementNames();
380}

◆ GetNistFirstIsotopeN()

G4int G4NistManager::GetNistFirstIsotopeN ( G4int Z) const
inline

Definition at line 363 of file G4NistManager.hh.

364{
365 return elmBuilder->GetNistFirstIsotopeN(Z);
366}

◆ GetNistMaterialNames()

const std::vector< G4String > & G4NistManager::GetNistMaterialNames ( ) const
inline

Definition at line 484 of file G4NistManager.hh.

485{
486 return matBuilder->GetMaterialNames();
487}

◆ GetNominalDensity()

G4double G4NistManager::GetNominalDensity ( G4int Z) const
inline

Definition at line 391 of file G4NistManager.hh.

392{
393 return matBuilder->GetNominalDensity(Z);
394}

◆ GetNumberOfElements()

std::size_t G4NistManager::GetNumberOfElements ( ) const
inline

Definition at line 313 of file G4NistManager.hh.

313{ return nElements; }

◆ GetNumberOfMaterials()

std::size_t G4NistManager::GetNumberOfMaterials ( ) const
inline

Definition at line 284 of file G4NistManager.hh.

284{ return nMaterials; }

◆ GetNumberOfNistIsotopes()

G4int G4NistManager::GetNumberOfNistIsotopes ( G4int Z) const
inline

Definition at line 370 of file G4NistManager.hh.

371{
372 return elmBuilder->GetNumberOfNistIsotopes(Z);
373}

◆ GetTotalElectronBindingEnergy()

G4double G4NistManager::GetTotalElectronBindingEnergy ( G4int Z) const
inline

Definition at line 349 of file G4NistManager.hh.

350{
351 return elmBuilder->GetTotalElectronBindingEnergy(Z);
352}

◆ GetVerbose()

G4int G4NistManager::GetVerbose ( ) const
inline

Definition at line 409 of file G4NistManager.hh.

409{ return verbose; }

◆ GetZ()

G4int G4NistManager::GetZ ( const G4String & symb) const
inline

Definition at line 317 of file G4NistManager.hh.

317{ return elmBuilder->GetZ(symb); }

◆ GetZ13() [1/2]

G4double G4NistManager::GetZ13 ( G4double Z) const
inline

Definition at line 491 of file G4NistManager.hh.

491{ return g4pow->A13(A); }
const G4double A[17]

Referenced by G4GammaConversionToMuons::ComputeCrossSectionPerAtom(), and G4GammaConversionToMuons::PostStepDoIt().

◆ GetZ13() [2/2]

G4double G4NistManager::GetZ13 ( G4int Z) const
inline

Definition at line 495 of file G4NistManager.hh.

495{ return g4pow->Z13(Z); }

◆ Instance()

G4NistManager * G4NistManager::Instance ( )
static

Definition at line 57 of file G4NistManager.cc.

58{
59 static G4NistManager manager;
60 return &manager;
61}

Referenced by G4KokoulinMuonNuclearXS::BuildCrossSectionTable(), G4ecpssrBaseKxsModel::CalculateCrossSection(), G4ecpssrBaseLixsModel::CalculateL1CrossSection(), G4ecpssrBaseLixsModel::CalculateL2CrossSection(), G4ecpssrBaseLixsModel::CalculateL3CrossSection(), G4GammaConversionToMuons::ComputeCrossSectionPerAtom(), G4AtimaFluctuations::Dispersion(), G4tgbMaterialMgr::FindOrBuildG4Element(), G4tgbMaterialMgr::FindOrBuildG4Material(), G4AtimaEnergyLossModel::G4AtimaEnergyLossModel(), G4BetheBlochModel::G4BetheBlochModel(), G4ChargeExchange::G4ChargeExchange(), G4CrossSectionElastic::G4CrossSectionElastic(), G4CrossSectionInelastic::G4CrossSectionInelastic(), G4DensityEffectCalculator::G4DensityEffectCalculator(), G4DNABrownianTransportation::G4DNABrownianTransportation(), G4eBremParametrizedModel::G4eBremParametrizedModel(), G4eCoulombScatteringModel::G4eCoulombScatteringModel(), G4ElasticHadrNucleusHE::G4ElasticHadrNucleusHE(), G4ElectroNuclearCrossSection::G4ElectroNuclearCrossSection(), G4EmCalculator::G4EmCalculator(), G4EmSaturation::G4EmSaturation(), G4eSingleCoulombScatteringModel::G4eSingleCoulombScatteringModel(), G4Evaporation::G4Evaporation(), G4ExcitationHandler::G4ExcitationHandler(), G4hCoulombScatteringModel::G4hCoulombScatteringModel(), G4IonCoulombCrossSection::G4IonCoulombCrossSection(), G4IonCoulombScatteringModel::G4IonCoulombScatteringModel(), G4IonisParamElm::G4IonisParamElm(), G4Isotope::G4Isotope(), G4LindhardSorensenIonModel::G4LindhardSorensenIonModel(), G4Material::G4Material(), G4MicroElecElasticModel::G4MicroElecElasticModel(), G4MicroElecInelasticModel::G4MicroElecInelasticModel(), G4MuBremsstrahlungModel::G4MuBremsstrahlungModel(), G4MuPairProductionModel::G4MuPairProductionModel(), G4PhotoNuclearCrossSection::G4PhotoNuclearCrossSection(), G4RiGeMuPairProductionModel::G4RiGeMuPairProductionModel(), G4ScreeningMottCrossSection::G4ScreeningMottCrossSection(), G4WentzelOKandVIxSection::G4WentzelOKandVIxSection(), G4WentzelVIRelModel::G4WentzelVIRelModel(), G4GDMLReadMaterials::GetElement(), G4EMDissociationCrossSection::GetElementCrossSection(), G4IonsShenCrossSection::GetElementCrossSection(), G4GDMLReadMaterials::GetMaterial(), G4MuonMinusBoundDecay::GetMuonDecayRate(), G4BraggModel::Initialise(), G4DiffuseElastic::Initialise(), G4DiffuseElasticV2::Initialise(), G4NeutronElectronElXsc::Initialise(), G4NuclNuclDiffuseElastic::Initialise(), G4DiffuseElastic::InitialiseOnFly(), G4DiffuseElasticV2::InitialiseOnFly(), G4NuclNuclDiffuseElastic::InitialiseOnFly(), G4PhysListUtil::InitialiseParameters(), G4GammaConversionToMuons::PostStepDoIt(), G4ScoringProbe::SetMaterial(), and G4IonisParamMat::SetMeanExcitationEnergy().

◆ ListMaterials()

void G4NistManager::ListMaterials ( const G4String & list) const
inline

Definition at line 477 of file G4NistManager.hh.

478{
479 matBuilder->ListMaterials(list);
480}

◆ PrintElement() [1/2]

void G4NistManager::PrintElement ( const G4String & symbol) const

Definition at line 110 of file G4NistManager.cc.

111{
112 if (symbol == "all") {
113 elmBuilder->PrintElement(0);
114 }
115 else {
116 elmBuilder->PrintElement(elmBuilder->GetZ(symbol));
117 }
118}

◆ PrintElement() [2/2]

void G4NistManager::PrintElement ( G4int Z) const
inline

Definition at line 398 of file G4NistManager.hh.

398{ elmBuilder->PrintElement(Z); }

◆ PrintG4Element()

void G4NistManager::PrintG4Element ( const G4String & name) const

Definition at line 122 of file G4NistManager.cc.

123{
124 for (auto const & elm : *G4Element::GetElementTable()) {
125 if (name == elm->GetName() || "all" == name) {
126 G4cout << *elm << G4endl;
127 }
128 }
129}
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401

◆ PrintG4Material()

void G4NistManager::PrintG4Material ( const G4String & name) const

Definition at line 133 of file G4NistManager.cc.

134{
135 for (auto const & mat : *G4Material::GetMaterialTable()) {
136 if (name == mat->GetName() || "all" == name) {
137 G4cout << *mat << G4endl;
138 }
139 }
140}
static G4MaterialTable * GetMaterialTable()

◆ SetDensityEffectCalculatorFlag() [1/2]

void G4NistManager::SetDensityEffectCalculatorFlag ( const G4String & mname,
G4bool val )

Definition at line 196 of file G4NistManager.cc.

197{
198 if (mname == "all") {
199 for (auto mat : materials) {
201 }
202 }
203 else {
204 G4Material* mat = FindMaterial(mname);
206 }
207}
void SetDensityEffectCalculatorFlag(const G4String &, G4bool)
G4Material * FindMaterial(const G4String &name) const

Referenced by SetDensityEffectCalculatorFlag().

◆ SetDensityEffectCalculatorFlag() [2/2]

void G4NistManager::SetDensityEffectCalculatorFlag ( G4Material * mat,
G4bool val )

Definition at line 211 of file G4NistManager.cc.

212{
213 if (mat != nullptr) {
215 }
216}
void ComputeDensityEffectOnFly(G4bool val)

◆ SetVerbose()

void G4NistManager::SetVerbose ( G4int val)

Definition at line 144 of file G4NistManager.cc.

145{
146 verbose = val;
147 elmBuilder->SetVerbose(val);
148 matBuilder->SetVerbose(val);
149}

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