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 // $Id: G4LossTableManager.hh 106714 2017-10-20 09:38:06Z gcosmo $ >> 27 // >> 28 // 26 // ------------------------------------------- 29 // ------------------------------------------------------------------- 27 // 30 // 28 // GEANT4 Class header file 31 // GEANT4 Class header file 29 // 32 // 30 // 33 // 31 // File name: G4LossTableManager 34 // File name: G4LossTableManager 32 // 35 // 33 // Author: Vladimir Ivanchenko on base 36 // Author: Vladimir Ivanchenko on base of G4LossTables class 34 // and Maria Grazia Pia ideas 37 // and Maria Grazia Pia ideas 35 // 38 // 36 // Creation date: 03.01.2002 39 // Creation date: 03.01.2002 37 // 40 // 38 // Modifications by V.Ivanchenko << 41 // Modifications: >> 42 // >> 43 // 20-01-03 Migrade to cut per region (V.Ivanchenko) >> 44 // 17-02-03 Fix problem of store/restore tables for ions (V.Ivanchenko) >> 45 // 10-03-03 Add Ion registration (V.Ivanchenko) >> 46 // 25-03-03 Add deregistration (V.Ivanchenko) >> 47 // 26-03-03 Add GetDEDXDispersion (V.Ivanchenko) >> 48 // 02-04-03 Change messenger (V.Ivanchenko) >> 49 // 23-07-03 Add exchange with G4EnergyLossTables (V.Ivanchenko) >> 50 // 05-10-03 Add G4VEmProcesses registration (V.Ivanchenko) >> 51 // 17-10-03 Add SetParameters method (V.Ivanchenko) >> 52 // 12-11-03 G4EnergyLossSTD -> G4EnergyLossProcess (V.Ivanchenko) >> 53 // 14-01-04 Activate precise range calculation (V.Ivanchenko) >> 54 // 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivantchenko) >> 55 // 10-01-06 PreciseRange -> CSDARange (V.Ivantchenko) >> 56 // 20-01-06 Introduce GetSubDEDX method (VI) >> 57 // 26-01-06 Rename GetRange -> GetRangeFromRestricteDEDX (V.Ivanchenko) >> 58 // 10-05-06 Add methods SetMscStepLimitation, FacRange and MscFlag (VI) >> 59 // 22-05-06 Add methods Set/Get bremsTh (VI) >> 60 // 12-02-07 Add SetSkin, SetLinearLossLimit (V.Ivanchenko) >> 61 // 18-06-07 Move definition of msc parameters to G4EmProcessOptions (V.Ivanchenko) >> 62 // 12-04-10 Added PreparePhsyicsTables and BuildPhysicsTables entries (V.Ivanchenko) >> 63 // 04-06-13 Adaptation for MT mode, new method LocalPhysicsTables (V.Ivanchenko) 39 // 64 // 40 // Class Description: 65 // Class Description: 41 // 66 // 42 // A utility static class, responsable for the 67 // A utility static class, responsable for the energy loss tables 43 // for each particle 68 // for each particle 44 // 69 // 45 // Energy loss processes have to register thei 70 // Energy loss processes have to register their tables with this 46 // class. The responsibility of creating and d 71 // class. The responsibility of creating and deleting the tables 47 // remains with the energy loss classes. 72 // remains with the energy loss classes. 48 73 49 // ------------------------------------------- 74 // ------------------------------------------------------------------- 50 // 75 // 51 76 52 #ifndef G4LossTableManager_h 77 #ifndef G4LossTableManager_h 53 #define G4LossTableManager_h 1 78 #define G4LossTableManager_h 1 54 79 55 #include <map> 80 #include <map> 56 #include <vector> 81 #include <vector> 57 #include "globals.hh" 82 #include "globals.hh" 58 #include "G4ThreadLocalSingleton.hh" 83 #include "G4ThreadLocalSingleton.hh" 59 #include "G4VEnergyLossProcess.hh" 84 #include "G4VEnergyLossProcess.hh" 60 #include "G4EmParameters.hh" << 85 #include "G4EmCorrections.hh" >> 86 #include "G4LossTableBuilder.hh" >> 87 #include "G4VAtomDeexcitation.hh" >> 88 #include "G4VSubCutProducer.hh" 61 89 62 class G4PhysicsTable; 90 class G4PhysicsTable; 63 class G4MaterialCutsCouple; 91 class G4MaterialCutsCouple; 64 class G4ParticleDefinition; 92 class G4ParticleDefinition; 65 class G4Region; 93 class G4Region; 66 class G4EmSaturation; 94 class G4EmSaturation; 67 class G4EmConfigurator; 95 class G4EmConfigurator; 68 class G4ElectronIonPair; 96 class G4ElectronIonPair; 69 class G4NIELCalculator; << 70 class G4VMultipleScattering; 97 class G4VMultipleScattering; 71 class G4VEmProcess; 98 class G4VEmProcess; 72 class G4EmCorrections; << 99 class G4GammaShark; 73 class G4LossTableBuilder; << 74 class G4VAtomDeexcitation; << 75 class G4VSubCutProducer; << 76 100 77 class G4LossTableManager 101 class G4LossTableManager 78 { 102 { 79 103 80 friend class G4ThreadLocalSingleton<G4LossTabl 104 friend class G4ThreadLocalSingleton<G4LossTableManager>; 81 105 82 public: 106 public: 83 107 84 static G4LossTableManager* Instance(); 108 static G4LossTableManager* Instance(); 85 109 86 ~G4LossTableManager(); 110 ~G4LossTableManager(); 87 111 88 //------------------------------------------ 112 //------------------------------------------------- >> 113 // called from destructor >> 114 //------------------------------------------------- >> 115 >> 116 void Clear(); >> 117 >> 118 //------------------------------------------------- 89 // initialisation before a new run 119 // initialisation before a new run 90 //------------------------------------------ 120 //------------------------------------------------- 91 121 92 void PreparePhysicsTable(const G4ParticleDef 122 void PreparePhysicsTable(const G4ParticleDefinition* aParticle, 93 G4VEnergyLossProces << 123 G4VEnergyLossProcess* p, G4bool theMaster); 94 124 95 void PreparePhysicsTable(const G4ParticleDef 125 void PreparePhysicsTable(const G4ParticleDefinition* aParticle, 96 G4VEmProcess* p); << 126 G4VEmProcess* p, G4bool theMaster); 97 127 98 void PreparePhysicsTable(const G4ParticleDef 128 void PreparePhysicsTable(const G4ParticleDefinition* aParticle, 99 G4VMultipleScatteri << 129 G4VMultipleScattering* p, G4bool theMaster); 100 130 101 void BuildPhysicsTable(const G4ParticleDefin 131 void BuildPhysicsTable(const G4ParticleDefinition* aParticle); 102 132 103 void BuildPhysicsTable(const G4ParticleDefin 133 void BuildPhysicsTable(const G4ParticleDefinition* aParticle, 104 G4VEnergyLossProcess* 134 G4VEnergyLossProcess* p); 105 135 106 void LocalPhysicsTables(const G4ParticleDefi 136 void LocalPhysicsTables(const G4ParticleDefinition* aParticle, 107 G4VEnergyLossProcess 137 G4VEnergyLossProcess* p); 108 138 109 void DumpHtml(); 139 void DumpHtml(); 110 140 111 //------------------------------------------ 141 //------------------------------------------------- 112 // Run time access to DEDX, range, energy fo 142 // Run time access to DEDX, range, energy for a given particle, 113 // energy, and G4MaterialCutsCouple 143 // energy, and G4MaterialCutsCouple 114 //------------------------------------------ 144 //------------------------------------------------- 115 145 116 inline G4double GetDEDX( 146 inline G4double GetDEDX( 117 const G4ParticleDefinition *aParticle, 147 const G4ParticleDefinition *aParticle, 118 G4double kineticEnergy, 148 G4double kineticEnergy, 119 const G4MaterialCutsCouple *couple); 149 const G4MaterialCutsCouple *couple); 120 150 >> 151 inline G4double GetSubDEDX( >> 152 const G4ParticleDefinition *aParticle, >> 153 G4double kineticEnergy, >> 154 const G4MaterialCutsCouple *couple); >> 155 121 inline G4double GetRange( 156 inline G4double GetRange( 122 const G4ParticleDefinition *aParticle, 157 const G4ParticleDefinition *aParticle, 123 G4double kineticEnergy, 158 G4double kineticEnergy, 124 const G4MaterialCutsCouple *couple); 159 const G4MaterialCutsCouple *couple); 125 160 126 inline G4double GetCSDARange( 161 inline G4double GetCSDARange( 127 const G4ParticleDefinition *aParticle, 162 const G4ParticleDefinition *aParticle, 128 G4double kineticEnergy, 163 G4double kineticEnergy, 129 const G4MaterialCutsCouple *couple); 164 const G4MaterialCutsCouple *couple); 130 165 131 inline G4double GetRangeFromRestricteDEDX( 166 inline G4double GetRangeFromRestricteDEDX( 132 const G4ParticleDefinition *aParticle, 167 const G4ParticleDefinition *aParticle, 133 G4double kineticEnergy, 168 G4double kineticEnergy, 134 const G4MaterialCutsCouple *couple); 169 const G4MaterialCutsCouple *couple); 135 170 136 inline G4double GetEnergy( 171 inline G4double GetEnergy( 137 const G4ParticleDefinition *aParticle, 172 const G4ParticleDefinition *aParticle, 138 G4double range, 173 G4double range, 139 const G4MaterialCutsCouple *couple); 174 const G4MaterialCutsCouple *couple); 140 175 141 inline G4double GetDEDXDispersion( 176 inline G4double GetDEDXDispersion( 142 const G4MaterialCutsCouple *couple, 177 const G4MaterialCutsCouple *couple, 143 const G4DynamicParticle* dp, 178 const G4DynamicParticle* dp, 144 G4double& length); 179 G4double& length); 145 180 146 //------------------------------------------ 181 //------------------------------------------------- 147 // Methods to be called only at initialisati 182 // Methods to be called only at initialisation 148 // and at the end of the job << 149 //------------------------------------------ 183 //------------------------------------------------- 150 184 151 void Register(G4VEnergyLossProcess* p); 185 void Register(G4VEnergyLossProcess* p); 152 186 153 void DeRegister(G4VEnergyLossProcess* p); 187 void DeRegister(G4VEnergyLossProcess* p); 154 188 155 void Register(G4VMultipleScattering* p); 189 void Register(G4VMultipleScattering* p); 156 190 157 void DeRegister(G4VMultipleScattering* p); 191 void DeRegister(G4VMultipleScattering* p); 158 192 159 void Register(G4VEmProcess* p); 193 void Register(G4VEmProcess* p); 160 194 161 void DeRegister(G4VEmProcess* p); 195 void DeRegister(G4VEmProcess* p); 162 196 163 void Register(G4VProcess* p); << 164 << 165 void DeRegister(G4VProcess* p); << 166 << 167 void Register(G4VEmModel* p); 197 void Register(G4VEmModel* p); 168 198 169 void DeRegister(G4VEmModel* p); 199 void DeRegister(G4VEmModel* p); 170 200 171 void Register(G4VEmFluctuationModel* p); 201 void Register(G4VEmFluctuationModel* p); 172 202 173 void DeRegister(G4VEmFluctuationModel* p); 203 void DeRegister(G4VEmFluctuationModel* p); 174 204 175 void RegisterExtraParticle(const G4ParticleD 205 void RegisterExtraParticle(const G4ParticleDefinition* aParticle, 176 G4VEnergyLossProc 206 G4VEnergyLossProcess* p); 177 207 178 void SetVerbose(G4int val); 208 void SetVerbose(G4int val); 179 209 180 void ResetParameters(); << 181 << 182 void SetAtomDeexcitation(G4VAtomDeexcitation 210 void SetAtomDeexcitation(G4VAtomDeexcitation*); 183 211 184 void SetSubCutProducer(G4VSubCutProducer*); 212 void SetSubCutProducer(G4VSubCutProducer*); 185 213 186 void SetNIELCalculator(G4NIELCalculator*); << 187 << 188 //------------------------------------------ 214 //------------------------------------------------- 189 // Access methods 215 // Access methods 190 //------------------------------------------ 216 //------------------------------------------------- 191 217 192 inline G4bool IsMaster() const; 218 inline G4bool IsMaster() const; 193 219 >> 220 inline 194 G4VEnergyLossProcess* GetEnergyLossProcess(c 221 G4VEnergyLossProcess* GetEnergyLossProcess(const G4ParticleDefinition*); 195 222 196 const std::vector<G4VEnergyLossProcess*>& Ge 223 const std::vector<G4VEnergyLossProcess*>& GetEnergyLossProcessVector(); 197 224 198 const std::vector<G4VEmProcess*>& GetEmProce 225 const std::vector<G4VEmProcess*>& GetEmProcessVector(); 199 226 200 const std::vector<G4VMultipleScattering*>& G 227 const std::vector<G4VMultipleScattering*>& GetMultipleScatteringVector(); 201 228 202 G4EmSaturation* EmSaturation(); 229 G4EmSaturation* EmSaturation(); 203 230 204 G4EmConfigurator* EmConfigurator(); 231 G4EmConfigurator* EmConfigurator(); 205 232 206 G4ElectronIonPair* ElectronIonPair(); 233 G4ElectronIonPair* ElectronIonPair(); 207 234 208 G4NIELCalculator* NIELCalculator(); << 209 << 210 inline G4EmCorrections* EmCorrections(); 235 inline G4EmCorrections* EmCorrections(); 211 236 212 inline G4VAtomDeexcitation* AtomDeexcitation 237 inline G4VAtomDeexcitation* AtomDeexcitation(); 213 238 214 inline G4VSubCutProducer* SubCutProducer(); 239 inline G4VSubCutProducer* SubCutProducer(); 215 240 216 inline G4LossTableBuilder* GetTableBuilder() 241 inline G4LossTableBuilder* GetTableBuilder(); 217 242 218 inline void SetGammaGeneralProcess(G4VEmProc << 243 inline void SetGammaShark(G4GammaShark*); 219 << 220 inline G4VEmProcess* GetGammaGeneralProcess( << 221 << 222 inline void SetElectronGeneralProcess(G4VEmP << 223 << 224 inline G4VEmProcess* GetElectronGeneralProce << 225 << 226 inline void SetPositronGeneralProcess(G4VEmP << 227 244 228 inline G4VEmProcess* GetPositronGeneralProce << 245 inline G4GammaShark* GetGammaShark(); 229 << 230 G4LossTableManager(G4LossTableManager &) = d << 231 G4LossTableManager & operator=(const G4LossT << 232 246 233 private: 247 private: 234 248 235 //------------------------------------------ 249 //------------------------------------------------- 236 // Private methods and members 250 // Private methods and members 237 //------------------------------------------ 251 //------------------------------------------------- 238 252 239 G4LossTableManager(); 253 G4LossTableManager(); 240 254 241 void Clear(); << 255 void ResetParameters(); 242 256 243 G4VEnergyLossProcess* BuildTables(const G4Pa 257 G4VEnergyLossProcess* BuildTables(const G4ParticleDefinition* aParticle); 244 258 245 void CopyTables(const G4ParticleDefinition* 259 void CopyTables(const G4ParticleDefinition* aParticle, 246 G4VEnergyLossProcess*); 260 G4VEnergyLossProcess*); 247 261 248 void ParticleHaveNoLoss(const G4ParticleDefi 262 void ParticleHaveNoLoss(const G4ParticleDefinition* aParticle); 249 263 250 void CopyDEDXTables(); 264 void CopyDEDXTables(); 251 265 252 void PrintEWarning(G4String, G4double); 266 void PrintEWarning(G4String, G4double); 253 267 >> 268 G4LossTableManager(G4LossTableManager &) = delete; >> 269 G4LossTableManager & operator=(const G4LossTableManager &right) = delete; >> 270 254 static G4ThreadLocal G4LossTableManager* ins 271 static G4ThreadLocal G4LossTableManager* instance; 255 272 256 typedef const G4ParticleDefinition* PD; 273 typedef const G4ParticleDefinition* PD; 257 274 258 // cache << 275 std::map<PD,G4VEnergyLossProcess*,std::less<PD> > loss_map; 259 G4VEnergyLossProcess* currentLoss{nullptr}; << 260 PD currentParticle{nullptr}; << 261 PD theElectron; << 262 PD theGenericIon{nullptr}; << 263 PD firstParticle{nullptr}; << 264 << 265 G4LossTableBuilder* tableBuilder; << 266 G4EmCorrections* emCorrections; << 267 G4EmConfigurator* emConfigurator{nullptr}; << 268 G4ElectronIonPair* emElectronIonPair{nullptr << 269 G4NIELCalculator* nielCalculator{nullptr}; << 270 G4VAtomDeexcitation* atomDeexcitation{nullpt << 271 G4VSubCutProducer* subcutProducer{nullptr}; << 272 << 273 G4EmParameters* theParameters; << 274 G4VEmProcess* gGeneral{nullptr}; << 275 G4VEmProcess* eGeneral{nullptr}; << 276 G4VEmProcess* pGeneral{nullptr}; << 277 << 278 G4int verbose; << 279 G4int n_loss{0}; << 280 G4int run{-1}; << 281 << 282 G4bool all_tables_are_built{false}; << 283 G4bool startInitialisation{false}; << 284 G4bool resetParam{true}; << 285 G4bool isMaster{false}; << 286 276 287 std::vector<G4VEnergyLossProcess*> loss_vect 277 std::vector<G4VEnergyLossProcess*> loss_vector; 288 std::vector<PD> part_vector; 278 std::vector<PD> part_vector; 289 std::vector<PD> base_part_vector; 279 std::vector<PD> base_part_vector; >> 280 std::vector<G4bool> tables_are_built; >> 281 std::vector<G4bool> isActive; 290 std::vector<G4PhysicsTable*> dedx_vector; 282 std::vector<G4PhysicsTable*> dedx_vector; 291 std::vector<G4PhysicsTable*> range_vector; 283 std::vector<G4PhysicsTable*> range_vector; 292 std::vector<G4PhysicsTable*> inv_range_vecto 284 std::vector<G4PhysicsTable*> inv_range_vector; 293 std::vector<G4bool> tables_are_built; << 294 std::vector<G4bool> isActive; << 295 std::vector<G4VMultipleScattering*> msc_vect 285 std::vector<G4VMultipleScattering*> msc_vector; 296 std::vector<G4VEmProcess*> emp_vector; 286 std::vector<G4VEmProcess*> emp_vector; 297 std::vector<G4VEmModel*> mod_vector; 287 std::vector<G4VEmModel*> mod_vector; 298 std::vector<G4VEmFluctuationModel*> fmod_vec 288 std::vector<G4VEmFluctuationModel*> fmod_vector; 299 std::vector<G4VProcess*> p_vector; << 300 289 301 std::map<PD,G4VEnergyLossProcess*,std::less< << 290 // cache >> 291 G4VEnergyLossProcess* currentLoss; >> 292 PD currentParticle; >> 293 PD theElectron; >> 294 PD theGenericIon; >> 295 PD firstParticle; >> 296 >> 297 G4int n_loss; >> 298 G4int run; >> 299 >> 300 G4bool all_tables_are_built; >> 301 G4bool startInitialisation; >> 302 G4bool isMaster; >> 303 G4LossTableBuilder* tableBuilder; >> 304 G4EmCorrections* emCorrections; >> 305 G4EmConfigurator* emConfigurator; >> 306 G4ElectronIonPair* emElectronIonPair; >> 307 G4VAtomDeexcitation* atomDeexcitation; >> 308 G4VSubCutProducer* subcutProducer; >> 309 >> 310 G4EmParameters* theParameters; >> 311 G4GammaShark* gammaShark; >> 312 >> 313 G4int verbose; >> 314 302 }; 315 }; 303 316 304 //....oooOO0OOooo........oooOO0OOooo........oo 317 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 305 //....oooOO0OOooo........oooOO0OOooo........oo 318 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 306 319 >> 320 inline G4VEnergyLossProcess* >> 321 G4LossTableManager::GetEnergyLossProcess(const G4ParticleDefinition *aParticle) >> 322 { >> 323 //G4cout << "G4LossTableManager::GetEnergyLossProcess: " >> 324 //<< aParticle << " " << currentParticle << " " << currentLoss << G4endl; >> 325 if(aParticle != currentParticle) { >> 326 currentParticle = aParticle; >> 327 std::map<PD,G4VEnergyLossProcess*,std::less<PD> >::const_iterator pos; >> 328 if ((pos = loss_map.find(aParticle)) != loss_map.end()) { >> 329 currentLoss = (*pos).second; >> 330 } else { >> 331 currentLoss = nullptr; >> 332 if ((pos = loss_map.find(theGenericIon)) != loss_map.end()) { >> 333 currentLoss = (*pos).second; >> 334 } >> 335 } >> 336 } >> 337 return currentLoss; >> 338 } >> 339 >> 340 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 341 307 inline 342 inline 308 G4double G4LossTableManager::GetDEDX(const G4P 343 G4double G4LossTableManager::GetDEDX(const G4ParticleDefinition *aParticle, 309 G4double 344 G4double kineticEnergy, 310 const G4M 345 const G4MaterialCutsCouple *couple) 311 { 346 { 312 if(aParticle != currentParticle) { GetEnergy 347 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 313 return currentLoss ? currentLoss->GetDEDX(ki 348 return currentLoss ? currentLoss->GetDEDX(kineticEnergy, couple) : 0.0; 314 } 349 } 315 350 316 //....oooOO0OOooo........oooOO0OOooo........oo 351 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 317 352 318 inline 353 inline >> 354 G4double G4LossTableManager::GetSubDEDX(const G4ParticleDefinition *aParticle, >> 355 G4double kineticEnergy, >> 356 const G4MaterialCutsCouple *couple) >> 357 { >> 358 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } >> 359 return currentLoss ? currentLoss->GetDEDXForSubsec(kineticEnergy, couple) : 0.0; >> 360 } >> 361 >> 362 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... >> 363 >> 364 inline 319 G4double G4LossTableManager::GetCSDARange(cons 365 G4double G4LossTableManager::GetCSDARange(const G4ParticleDefinition *aParticle, 320 G4do 366 G4double kineticEnergy, 321 cons 367 const G4MaterialCutsCouple *couple) 322 { 368 { 323 if(aParticle != currentParticle) { GetEnergy 369 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 324 return currentLoss ? currentLoss->GetCSDARan 370 return currentLoss ? currentLoss->GetCSDARange(kineticEnergy, couple) : DBL_MAX; 325 } 371 } 326 372 327 //....oooOO0OOooo........oooOO0OOooo........oo 373 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 328 374 329 inline 375 inline 330 G4double G4LossTableManager::GetRangeFromRestr 376 G4double G4LossTableManager::GetRangeFromRestricteDEDX( 331 const G4ParticleD 377 const G4ParticleDefinition *aParticle, 332 G4double kineticE 378 G4double kineticEnergy, 333 const G4MaterialC 379 const G4MaterialCutsCouple *couple) 334 { 380 { 335 if(aParticle != currentParticle) { GetEnergy 381 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 336 return currentLoss ? currentLoss->GetRange(k << 382 return currentLoss ? currentLoss->GetRangeForLoss(kineticEnergy, couple) : DBL_MAX; 337 } 383 } 338 384 339 //....oooOO0OOooo........oooOO0OOooo........oo 385 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 340 386 341 inline 387 inline 342 G4double G4LossTableManager::GetRange(const G4 388 G4double G4LossTableManager::GetRange(const G4ParticleDefinition *aParticle, 343 G4double 389 G4double kineticEnergy, 344 const G4 390 const G4MaterialCutsCouple *couple) 345 { 391 { 346 if(aParticle != currentParticle) { GetEnergy 392 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 347 return currentLoss ? currentLoss->GetRange(k 393 return currentLoss ? currentLoss->GetRange(kineticEnergy, couple) : DBL_MAX; 348 } 394 } 349 395 350 //....oooOO0OOooo........oooOO0OOooo........oo 396 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 351 397 352 inline 398 inline 353 G4double G4LossTableManager::GetEnergy(const G 399 G4double G4LossTableManager::GetEnergy(const G4ParticleDefinition *aParticle, 354 G4doubl 400 G4double range, 355 const G 401 const G4MaterialCutsCouple *couple) 356 { 402 { 357 if(aParticle != currentParticle) { GetEnergy 403 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 358 return currentLoss ? currentLoss->GetKinetic 404 return currentLoss ? currentLoss->GetKineticEnergy(range, couple) : 0.0; 359 } 405 } 360 406 361 //....oooOO0OOooo........oooOO0OOooo........oo 407 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 362 408 363 inline 409 inline 364 G4double G4LossTableManager::GetDEDXDispersion 410 G4double G4LossTableManager::GetDEDXDispersion( 365 const G4MaterialC 411 const G4MaterialCutsCouple *couple, 366 const G4DynamicPa 412 const G4DynamicParticle* dp, 367 G4double& length) 413 G4double& length) 368 { 414 { 369 const G4ParticleDefinition* aParticle = dp-> 415 const G4ParticleDefinition* aParticle = dp->GetParticleDefinition(); 370 if(aParticle != currentParticle) { GetEnergy 416 if(aParticle != currentParticle) { GetEnergyLossProcess(aParticle); } 371 return currentLoss ? currentLoss->GetDEDXDis 417 return currentLoss ? currentLoss->GetDEDXDispersion(couple, dp, length) : 0.0; 372 } 418 } 373 419 374 //....oooOO0OOooo........oooOO0OOooo........oo 420 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 375 421 376 inline G4bool G4LossTableManager::IsMaster() c 422 inline G4bool G4LossTableManager::IsMaster() const 377 { 423 { 378 return isMaster; 424 return isMaster; 379 } 425 } 380 426 381 //....oooOO0OOooo........oooOO0OOooo........oo 427 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 382 428 383 inline G4EmCorrections* G4LossTableManager::Em 429 inline G4EmCorrections* G4LossTableManager::EmCorrections() 384 { 430 { 385 return emCorrections; 431 return emCorrections; 386 } 432 } 387 433 388 //....oooOO0OOooo........oooOO0OOooo........oo 434 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 389 435 390 inline G4VAtomDeexcitation* G4LossTableManager 436 inline G4VAtomDeexcitation* G4LossTableManager::AtomDeexcitation() 391 { 437 { 392 return atomDeexcitation; 438 return atomDeexcitation; 393 } 439 } 394 440 395 //....oooOO0OOooo........oooOO0OOooo........oo 441 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 396 442 397 inline G4VSubCutProducer* G4LossTableManager:: 443 inline G4VSubCutProducer* G4LossTableManager::SubCutProducer() 398 { 444 { 399 return subcutProducer; 445 return subcutProducer; 400 } 446 } 401 447 402 //....oooOO0OOooo........oooOO0OOooo........oo 448 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 403 449 404 inline G4LossTableBuilder* G4LossTableManager: 450 inline G4LossTableBuilder* G4LossTableManager::GetTableBuilder() 405 { 451 { 406 return tableBuilder; 452 return tableBuilder; 407 } 453 } 408 454 409 //....oooOO0OOooo........oooOO0OOooo........oo << 455 inline void G4LossTableManager::SetGammaShark(G4GammaShark* ptr) 410 << 411 inline void G4LossTableManager::SetGammaGenera << 412 { 456 { 413 gGeneral = ptr; << 457 gammaShark = ptr; 414 } 458 } 415 459 416 //....oooOO0OOooo........oooOO0OOooo........oo << 460 inline G4GammaShark* G4LossTableManager::GetGammaShark() 417 << 418 inline G4VEmProcess* G4LossTableManager::GetGa << 419 { 461 { 420 return gGeneral; << 462 return gammaShark; 421 } 463 } 422 464 423 //....oooOO0OOooo........oooOO0OOooo........oo << 424 << 425 inline void G4LossTableManager::SetElectronGen << 426 { << 427 eGeneral = ptr; << 428 } << 429 << 430 //....oooOO0OOooo........oooOO0OOooo........oo << 431 << 432 inline G4VEmProcess* G4LossTableManager::GetEl << 433 { << 434 return eGeneral; << 435 } << 436 << 437 //....oooOO0OOooo........oooOO0OOooo........oo << 438 << 439 inline void G4LossTableManager::SetPositronGen << 440 { << 441 pGeneral = ptr; << 442 } << 443 << 444 //....oooOO0OOooo........oooOO0OOooo........oo << 445 << 446 inline G4VEmProcess* G4LossTableManager::GetPo << 447 { << 448 return pGeneral; << 449 } << 450 //....oooOO0OOooo........oooOO0OOooo........oo << 451 << 452 #endif 465 #endif >> 466 453 467