#include <G4EmDataHandler.hh>
|
| 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) |
|
G4PhysicsTable * | MakeTable (std::size_t idx) |
|
G4PhysicsTable * | MakeTable (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 G4VEmProcess * | GetMasterProcess (size_t idx) const |
|
const G4PhysicsTable * | GetTable (std::size_t idx) const |
|
G4PhysicsTable * | Table (std::size_t idx) const |
|
const G4PhysicsVector * | GetVector (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 G4String & | GetName () const |
|
void | SetUseBaseParticleTable (G4bool val) |
|
G4EmDataHandler & | operator= (const G4EmDataHandler &right)=delete |
|
| G4EmDataHandler (const G4EmDataHandler &)=delete |
|
Definition at line 65 of file G4EmDataHandler.hh.
◆ 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) {
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]
◆ 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()
◆ EnergyOfCrossSectionMax()
std::vector< G4double > * G4EmDataHandler::EnergyOfCrossSectionMax |
( |
| ) |
const |
|
inline |
◆ GetElementSelectors()
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 |
◆ 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 |
◆ GetVector()
const G4PhysicsVector * G4EmDataHandler::GetVector |
( |
std::size_t | itable, |
|
|
std::size_t | ivec ) const |
|
inline |
◆ MakeTable() [1/2]
Definition at line 134 of file G4EmDataHandler.cc.
135{
136 std::size_t idx = i;
137
138
139 if (idx < tLength) {
140 if (ptr != data[idx]) {
142 data[idx] = ptr;
143 }
144 } else {
145 data.push_back(ptr);
146 idx = tLength;
147 ++tLength;
148 }
150 return data[idx];
151}
static G4PhysicsTable * PreparePhysicsTable(G4PhysicsTable *physTable)
◆ MakeTable() [2/2]
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 }
129 return data[idx];
130}
◆ operator=()
◆ RetrievePhysicsTable()
Definition at line 193 of file G4EmDataHandler.cc.
197{
198 G4PhysicsTable* table =
Table(idx);
201 if ( yes ) {
203 G4cout <<
"### Physics table " << idx <<
" for "
205 << " is retrieved from <" << fname << ">"
207 }
208 }
else if (1 < param->
Verbose()) {
209 G4cout <<
"### Fail to retrieve physics table " << idx <<
" for "
211 << fname <<
">" <<
G4endl;
212 }
213 return yes;
214}
G4GLOB_DLL std::ostream G4cout
G4PhysicsTable * Table(std::size_t idx) const
static G4EmParameters * Instance()
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()
◆ 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 | ) |
|
◆ SetTable()
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 |
◆ StorePhysicsTable()
Definition at line 169 of file G4EmDataHandler.cc.
173{
175 if(nullptr != data[idx]) {
176 yes = data[idx]->StorePhysicsTable(fname, ascii);
177
178 if ( yes ) {
179 G4cout <<
"### Physics table is stored for "
181 <<
" <" << fname <<
"> " <<
G4endl;
182 } else {
183 G4cout <<
"### Fail to store Physics Table for "
185 <<
" <" << fname <<
"> " <<
G4endl;
186 }
187 }
188 return yes;
189}
◆ Table()
◆ TwoPeaksXS()
std::vector< G4TwoPeaksXS * > * G4EmDataHandler::TwoPeaksXS |
( |
| ) |
const |
|
inline |
◆ UpdateTable()
void G4EmDataHandler::UpdateTable |
( |
G4PhysicsTable * | ptr, |
|
|
std::size_t | idx ) |
Definition at line 97 of file G4EmDataHandler.cc.
98{
99
100 if (idx < tLength) {
101 if (ptr != data[idx]) { data[idx] = ptr; }
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: