source: trunk/source/processes/electromagnetic/lowenergy/src/G4AugerTransition.cc

Last change on this file was 1315, checked in by garnier, 14 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 6.5 KB
Line 
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// $Id: G4AugerTransition.cc,v 1.2 ????
28//
29// Based on G4AtomicTransition.cc by
30// Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
31//
32// Author: Alfonso Mantero (Alfonso.Mantero@ge.infn.it)
33//
34// History:
35// -----------
36// 4 Mar 2002: first implementation
37//
38// -------------------------------------------------------------------
39
40#include "G4AugerTransition.hh"
41
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)
44
45G4AugerTransition::G4AugerTransition(G4int finalShell, std::vector<G4int> transIds,
46                                     const std::map<G4int,std::vector<G4int>,std::less<G4int> >* idMap,
47                                     const std::map<G4int,G4DataVector,std::less<G4int> >* energyMap,
48                                     const std::map<G4int,G4DataVector,std::less<G4int> >* probabilityMap)
49{
50  finalShellId = finalShell;
51  augerOriginatingShellIdsMap = *idMap;
52  augerTransitionEnergiesMap = *energyMap;
53  augerTransitionProbabilitiesMap = *probabilityMap;
54  transitionOriginatingShellIds = transIds;
55 
56
57}
58
59G4AugerTransition::~G4AugerTransition()
60{ 
61
62}
63
64// Returns the ids of the shells from wich an auger electron culd came from, given th shell
65// from wich the transition electron cames from.
66
67const std::vector<G4int>* G4AugerTransition::AugerOriginatingShellIds(G4int startShellId) const
68{
69  std::map<G4int,std::vector<G4int>,std::less<G4int> >::const_iterator shellId = augerOriginatingShellIdsMap.find(startShellId);
70
71  const std::vector<G4int>* dataSet = &(*shellId).second;
72  //const std::vector<G4int>* dataOut = 0;
73
74  if (dataSet->size() == 0) {G4cout << "Error: no auger Id found"<< G4endl;}
75  else {
76   
77    // dataOut = &dataSet; 
78
79  }
80
81  return dataSet;
82}
83
84// Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId
85
86const std::vector<G4int>* G4AugerTransition::TransitionOriginatingShellIds() const
87{
88
89  const std::vector<G4int>* dataSet = &transitionOriginatingShellIds;
90  return dataSet;
91}
92
93// Returns the energiess of the possible auger electrons, given th shell
94// from wich the transition electron cames from.
95
96const G4DataVector* G4AugerTransition::AugerTransitionEnergies(G4int startShellId) const
97{
98  std::map<G4int,G4DataVector,std::less<G4int> >::const_iterator shellId = augerTransitionEnergiesMap.find(startShellId);
99
100  if (shellId == augerTransitionEnergiesMap.end() ) 
101    {G4Exception("G4AugerTransition: corresponding map element not found");}
102
103  const G4DataVector* dataSet = &(*shellId).second;
104
105
106  return dataSet;
107}
108
109// Returns the emission probabilities of the auger electrons, given the shell
110// from wich the transition electron cames from.
111
112const G4DataVector* G4AugerTransition::AugerTransitionProbabilities(G4int startShellId) const
113{
114
115  //debugging
116  //if (startShellId == 1){G4cout <<"OI!!!"<< G4endl;}
117
118  std::map<G4int,G4DataVector,std::less<G4int> >::const_iterator shellId = augerTransitionProbabilitiesMap.find(startShellId);
119
120  if (shellId == augerTransitionProbabilitiesMap.end() ) 
121    {G4Exception("G4AugerTransition: corresponding map element not found");}
122 
123  const G4DataVector* dataSet = &(*shellId).second;
124  // debugging purpose:
125  /*  G4cout << "id: " << shellId->first << G4endl;
126  G4cout << "size:" << dataSet->size() << G4endl;
127  for (G4int i = 0; i < dataSet->size(); i++){
128    G4cout << (dataSet[0])[i] << G4endl;
129    }*/
130  return dataSet; 
131}
132
133G4int G4AugerTransition::FinalShellId() const
134{ 
135  return finalShellId;
136}
137
138// Returns the id of the shell from wich come the auger electron , given the shell
139// from wich the transition electron cames from and the index number.
140
141G4int G4AugerTransition::AugerOriginatingShellId(G4int index, G4int startShellId) const
142{
143  const std::vector<G4int>* ids = AugerOriginatingShellIds(startShellId);
144  // G4int i =
145  std::vector<G4int>::const_iterator pos = ids->begin();
146  G4int n = 0;
147  n = *(pos+index);
148  return n;
149}
150
151// Returns the energy of the auger electron, given the shell
152// from wich the transition electron cames from and the index number.
153
154G4double G4AugerTransition::AugerTransitionEnergy(G4int index, G4int startShellId) const
155{
156  const G4DataVector* energies = AugerTransitionEnergies(startShellId);
157    G4double energy = 0;   
158  if (index < (G4int) energies->size()) {
159    G4DataVector::const_iterator pos = energies->begin();
160    energy = *(pos+index);
161  }
162  return energy; 
163}
164
165// Returns the probability of the auger emission, given the shell
166// from wich the transition electron cames from and the index number.
167
168G4double G4AugerTransition::AugerTransitionProbability(G4int index, G4int startShellId) const
169{
170
171  const G4DataVector *probabilities = AugerTransitionProbabilities(startShellId);
172  G4DataVector::const_iterator pos = probabilities->begin();
173
174  G4double probability = 0; 
175  probability = *(pos+index);
176
177  return  probability;
178 
179}
180
181G4int G4AugerTransition::TransitionOriginatingShellId(G4int index) const
182{
183  return  transitionOriginatingShellIds[index];
184}
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
Note: See TracBrowser for help on using the repository browser.