Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AugerTransition.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27//
28// Based on G4AtomicTransition.cc by
29// Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
30//
31// Author: Alfonso Mantero (Alfonso.Mantero@ge.infn.it)
32//
33// History:
34// -----------
35// 4 Mar 2002: first implementation
36//
37// -------------------------------------------------------------------
38
39#include "G4AugerTransition.hh"
40
41//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
42// the final shell in wich the electron goes is needed, to know the data for the auger electron emitted
43// (i.e. originating shell id, electron energy and transition probability)
44G4AugerTransition::G4AugerTransition(G4int finalShell, std::vector<G4int> transIds,
45 const std::map<G4int,std::vector<G4int>,std::less<G4int> >* idMap,
46 const std::map<G4int,G4DataVector,std::less<G4int> >* energyMap,
47 const std::map<G4int,G4DataVector,std::less<G4int> >* probabilityMap)
48{
49 finalShellId = finalShell;
50 augerOriginatingShellIdsMap = *idMap;
51 augerTransitionEnergiesMap = *energyMap;
52 augerTransitionProbabilitiesMap = *probabilityMap;
53 transitionOriginatingShellIds = std::move(transIds);
54}
55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
57
60
61//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
62// Returns the ids of the shells from wich an auger electron culd came from, given th shell
63// from wich the transition electron cames from.
64const std::vector<G4int>* G4AugerTransition::AugerOriginatingShellIds(G4int startShellId) const
65{
66 auto shellId = augerOriginatingShellIdsMap.find(startShellId);
67 if (shellId == augerOriginatingShellIdsMap.end())
68 {
69 G4Exception("G4AugerTransition::AugerOriginatingShellIds()",
70 "em2199",JustWarning,"Error: no Auger ID found");
71 return nullptr;
72 }
73 const std::vector<G4int>* dataSet = &(*shellId).second;
74 if (dataSet->empty())
75 G4Exception("G4AugerTransition::AugerOriginatingShellIds()",
76 "em2198",JustWarning,"Error: no Auger ID found");
77 return dataSet;
78}
79
80//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
81// Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId
82const std::vector<G4int>* G4AugerTransition::TransitionOriginatingShellIds() const
83{
84 const std::vector<G4int>* dataSet = &transitionOriginatingShellIds;
85 return dataSet;
86}
87
88//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
89// Returns the energies of the possible auger electrons, given the shell
90// from which the transition electron came from.
92{
93 auto shellId = augerTransitionEnergiesMap.find(startShellId);
94
95 if (shellId == augerTransitionEnergiesMap.end() )
96 {
97 G4Exception("G4AugerTransition::AugerTransitionEnergies()","de0002",JustWarning,
98 "corresponding map element not found, energy deposited locally");
99 return 0;
100 }
101 const G4DataVector* dataSet = &(*shellId).second;
102 return dataSet;
103}
104
105//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
106// Returns the emission probabilities of the auger electrons, given the shell
107// from wich the transition electron cames from.
109{
110 auto shellId = augerTransitionProbabilitiesMap.find(startShellId);
111 if (shellId == augerTransitionProbabilitiesMap.end() )
112 {
113
114 G4Exception("G4AugerTransition::AugerTransitionProbabilities()","de0002",
115 JustWarning,"corresponding map element not found, energy deposited locally");
116 return 0;
117 }
118
119 const G4DataVector* dataSet = &(*shellId).second;
120 return dataSet;
121}
122
123//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
125{
126 return finalShellId;
127}
128
129//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
130// Returns the id of the shell from wich come the auger electron , given the shell
131// from wich the transition electron cames from and the index number.
133{
134 const std::vector<G4int>* ids = AugerOriginatingShellIds(startShellId);
135 // G4int i =
136 std::vector<G4int>::const_iterator pos = ids->begin();
137 G4int n = 0;
138 n = *(pos+index);
139 return n;
140}
141
142//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
143// Returns the energy of the auger electron, given the shell
144// from wich the transition electron cames from and the index number.
146{
147 const G4DataVector* energies = AugerTransitionEnergies(startShellId);
148 G4double energy = 0;
149 if (index < (G4int) energies->size()) {
150 G4DataVector::const_iterator pos = energies->begin();
151 energy = *(pos+index);
152 }
153 return energy;
154}
155
156//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
157// Returns the probability of the auger emission, given the shell
158// from wich the transition electron cames from and the index number.
160{
161
162 const G4DataVector *probabilities = AugerTransitionProbabilities(startShellId);
163 G4DataVector::const_iterator pos = probabilities->begin();
164
165 G4double probability = 0;
166 probability = *(pos+index);
167
168 return probability;
169}
170
171//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
173{
174 return transitionOriginatingShellIds[index];
175}
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@ JustWarning
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
G4int AugerOriginatingShellId(G4int index, G4int startShellId) const
G4int FinalShellId() const
returns the id of the shell in wich the transition electron arrives
const std::vector< G4int > * AugerOriginatingShellIds(G4int startShellId) const
const G4DataVector * AugerTransitionEnergies(G4int startShellId) const
G4AugerTransition(G4int finalShell, std::vector< G4int > transIds, const std::map< G4int, std::vector< G4int >, std::less< G4int > > *idMap, const std::map< G4int, G4DataVector, std::less< G4int > > *energyMap, const std::map< G4int, G4DataVector, std::less< G4int > > *probabilityMap)
const G4DataVector * AugerTransitionProbabilities(G4int startShellId) const
G4double AugerTransitionEnergy(G4int index, G4int startShellId) const
const std::vector< G4int > * TransitionOriginatingShellIds() const
Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId.
G4double AugerTransitionProbability(G4int index, G4int startShellId) const
G4int TransitionOriginatingShellId(G4int index) const
Returns the id of the shell form wich the transition electron come from.