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

#include <G4FluoData.hh>

Public Member Functions

 G4FluoData (const G4String &dir)
 
 ~G4FluoData ()
 
std::size_t NumberOfVacancies () const
 
G4int VacancyId (G4int vacancyIndex) const
 Given the index of the vacancy returns its identity.
 
std::size_t NumberOfTransitions (G4int vacancyIndex) const
 
G4int StartShellId (G4int initIndex, G4int vacancyIndex) const
 
G4double StartShellEnergy (G4int initIndex, G4int vacancyIndex) const
 
G4double StartShellProb (G4int initIndex, G4int vacancyIndex) const
 
void LoadData (G4int Z)
 
void PrintData ()
 
G4FluoDataoperator= (const G4FluoData &right)=delete
 
 G4FluoData (const G4FluoData &)=delete
 

Detailed Description

Definition at line 51 of file G4FluoData.hh.

Constructor & Destructor Documentation

◆ G4FluoData() [1/2]

G4FluoData::G4FluoData ( const G4String & dir)
explicit

Definition at line 44 of file G4FluoData.cc.

45{
46 fluoDirectory = dir;
47}

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

◆ ~G4FluoData()

G4FluoData::~G4FluoData ( )

Definition at line 51 of file G4FluoData.cc.

52{
53 for (auto& pos : idMap)
54 {
55 G4DataVector* dataSet = pos.second;
56 delete dataSet;
57 }
58
59 for (auto& pos : energyMap)
60 {
61 G4DataVector* dataSet = pos.second;
62 delete dataSet;
63 }
64
65 for (auto& pos: probabilityMap)
66 {
67 G4DataVector* dataSet = pos.second;
68 delete dataSet;
69 }
70}

◆ G4FluoData() [2/2]

G4FluoData::G4FluoData ( const G4FluoData & )
delete

Member Function Documentation

◆ LoadData()

void G4FluoData::LoadData ( G4int Z)

Definition at line 201 of file G4FluoData.cc.

202{
203 // Build the complete string identifying the file with the data set
204 std::ostringstream ost;
205 if(Z != 0){
206 ost << "/fl-tr-pr-"<< Z << ".dat";
207 }
208 else{
209 ost << "/fl-tr-pr-"<<".dat";
210 }
211 G4String name(ost.str());
212
213
214 const char* path = G4FindDataDir("G4LEDATA");
215 if (!path)
216 {
217 G4String excep("G4FluoData::LoadData()");
218 G4Exception(excep,"em0006",FatalException,"Please set G4LEDATA");
219 return;
220 }
221
222 G4String pathString(path);
223
224 G4String dirFile = pathString + fluoDirectory + name;
225
226 //G4cout << "G4FluoData:: LoadData() name: " << dirFile << G4endl;
227
228
229 std::ifstream file(dirFile);
230 std::filebuf* lsdp = file.rdbuf();
231
232 if (! (lsdp->is_open()) )
233 {
234 G4String excep = "G4FluoData::LoadData()";
235 G4String msg = "data file: " + dirFile + " not found";
236 G4Exception(excep, "em0003",FatalException, msg );
237 return;
238 }
239
240 G4double a = 0;
241 G4int k = 1;
242 G4int sLocal = 0;
243
244 G4int vacIndex = 0;
245 G4DataVector* initIds = new G4DataVector;
246 G4DataVector* transEnergies = new G4DataVector;
247 G4DataVector* transProbabilities = new G4DataVector;
248
249 do {
250 file >> a;
251 G4int nColumns = 3;
252 if (a == -1)
253 {
254 if (sLocal == 0)
255 {
256 // End of a shell data set
257 idMap[vacIndex] = initIds;
258 energyMap[vacIndex] = transEnergies;
259 probabilityMap[vacIndex] = transProbabilities;
260 G4int n = (G4int)initIds->size();
261
262 nInitShells.push_back(n);
263 numberOfVacancies++;
264 // Start of new shell data set
265 initIds = new G4DataVector;
266 transEnergies = new G4DataVector;
267 transProbabilities = new G4DataVector;
268 vacIndex++;
269 }
270 sLocal++;
271 if (sLocal == nColumns)
272 {
273 sLocal = 0;
274 }
275 }
276 // moved to the end in order to avoid possible leak
277 /* else if (a == -2)
278 {
279 // End of file; delete the empty vectors created
280 //when encountering the last -1 -1 row
281 delete initIds;
282 delete transEnergies;
283 delete transProbabilities;
284 }*/
285 else
286 {
287 if(k%nColumns == 2)
288 {
289 // 2nd column is transition probabilities
290
291 if (a != -1) transProbabilities->push_back(a);
292
293 k++;
294 }
295 else if (k%nColumns == 1)
296 {
297 // 1st column is shell id
298 // if this is the first data of the shell, all the colums are equal
299 // to the shell Id; so we skip the next colums ang go to the next row
300 if(initIds->size() == 0) {
301 if (a != -1) initIds->push_back((G4int)a);
302 file >> a;
303 file >> a;
304 k=k+2;
305 }
306 else{
307 if (a != -1) initIds->push_back(a);
308 }
309 k++;
310 }
311 else if (k%nColumns == 0)
312
313 {//third column is transition energies
314
315 if (a != -1)
316 {G4double e = a * MeV;
317 transEnergies->push_back(e);}
318
319 k=1;
320 }
321 }
322 }
323 while (a != -2); // end of file
324 file.close();
325 delete initIds;
326 delete transEnergies;
327 delete transProbabilities;
328}
const char * G4FindDataDir(const char *)
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
const char * name(G4int ptype)

Referenced by G4AtomicTransitionManager::Initialise().

◆ NumberOfTransitions()

std::size_t G4FluoData::NumberOfTransitions ( G4int vacancyIndex) const

Given the index of a vacancy returns the number of shells starting from wich an electrons can fill the vacancy

Definition at line 103 of file G4FluoData.cc.

104{
105 G4int n = 0;
106 if (vacancyIndex<0 || vacancyIndex>=numberOfVacancies)
107 {
108 G4Exception("G4FluoData::NumberOfTransitions()","de0002",JustWarning,
109 "vacancyIndex outside boundaries, energy deposited locally");
110 return 0;
111 }
112 else
113 {
114 n = nInitShells[vacancyIndex]-1;
115 //-1 is necessary because the elements of the vector nInitShells
116 //include also the vacancy shell:
117 // -1 subtracts this last one
118 }
119 return n;
120}
@ JustWarning

Referenced by G4AtomicTransitionManager::Initialise(), and PrintData().

◆ NumberOfVacancies()

std::size_t G4FluoData::NumberOfVacancies ( ) const

The method returns the number of shells in wich a vacancy can be filled by a radiative transition

Definition at line 74 of file G4FluoData.cc.

75{
76 return numberOfVacancies;
77}

Referenced by G4AtomicTransitionManager::Initialise().

◆ operator=()

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

◆ PrintData()

void G4FluoData::PrintData ( )

Definition at line 332 of file G4FluoData.cc.

333{
334 for (G4int i = 0; i <numberOfVacancies; ++i)
335 {
336 G4cout << "---- TransitionData for the vacancy nb "
337 << i
338 << " ----- "
339 << G4endl;
340
341 for (G4int k = 0; k<(G4int)NumberOfTransitions(i); ++k)
342 {
343 G4int id = StartShellId(k,i);
344 // let's start from 1 because the first (index = 0) element of the vector
345 // is the id of the initial vacancy
346 G4double e = StartShellEnergy(k,i) /MeV;
347 G4double p = StartShellProb(k,i);
348 G4cout << k <<") Shell id: " << id <<G4endl;
349 G4cout << " - Transition energy = " << e << " MeV "<<G4endl;
350 G4cout << " - Transition probability = " << p <<G4endl;
351
352 }
353 G4cout << "-------------------------------------------------"
354 << G4endl;
355 }
356}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
std::size_t NumberOfTransitions(G4int vacancyIndex) const
G4double StartShellEnergy(G4int initIndex, G4int vacancyIndex) const
G4int StartShellId(G4int initIndex, G4int vacancyIndex) const
G4double StartShellProb(G4int initIndex, G4int vacancyIndex) const

◆ StartShellEnergy()

G4double G4FluoData::StartShellEnergy ( G4int initIndex,
G4int vacancyIndex ) const

Given the indexes of the starting and final shells for the transition, returns the transition energy

Definition at line 149 of file G4FluoData.cc.

150{
151 G4double n = -1;
152
153 if (vacancyIndex<0 || vacancyIndex>=numberOfVacancies)
154 {
155 G4Exception("G4FluoData::StartShellEnergy()","de0002",FatalErrorInArgument,
156 "vacancyIndex outside boundaries");}
157 else
158 {
159 auto pos = energyMap.find(vacancyIndex);
160
161 G4DataVector dataSet = *((*pos).second);
162
163 G4int nData = (G4int)dataSet.size();
164 if (initIndex >= 0 && initIndex < nData)
165 {
166 n = dataSet[initIndex];
167 }
168 }
169 return n;
170}
@ FatalErrorInArgument

Referenced by G4AtomicTransitionManager::Initialise(), and PrintData().

◆ StartShellId()

G4int G4FluoData::StartShellId ( G4int initIndex,
G4int vacancyIndex ) const

Given the indexes of the starting and final shells for the transition, returns the identity of the starting one

Definition at line 124 of file G4FluoData.cc.

125{
126 G4int n = -1;
127
128 if (vacancyIndex<0 || vacancyIndex>=numberOfVacancies) {
129 G4Exception("G4FluoData::StartShellId()","de0002",FatalErrorInArgument,
130 "vacancyIndex outside boundaries");
131 } else {
132 auto pos = idMap.find(vacancyIndex);
133 if (pos != idMap.end()) {
134 G4DataVector* dataSet = (*pos).second;
135
136 G4int nData = (G4int)dataSet->size();
137 // The first Element of idMap's dataSets is the original shell of
138 // the vacancy, so we must start from the first element of dataSet
139 if (initIndex >= 0 && initIndex < nData) {
140 n = (*dataSet)[initIndex+1];
141 }
142 }
143 }
144 return n;
145}

Referenced by G4AtomicTransitionManager::Initialise(), and PrintData().

◆ StartShellProb()

G4double G4FluoData::StartShellProb ( G4int initIndex,
G4int vacancyIndex ) const

Given the indexes of the starting and final shells for the transition, returns the probability of this transition

Definition at line 174 of file G4FluoData.cc.

175{
176 G4double n = -1;
177
178 if (vacancyIndex<0 || vacancyIndex>=numberOfVacancies)
179 {
180 G4Exception("G4FluoData::StartShellEnergy()","de0002",JustWarning,
181 "vacancyIndex outside boundaries, energy deposited locally");
182 return 0;
183 }
184 else
185 {
186 auto pos = probabilityMap.find(vacancyIndex);
187
188 G4DataVector dataSet = *((*pos).second);
189
190 G4int nData = (G4int)dataSet.size();
191 if (initIndex >= 0 && initIndex < nData)
192 {
193 n = dataSet[initIndex];
194 }
195 }
196 return n;
197}

Referenced by G4AtomicTransitionManager::Initialise(), and PrintData().

◆ VacancyId()

G4int G4FluoData::VacancyId ( G4int vacancyIndex) const

Given the index of the vacancy returns its identity.

Definition at line 81 of file G4FluoData.cc.

82{
83 G4int n = -1;
84 if (vacancyIndex<0 || vacancyIndex>=numberOfVacancies)
85 {
86 G4Exception("G4FluoData::vacancyId()","de0002",FatalErrorInArgument,
87 "vacancyIndex outside boundaries");
88 }
89 else
90 {
91 auto pos = idMap.find(vacancyIndex);
92 if (pos!= idMap.end())
93 { G4DataVector dataSet = (*(*pos).second);
94 n = (G4int) dataSet[0];
95
96 }
97 }
98 return n;
99}

Referenced by G4AtomicTransitionManager::Initialise().


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