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

#include <G4EmElementXS.hh>

Public Member Functions

 G4EmElementXS (G4int zmin, G4int zmax, const G4String &name, const G4String &subname)
 
 ~G4EmElementXS ()=default
 
G4PhysicsVectorRetrieve (G4int Z) const
 
G4double GetXS (G4int Z, G4double ekin) const
 
G4EmElementXSoperator= (const G4EmElementXS &right)=delete
 
 G4EmElementXS (const G4EmElementXS &)=delete
 

Detailed Description

Definition at line 64 of file G4EmElementXS.hh.

Constructor & Destructor Documentation

◆ G4EmElementXS() [1/2]

G4EmElementXS::G4EmElementXS ( G4int zmin,
G4int zmax,
const G4String & name,
const G4String & subname )
explicit

Definition at line 56 of file G4EmElementXS.cc.

58 : Zmin(zmin - 1), Zmax(zmax), fSubName(subname)
59{
60 fParameters = G4EmParameters::Instance();
62 fData = reg->GetElementDataByName(name);
63 if (nullptr == fData) {
64 fData = new G4ElementData(Zmax - Zmin);
65 fData->SetName(name);
66 reg->RegisterMe(fData);
67 }
68}
static G4ElementDataRegistry * Instance()
static G4EmParameters * Instance()

Referenced by G4EmElementXS(), and operator=().

◆ ~G4EmElementXS()

G4EmElementXS::~G4EmElementXS ( )
default

◆ G4EmElementXS() [2/2]

G4EmElementXS::G4EmElementXS ( const G4EmElementXS & )
delete

Member Function Documentation

◆ GetXS()

G4double G4EmElementXS::GetXS ( G4int Z,
G4double ekin ) const

Definition at line 103 of file G4EmElementXS.cc.

104{
105 auto v = Retrieve(Z);
106 return (nullptr != v) ? v->Value(ekin) : 0.0;
107}
G4PhysicsVector * Retrieve(G4int Z) const

◆ operator=()

G4EmElementXS & G4EmElementXS::operator= ( const G4EmElementXS & right)
delete

◆ Retrieve()

G4PhysicsVector * G4EmElementXS::Retrieve ( G4int Z) const

Definition at line 72 of file G4EmElementXS.cc.

73{
74 G4int Z = std::min(ZZ, Zmax);
75 auto v = fData->GetElementData(Z);
76 if (nullptr == v) {
77 G4AutoLock l(&elementXSMutex);
78 v = fData->GetElementData(Z);
79 if (nullptr == v) {
80 v = new G4PhysicsFreeVector(false);
81 std::ostringstream ost;
82 ost << fParameters->GetDirLEDATA() << fSubName << Z << ".dat";
83 std::ifstream fin(ost.str().c_str());
84 if (!fin.is_open()) {
86 ed << "G4EmElementXS: data file <" << ost.str().c_str() << "> for Z=" << Z
87 << " is not opened!" << G4endl;
88 G4Exception("G4EmElementXS::Retrieve()", "em0003", FatalException, ed,
89 "G4LEDATA version should be checked");
90 } else {
91 v->Retrieve(fin, true);
92 v->ScaleVector(CLHEP::MeV, CLHEP::barn);
93 }
94 fData->InitialiseForElement(Z, v);
95 l.unlock();
96 }
97 }
98 return v;
99}
G4TemplateAutoLock< G4Mutex > G4AutoLock
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67

Referenced by GetXS().


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