Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 #ifndef G4Radioactivation_h 26 #ifndef G4Radioactivation_h 27 #define G4Radioactivation_h 1 27 #define G4Radioactivation_h 1 28 28 29 #include "G4RadioactiveDecay.hh" << 29 #include "G4RadioactiveDecayBase.hh" 30 30 31 using G4Radioactivation = G4RadioactiveDecay; << 31 #include <vector> >> 32 #include <map> >> 33 #include <CLHEP/Units/SystemOfUnits.h> >> 34 >> 35 #include "G4ios.hh" >> 36 #include "globals.hh" >> 37 #include "G4VRestDiscreteProcess.hh" >> 38 #include "G4ParticleChangeForRadDecay.hh" >> 39 >> 40 #include "G4NucleusLimits.hh" >> 41 #include "G4RadioactiveDecayRatesToDaughter.hh" >> 42 #include "G4RadioactiveDecayChainsFromParent.hh" >> 43 #include "G4RadioactivityTable.hh" >> 44 #include "G4ThreeVector.hh" >> 45 #include "G4Threading.hh" >> 46 >> 47 class G4Fragment; >> 48 class G4RadioactivationMessenger; >> 49 >> 50 typedef std::vector<G4RadioactiveDecayChainsFromParent> G4RadioactiveDecayParentChainTable; >> 51 typedef std::vector<G4RadioactiveDecayRatesToDaughter> G4RadioactiveDecayRates; >> 52 typedef std::map<G4String, G4DecayTable*> DecayTableMap; >> 53 >> 54 >> 55 class G4Radioactivation : public G4RadioactiveDecayBase >> 56 { >> 57 public: // with description >> 58 >> 59 G4Radioactivation(const G4String& processName="Radioactivation"); >> 60 ~G4Radioactivation(); >> 61 >> 62 virtual void ProcessDescription(std::ostream& outFile) const; >> 63 >> 64 // Set the decay biasing scheme using the data in "filename" >> 65 void SetDecayBias(G4String filename); >> 66 >> 67 // Set the half-life threshold for isomer production >> 68 void SetHLThreshold(G4double hl) {halflifethreshold = hl;} >> 69 >> 70 void SetSourceTimeProfile(G4String filename); >> 71 // Set source exposure function using histograms in "filename" >> 72 >> 73 G4bool IsRateTableReady(const G4ParticleDefinition &); >> 74 // Returns true if the coefficient and decay time table for all the >> 75 // descendants of the specified isotope are ready. >> 76 // used in VR decay mode only >> 77 >> 78 void CalculateChainsFromParent(const G4ParticleDefinition&); >> 79 // Calculates the coefficient and decay time table for all the descendents >> 80 // of the specified isotope. Adds the calculated table to the private data >> 81 // member "theParentChainTable". >> 82 // used in VR decay mode only >> 83 >> 84 void GetChainsFromParent(const G4ParticleDefinition&); >> 85 // Used to retrieve the coefficient and decay time table for all the >> 86 // descendants of the specified isotope from "theParentChainTable" >> 87 // and place it in "chainsFromParent". >> 88 // used in VR decay mode only >> 89 >> 90 void SetDecayRate(G4int,G4int,G4double, G4int, std::vector<G4double>, >> 91 std::vector<G4double>); >> 92 // Sets "theDecayRate" with data supplied in the arguements. >> 93 // used in VR decay mode only >> 94 >> 95 std::vector<G4RadioactivityTable*> GetTheRadioactivityTables() >> 96 {return theRadioactivityTables;} >> 97 // Return vector of G4Radioactivity map - should be used in VR mode only >> 98 >> 99 >> 100 inline void SetVerboseLevel(G4int value) {verboseLevel = value;} >> 101 // Sets the VerboseLevel which controls duggering display >> 102 >> 103 inline G4int GetVerboseLevel() const {return verboseLevel;} >> 104 // Returns the VerboseLevel which controls level of debugging output >> 105 >> 106 // Sets whether branching ration bias scheme applies. >> 107 inline void SetBRBias(G4bool r) { >> 108 BRBias = r; >> 109 } >> 110 >> 111 // Sets the number of times a nucleus will decay when biased >> 112 inline void SetSplitNuclei(G4int r) { >> 113 NSplit = r; >> 114 } >> 115 >> 116 // Returns the nuclear splitting number >> 117 inline G4int GetSplitNuclei () {return NSplit;} >> 118 >> 119 G4VParticleChange* DecayIt(const G4Track& theTrack, >> 120 const G4Step& theStep); >> 121 >> 122 protected: >> 123 >> 124 G4double ConvolveSourceTimeProfile(const G4double, const G4double); >> 125 G4double GetDecayTime(); >> 126 G4int GetDecayTimeBin(const G4double aDecayTime); >> 127 >> 128 //Add gamma,Xray,conversion,and auger electrons for bias mode >> 129 void AddDeexcitationSpectrumForBiasMode(G4ParticleDefinition* apartDef, >> 130 G4double weight, >> 131 G4double currenTime, >> 132 std::vector<double>& weights_v, >> 133 std::vector<double>& times_v, >> 134 std::vector<G4DynamicParticle*>& secondaries_v); >> 135 >> 136 G4RadioactivationMessenger* theRadioactivationMessenger; >> 137 >> 138 private: >> 139 >> 140 G4bool BRBias; >> 141 G4int NSplit; >> 142 >> 143 G4double halflifethreshold; >> 144 >> 145 G4int NSourceBin; >> 146 G4double SBin[100]; >> 147 G4double SProfile[100]; >> 148 G4int NDecayBin; >> 149 G4double DBin[100]; >> 150 G4double DProfile[100]; >> 151 >> 152 G4RadioactiveDecayRatesToDaughter ratesToDaughter; >> 153 G4RadioactiveDecayRates theDecayRateVector; >> 154 G4RadioactiveDecayChainsFromParent chainsFromParent; >> 155 G4RadioactiveDecayParentChainTable theParentChainTable; >> 156 >> 157 // for the radioactivity tables >> 158 std::vector<G4RadioactivityTable*> theRadioactivityTables; >> 159 G4int decayWindows[100]; >> 160 >> 161 // Remainder of life time at rest >> 162 // G4double fRemainderLifeTime; >> 163 G4int verboseLevel; >> 164 >> 165 }; 32 166 33 #endif 167 #endif >> 168 34 169