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

#include <G4EmDataHandler.hh>

Public Member Functions

 G4EmDataHandler (std::size_t nTable, const G4String &nam="")
 
 ~G4EmDataHandler ()
 
std::size_t SetTable (G4PhysicsTable *)
 
void UpdateTable (G4PhysicsTable *, std::size_t idx)
 
void SaveTable (G4PhysicsTable *, std::size_t idx)
 
G4PhysicsTableMakeTable (std::size_t idx)
 
G4PhysicsTableMakeTable (G4PhysicsTable *, std::size_t idx)
 
void CleanTable (std::size_t idx)
 
G4bool StorePhysicsTable (std::size_t idx, const G4ParticleDefinition *part, const G4String &fname, G4bool ascii)
 
G4bool RetrievePhysicsTable (std::size_t idx, const G4ParticleDefinition *part, const G4String &fname, G4bool ascii, G4bool spline)
 
void SetMasterProcess (const G4VEmProcess *)
 
const G4VEmProcessGetMasterProcess (size_t idx) const
 
const G4PhysicsTableGetTable (std::size_t idx) const
 
G4PhysicsTableTable (std::size_t idx) const
 
const G4PhysicsVectorGetVector (std::size_t itable, std::size_t ivec) const
 
const std::vector< G4PhysicsTable * > & GetTables () const
 
std::vector< G4double > * EnergyOfCrossSectionMax () const
 
void SetEnergyOfCrossSectionMax (std::vector< G4double > *p)
 
std::vector< G4TwoPeaksXS * > * TwoPeaksXS () const
 
void SetTwoPeaksXS (std::vector< G4TwoPeaksXS * > *p)
 
std::vector< G4EmElementSelector * > * GetElementSelectors (std::size_t i)
 
void SetElementSelectors (std::vector< G4EmElementSelector * > *, std::size_t)
 
G4CrossSectionType CrossSectionType () const
 
void SetCrossSectionType (G4CrossSectionType val)
 
const G4StringGetName () const
 
void SetUseBaseParticleTable (G4bool val)
 
G4EmDataHandleroperator= (const G4EmDataHandler &right)=delete
 
 G4EmDataHandler (const G4EmDataHandler &)=delete
 

Detailed Description

Definition at line 65 of file G4EmDataHandler.hh.

Constructor & Destructor Documentation

◆ G4EmDataHandler() [1/2]

G4EmDataHandler::G4EmDataHandler ( std::size_t nTable,
const G4String & nam = "" )
explicit

Definition at line 53 of file G4EmDataHandler.cc.

54 : tLength(n), fName(nam)
55{
56 data.resize(n, nullptr);
57 fMaxXS = new std::vector<G4double>;
58 fXSpeaks = new std::vector<G4TwoPeaksXS*>;
60}
void Register(G4EmDataHandler *)
static G4EmDataRegistry * Instance()

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

◆ ~G4EmDataHandler()

G4EmDataHandler::~G4EmDataHandler ( )

Definition at line 64 of file G4EmDataHandler.cc.

65{
66 if (!fUseBaseParticleTable) {
67 for (std::size_t i=0; i<tLength; ++i) {
68 CleanTable(i);
69 }
70 delete fMaxXS;
71 delete fXSpeaks;
72 }
73 if (!fElemSelectors.empty()) {
74 for (auto const & ptr : fElemSelectors) {
75 if (nullptr != ptr) {
76 for (auto const & p : *ptr) { delete p; }
77 }
78 }
79 }
80
81}
void CleanTable(std::size_t idx)

◆ G4EmDataHandler() [2/2]

G4EmDataHandler::G4EmDataHandler ( const G4EmDataHandler & )
delete

Member Function Documentation

◆ CleanTable()

void G4EmDataHandler::CleanTable ( std::size_t idx)

Definition at line 155 of file G4EmDataHandler.cc.

156{
157 if (i < tLength && nullptr != data[i]) {
158 auto ptr = data[i];
159 ptr->clearAndDestroy();
160 delete ptr;
161 for (std::size_t j=0; j<tLength; ++j) {
162 if (ptr == data[j]) { data[j] = nullptr; }
163 }
164 }
165}

Referenced by MakeTable(), and ~G4EmDataHandler().

◆ CrossSectionType()

G4CrossSectionType G4EmDataHandler::CrossSectionType ( ) const
inline

Definition at line 149 of file G4EmDataHandler.hh.

149 {
150 return fXSType;
151 }

◆ EnergyOfCrossSectionMax()

std::vector< G4double > * G4EmDataHandler::EnergyOfCrossSectionMax ( ) const
inline

Definition at line 121 of file G4EmDataHandler.hh.

121 {
122 return fMaxXS;
123 }

◆ GetElementSelectors()

std::vector< G4EmElementSelector * > * G4EmDataHandler::GetElementSelectors ( std::size_t i)
inline

Definition at line 143 of file G4EmDataHandler.hh.

143 {
144 return (i < eLength) ? fElemSelectors[i] : nullptr;
145 }

◆ GetMasterProcess()

const G4VEmProcess * G4EmDataHandler::GetMasterProcess ( size_t idx) const

Definition at line 225 of file G4EmDataHandler.cc.

226{
227 return (idx < masterProcess.size()) ? masterProcess[idx] : nullptr;
228}

◆ GetName()

const G4String & G4EmDataHandler::GetName ( ) const
inline

Definition at line 157 of file G4EmDataHandler.hh.

157 {
158 return fName;
159 }

◆ GetTable()

const G4PhysicsTable * G4EmDataHandler::GetTable ( std::size_t idx) const
inline

Definition at line 105 of file G4EmDataHandler.hh.

105 {
106 return (idx < tLength) ? data[idx] : nullptr;
107 }

◆ GetTables()

const std::vector< G4PhysicsTable * > & G4EmDataHandler::GetTables ( ) const
inline

Definition at line 117 of file G4EmDataHandler.hh.

117 {
118 return data;
119 }

◆ GetVector()

const G4PhysicsVector * G4EmDataHandler::GetVector ( std::size_t itable,
std::size_t ivec ) const
inline

Definition at line 113 of file G4EmDataHandler.hh.

113 {
114 return (*(data[itable]))[ivec];
115 }

◆ MakeTable() [1/2]

G4PhysicsTable * G4EmDataHandler::MakeTable ( G4PhysicsTable * ptr,
std::size_t idx )

Definition at line 134 of file G4EmDataHandler.cc.

135{
136 std::size_t idx = i;
137 // create new table only if index corresponds to the
138 // position in the vector
139 if (idx < tLength) {
140 if (ptr != data[idx]) {
141 CleanTable(idx);
142 data[idx] = ptr;
143 }
144 } else {
145 data.push_back(ptr);
146 idx = tLength;
147 ++tLength;
148 }
149 data[idx] = G4PhysicsTableHelper::PreparePhysicsTable(data[idx]);
150 return data[idx];
151}
static G4PhysicsTable * PreparePhysicsTable(G4PhysicsTable *physTable)

◆ MakeTable() [2/2]

G4PhysicsTable * G4EmDataHandler::MakeTable ( std::size_t idx)

Definition at line 120 of file G4EmDataHandler.cc.

121{
122 std::size_t idx = i;
123 if (idx >= tLength) {
124 data.push_back(nullptr);
125 idx = tLength;
126 ++tLength;
127 }
128 data[idx] = G4PhysicsTableHelper::PreparePhysicsTable(data[idx]);
129 return data[idx];
130}

◆ operator=()

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

◆ RetrievePhysicsTable()

G4bool G4EmDataHandler::RetrievePhysicsTable ( std::size_t idx,
const G4ParticleDefinition * part,
const G4String & fname,
G4bool ascii,
G4bool spline )

Definition at line 193 of file G4EmDataHandler.cc.

197{
198 G4PhysicsTable* table = Table(idx);
199 G4bool yes = G4PhysicsTableHelper::RetrievePhysicsTable(table, fname, ascii, spline);
200 G4EmParameters* param = G4EmParameters::Instance();
201 if ( yes ) {
202 if (0 < param->Verbose()) {
203 G4cout << "### Physics table " << idx << " for "
204 << part->GetParticleName()
205 << " is retrieved from <" << fname << ">"
206 << G4endl;
207 }
208 } else if (1 < param->Verbose()) {
209 G4cout << "### Fail to retrieve physics table " << idx << " for "
210 << part->GetParticleName() << " from <"
211 << fname << ">" << G4endl;
212 }
213 return yes;
214}
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4PhysicsTable * Table(std::size_t idx) const
static G4EmParameters * Instance()
G4int Verbose() const
const G4String & GetParticleName() const
static G4bool RetrievePhysicsTable(G4PhysicsTable *physTable, const G4String &fileName, G4bool ascii, G4bool spline)

◆ SaveTable()

void G4EmDataHandler::SaveTable ( G4PhysicsTable * ptr,
std::size_t idx )

Definition at line 111 of file G4EmDataHandler.cc.

112{
113 if (idx < tLength) {
114 data[idx] = ptr;
115 }
116}

◆ SetCrossSectionType()

void G4EmDataHandler::SetCrossSectionType ( G4CrossSectionType val)
inline

Definition at line 153 of file G4EmDataHandler.hh.

153 {
154 fXSType = val;
155 }

◆ SetElementSelectors()

void G4EmDataHandler::SetElementSelectors ( std::vector< G4EmElementSelector * > * p,
std::size_t i )

Definition at line 232 of file G4EmDataHandler.cc.

234{
235 if (i < eLength) {
236 if (fElemSelectors[i] != p) {
237 delete fElemSelectors[i];
238 }
239 fElemSelectors[i] = p;
240 } else {
241 fElemSelectors.push_back(p);
242 ++eLength;
243 }
244}

◆ SetEnergyOfCrossSectionMax()

void G4EmDataHandler::SetEnergyOfCrossSectionMax ( std::vector< G4double > * p)
inline

Definition at line 125 of file G4EmDataHandler.hh.

125 {
126 if (p != fMaxXS) {
127 delete fMaxXS;
128 fMaxXS = p;
129 }
130 }

◆ SetMasterProcess()

void G4EmDataHandler::SetMasterProcess ( const G4VEmProcess * ptr)

Definition at line 218 of file G4EmDataHandler.cc.

219{
220 masterProcess.push_back(ptr);
221}

◆ SetTable()

std::size_t G4EmDataHandler::SetTable ( G4PhysicsTable * ptr)

Definition at line 85 of file G4EmDataHandler.cc.

86{
87 for (std::size_t i=0; i<tLength; ++i) {
88 if (ptr == data[i]) { return i; }
89 }
90 data.push_back(ptr);
91 ++tLength;
92 return tLength-1;
93}

◆ SetTwoPeaksXS()

void G4EmDataHandler::SetTwoPeaksXS ( std::vector< G4TwoPeaksXS * > * p)
inline

Definition at line 136 of file G4EmDataHandler.hh.

136 {
137 if (p != fXSpeaks) {
138 delete fXSpeaks;
139 fXSpeaks = p;
140 }
141 }

◆ SetUseBaseParticleTable()

void G4EmDataHandler::SetUseBaseParticleTable ( G4bool val)
inline

Definition at line 161 of file G4EmDataHandler.hh.

161 {
162 fUseBaseParticleTable = val;
163 }

◆ StorePhysicsTable()

G4bool G4EmDataHandler::StorePhysicsTable ( std::size_t idx,
const G4ParticleDefinition * part,
const G4String & fname,
G4bool ascii )

Definition at line 169 of file G4EmDataHandler.cc.

173{
174 G4bool yes = true;
175 if(nullptr != data[idx]) {
176 yes = data[idx]->StorePhysicsTable(fname, ascii);
177
178 if ( yes ) {
179 G4cout << "### Physics table is stored for "
180 << part->GetParticleName()
181 << " <" << fname << "> " << G4endl;
182 } else {
183 G4cout << "### Fail to store Physics Table for "
184 << part->GetParticleName()
185 << " <" << fname << "> " << G4endl;
186 }
187 }
188 return yes;
189}

◆ Table()

G4PhysicsTable * G4EmDataHandler::Table ( std::size_t idx) const
inline

Definition at line 109 of file G4EmDataHandler.hh.

109 {
110 return (idx < tLength) ? data[idx] : nullptr;
111 }

Referenced by RetrievePhysicsTable().

◆ TwoPeaksXS()

std::vector< G4TwoPeaksXS * > * G4EmDataHandler::TwoPeaksXS ( ) const
inline

Definition at line 132 of file G4EmDataHandler.hh.

132 {
133 return fXSpeaks;
134 }

◆ UpdateTable()

void G4EmDataHandler::UpdateTable ( G4PhysicsTable * ptr,
std::size_t idx )

Definition at line 97 of file G4EmDataHandler.cc.

98{
99 // update table pointer but not delete previous
100 if (idx < tLength) {
101 if (ptr != data[idx]) { data[idx] = ptr; }
102 data[idx] = G4PhysicsTableHelper::PreparePhysicsTable(data[idx]);
103 } else {
104 G4cout << "### G4EmDataHandler::UpdateTable fail for idx=" << idx
105 << " length=" << tLength << G4endl;
106 }
107}

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