Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // 27 // 28 // Based on G4AtomicTransition.cc by 29 // Elena Guardincerri (Elena.Guardincerri@ge.i 30 // 31 // Author: Alfonso Mantero (Alfonso.Mantero@ge 32 // 33 // History: 34 // ----------- 35 // 4 Mar 2002: first implementation 36 // 37 // ------------------------------------------- 38 39 #include "G4AugerTransition.hh" 40 41 //....oooOO0OOooo........oooOO0OOooo........oo 42 // the final shell in wich the electron goes i 43 // (i.e. originating shell id, electron energy 44 G4AugerTransition::G4AugerTransition(G4int fin 45 const std::map<G4int,std::vector< 46 const std::map<G4int,G4DataVector 47 const std::map<G4int,G4DataVector 48 { 49 finalShellId = finalShell; 50 augerOriginatingShellIdsMap = *idMap; 51 augerTransitionEnergiesMap = *energyMap; 52 augerTransitionProbabilitiesMap = *probabili 53 transitionOriginatingShellIds = std::move(tr 54 } 55 56 //....oooOO0OOooo........oooOO0OOooo........oo 57 58 G4AugerTransition::~G4AugerTransition() 59 {;} 60 61 //....oooOO0OOooo........oooOO0OOooo........oo 62 // Returns the ids of the shells from wich an 63 // from wich the transition electron cames fro 64 const std::vector<G4int>* G4AugerTransition::A 65 { 66 auto shellId = augerOriginatingShellIdsMap.f 67 68 const std::vector<G4int>* dataSet = &(*shell 69 if (dataSet->empty()) 70 G4cout << "Error: no auger Id found"<< G4e 71 return dataSet; 72 } 73 74 //....oooOO0OOooo........oooOO0OOooo........oo 75 // Returns the ids of the shells from wich an 76 const std::vector<G4int>* G4AugerTransition::T 77 { 78 const std::vector<G4int>* dataSet = &transit 79 return dataSet; 80 } 81 82 //....oooOO0OOooo........oooOO0OOooo........oo 83 // Returns the energies of the possible auger 84 // from which the transition electron came fro 85 const G4DataVector* G4AugerTransition::AugerTr 86 { 87 auto shellId = augerTransitionEnergiesMap.fi 88 89 if (shellId == augerTransitionEnergiesMap.en 90 { 91 G4Exception("G4AugerTransition::AugerTra 92 "corresponding map element not found, en 93 return 0; 94 } 95 const G4DataVector* dataSet = &(*shellId).se 96 return dataSet; 97 } 98 99 //....oooOO0OOooo........oooOO0OOooo........oo 100 // Returns the emission probabilities of the a 101 // from wich the transition electron cames fro 102 const G4DataVector* G4AugerTransition::AugerTr 103 { 104 auto shellId = augerTransitionProbabilitiesM 105 if (shellId == augerTransitionProbabilitiesM 106 { 107 108 G4Exception("G4AugerTransition::AugerTra 109 JustWarning,"corresponding map element n 110 return 0; 111 } 112 113 const G4DataVector* dataSet = &(*shellId).se 114 return dataSet; 115 } 116 117 //....oooOO0OOooo........oooOO0OOooo........oo 118 G4int G4AugerTransition::FinalShellId() const 119 { 120 return finalShellId; 121 } 122 123 //....oooOO0OOooo........oooOO0OOooo........oo 124 // Returns the id of the shell from wich come 125 // from wich the transition electron cames fro 126 G4int G4AugerTransition::AugerOriginatingShell 127 { 128 const std::vector<G4int>* ids = AugerOrigina 129 // G4int i = 130 std::vector<G4int>::const_iterator pos = ids 131 G4int n = 0; 132 n = *(pos+index); 133 return n; 134 } 135 136 //....oooOO0OOooo........oooOO0OOooo........oo 137 // Returns the energy of the auger electron, g 138 // from wich the transition electron cames fro 139 G4double G4AugerTransition::AugerTransitionEne 140 { 141 const G4DataVector* energies = AugerTransiti 142 G4double energy = 0; 143 if (index < (G4int) energies->size()) { 144 G4DataVector::const_iterator pos = energie 145 energy = *(pos+index); 146 } 147 return energy; 148 } 149 150 //....oooOO0OOooo........oooOO0OOooo........oo 151 // Returns the probability of the auger emissi 152 // from wich the transition electron cames fro 153 G4double G4AugerTransition::AugerTransitionPro 154 { 155 156 const G4DataVector *probabilities = AugerTra 157 G4DataVector::const_iterator pos = probabili 158 159 G4double probability = 0; 160 probability = *(pos+index); 161 162 return probability; 163 } 164 165 //....oooOO0OOooo........oooOO0OOooo........oo 166 G4int G4AugerTransition::TransitionOriginating 167 { 168 return transitionOriginatingShellIds[index] 169 } 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191