#include <G4eIonisationParameters.hh>
Definition at line 58 of file G4eIonisationParameters.hh.
◆ G4eIonisationParameters() [1/2]
G4eIonisationParameters::G4eIonisationParameters |
( |
| ) |
|
|
explicit |
◆ ~G4eIonisationParameters()
G4eIonisationParameters::~G4eIonisationParameters |
( |
| ) |
|
Definition at line 70 of file G4eIonisationParameters.cc.
71{
72
73 for (auto& pos : param)
74 {
75 G4VEMDataSet* dataSet =
pos.second;
76 delete dataSet;
77 dataSet = nullptr;
78 }
79 for (auto& pos : excit)
80 {
81 G4VEMDataSet* dataSet =
pos.second;
82 delete dataSet;
83 dataSet = nullptr;
84 }
85 activeZ.clear();
86}
◆ G4eIonisationParameters() [2/2]
◆ Excitation()
Definition at line 124 of file G4eIonisationParameters.cc.
125{
127 auto pos = excit.find(Z);
128 if (pos!= excit.end()) {
129 G4VEMDataSet* dataSet = (*pos).second;
130
132 G4double ee = std::max(ener.front(),std::min(ener.back(),e));
134 } else {
135 G4cout <<
"WARNING: G4IonisationParameters::Excitation "
136 << "did not find ID = "
138 }
139
140 return value;
141}
G4GLOB_DLL std::ostream G4cout
virtual const G4DataVector & GetEnergies(G4int componentId) const =0
virtual G4double FindValue(G4double x, G4int componentId=0) const =0
◆ operator=()
◆ Parameter()
Definition at line 90 of file G4eIonisationParameters.cc.
93{
95 G4int id = Z*100 + parameterIndex;
96
97 auto pos = param.find(
id);
98 if (pos!= param.end()) {
99 G4VEMDataSet* dataSet = (*pos).second;
101
102 if(shellIndex < nShells) {
103 const G4VEMDataSet* component = dataSet->
GetComponent(shellIndex);
104 const G4DataVector ener = component->
GetEnergies(0);
105 G4double ee = std::max(ener.front(),std::min(ener.back(),e));
107 } else {
108 G4cout <<
"WARNING: G4IonisationParameters::FindParameter "
109 << "has no parameters for shell= " << shellIndex
110 << "; Z= " << Z
112 }
113 } else {
114 G4cout <<
"WARNING: G4IonisationParameters::Parameter "
115 << "did not find ID = "
117 }
118
119 return value;
120}
virtual const G4VEMDataSet * GetComponent(G4int componentId) const =0
virtual size_t NumberOfComponents(void) const =0
◆ PrintData()
void G4eIonisationParameters::PrintData |
( |
| ) |
const |
Definition at line 382 of file G4eIonisationParameters.cc.
383{
385 G4cout <<
"===== G4eIonisationParameters =====" <<
G4endl;
387
388 std::size_t nZ = activeZ.size();
389 std::map<G4int,G4VEMDataSet*,std::less<G4int> >::const_iterator
pos;
390
391 for (std::size_t i=0; i<nZ; i++) {
393
395
396 G4int index = Z*100 + j;
397
398 pos = param.find(index);
399 if (pos!= param.cend()) {
400 G4VEMDataSet* dataSet = (*pos).second;
402
404
405 G4cout <<
"===== Z= " << Z <<
" shell= " << k
406 << " parameter[" << j << "] ====="
410 }
411 }
412 }
413 }
414 G4cout <<
"====================================" <<
G4endl;
415}
virtual void PrintData(void) const =0
The documentation for this class was generated from the following files: