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 // Authors: Elena Guardincerri (Elena.Guardinc 29 // Alfonso Mantero (Alfonso.Mantero@g 30 // 31 // History: 32 // ----------- 33 // 34 // 16 Sept 2001 EG Modified according to a d 35 // LowEnergy category 36 // 37 // ------------------------------------------- 38 39 // Class description: 40 // Low Energy Electromagnetic Physics: create 41 // G4FluoTransition, G4AugerTransition objects 42 // ------------------------------------------- 43 44 #ifndef G4AtomicTransitionManager_h 45 #define G4AtomicTransitionManager_h 1 46 47 #include "G4ShellData.hh" 48 #include "G4FluoTransition.hh" 49 #include "G4AugerTransition.hh" 50 #include "G4AtomicShell.hh" 51 #include <vector> 52 #include "globals.hh" 53 54 class G4AugerData; 55 56 // This class is a singleton 57 class G4AtomicTransitionManager { 58 59 public: 60 /// The only way to get an instance of this 61 /// function Instance() 62 static G4AtomicTransitionManager* Instance() 63 64 /// needs to be called once from other code 65 void Initialise(); 66 67 /// Z is the atomic number of the element, s 68 /// index (in EADL) of the shell 69 G4AtomicShell* Shell(G4int Z, size_t shellIn 70 71 /// Z is the atomic number of the element, s 72 /// index (in EADL) of the final shell for t 73 /// This function gives, upon Z and the Inde 74 /// the vacancy is, the radiative transition 75 /// shell, energy, probability) 76 const G4FluoTransition* ReachableShell(G4int 77 78 /// This function gives, upon Z and the Inde 79 /// the vacancy is, the NON-radiative transi 80 /// originating shell for the transition, an 81 /// auger electrons emitted (originating vac 82 const G4AugerTransition* ReachableAugerShell 83 84 /// This function returns the number of shel 85 /// whose atomic number is Z 86 G4int NumberOfShells(G4int Z) const; 87 88 /// This function returns the number of thos 89 /// whose atomic number is Z which are reach 90 /// transition 91 G4int NumberOfReachableShells(G4int Z) const 92 93 /// This function returns the number of poss 94 /// for the atom with atomic number Z i.e. t 95 /// a vacancy can be filled by a NON-radiati 96 G4int NumberOfReachableAugerShells(G4int Z) 97 98 /// Gives the sum of the probabilities of ra 99 /// shell whose index is shellIndex 100 G4double 101 TotalRadiativeTransitionProbability(G4int Z, 102 103 /// Gives the sum of the probabilities of no 104 /// shell whose index is shellIndex 105 G4double 106 TotalNonRadiativeTransitionProbability(G4int 107 108 /// Verbosity control 109 void SetVerboseLevel(G4int vl) {verboseLevel 110 G4int GetVerboseLevel(){return verboseLevel; 111 112 private: 113 explicit G4AtomicTransitionManager(); 114 115 ~G4AtomicTransitionManager(); 116 117 // Hide copy constructor and assignment oper 118 G4AtomicTransitionManager& operator=(const G 119 G4AtomicTransitionManager(const G4AtomicTran 120 121 static G4AtomicTransitionManager* instance; 122 // since Augereffect data r stored as a tabl 123 // here a pointer to an element of that clas 124 G4AugerData* augerData; 125 126 // the first element of the map is the atomi 127 // the second element is a vector of G4Atomi 128 std::map<G4int,std::vector<G4AtomicShell*>,s 129 130 // the first element of the map is the atomi 131 // the second element is a vector of G4Atomi 132 std::map<G4int,std::vector<G4FluoTransition* 133 134 // Minimum and maximum Z in EADL table conta 135 // energies of shells 136 G4int zMin = 1; 137 G4int zMax = 104; 138 139 // Minimum and maximum Z in EADL table conta 140 // energies and transition probabilities of 141 G4int infTableLimit = 6; 142 G4int supTableLimit = 104; 143 G4int verboseLevel; 144 G4bool isInitialized; 145 }; 146 147 #endif 148