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