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 // 26 // ------------------------------------------- 27 // ------------------------------------------------------------------- 27 // 28 // 28 // GEANT4 Class file 29 // GEANT4 Class file 29 // 30 // 30 // 31 // 31 // File name: G4eIonisation 32 // File name: G4eIonisation 32 // 33 // 33 // Author: Laszlo Urban 34 // Author: Laszlo Urban 34 // 35 // 35 // Creation date: 20.03.1997 36 // Creation date: 20.03.1997 36 // 37 // 37 // Modified by Michel Maire and Vladimir Ivanc 38 // Modified by Michel Maire and Vladimir Ivanchenko 38 // 39 // 39 // ------------------------------------------- 40 // ------------------------------------------------------------------- 40 // 41 // 41 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 42 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 43 44 44 #include "G4eIonisation.hh" 45 #include "G4eIonisation.hh" 45 #include "G4Electron.hh" 46 #include "G4Electron.hh" 46 #include "G4MollerBhabhaModel.hh" 47 #include "G4MollerBhabhaModel.hh" >> 48 #include "G4UniversalFluctuation.hh" >> 49 #include "G4BohrFluctuations.hh" >> 50 #include "G4UnitsTable.hh" 47 #include "G4EmParameters.hh" 51 #include "G4EmParameters.hh" 48 #include "G4EmStandUtil.hh" << 49 52 50 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 51 54 >> 55 using namespace std; >> 56 52 G4eIonisation::G4eIonisation(const G4String& n 57 G4eIonisation::G4eIonisation(const G4String& name) 53 : G4VEnergyLossProcess(name), 58 : G4VEnergyLossProcess(name), 54 theElectron(G4Electron::Electron()), 59 theElectron(G4Electron::Electron()), 55 isElectron(true), 60 isElectron(true), 56 isInitialised(false) 61 isInitialised(false) 57 { 62 { 58 SetProcessSubType(fIonisation); 63 SetProcessSubType(fIonisation); 59 SetSecondaryParticle(theElectron); 64 SetSecondaryParticle(theElectron); 60 } 65 } 61 66 62 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 63 68 64 G4eIonisation::~G4eIonisation() = default; << 69 G4eIonisation::~G4eIonisation() >> 70 {} 65 71 66 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 67 73 68 G4double G4eIonisation::MinPrimaryEnergy(const 74 G4double G4eIonisation::MinPrimaryEnergy(const G4ParticleDefinition*, 69 const G4Material*, 75 const G4Material*, 70 G4double cut) 76 G4double cut) 71 { 77 { 72 G4double x = cut; 78 G4double x = cut; 73 if(isElectron) x += cut; 79 if(isElectron) x += cut; 74 return x; 80 return x; 75 } 81 } 76 82 77 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 78 84 79 G4bool G4eIonisation::IsApplicable(const G4Par 85 G4bool G4eIonisation::IsApplicable(const G4ParticleDefinition& p) 80 { 86 { 81 return (&p == theElectron || &p == G4Positro 87 return (&p == theElectron || &p == G4Positron::Positron()); 82 } 88 } 83 89 84 //....oooOO0OOooo........oooOO0OOooo........oo 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 85 91 86 void G4eIonisation::InitialiseEnergyLossProces 92 void G4eIonisation::InitialiseEnergyLossProcess( 87 const G4ParticleDefinition* part, 93 const G4ParticleDefinition* part, 88 const G4ParticleDefinition*) 94 const G4ParticleDefinition*) 89 { 95 { 90 if(!isInitialised) { 96 if(!isInitialised) { 91 if(part != theElectron) { isElectron = fal 97 if(part != theElectron) { isElectron = false; } 92 if (nullptr == EmModel(0)) { SetEmModel(ne << 98 if (!EmModel(0)) { SetEmModel(new G4MollerBhabhaModel()); } 93 G4EmParameters* param = G4EmParameters::In 99 G4EmParameters* param = G4EmParameters::Instance(); 94 EmModel(0)->SetLowEnergyLimit(param->MinKi 100 EmModel(0)->SetLowEnergyLimit(param->MinKinEnergy()); 95 EmModel(0)->SetHighEnergyLimit(param->MaxK 101 EmModel(0)->SetHighEnergyLimit(param->MaxKinEnergy()); 96 if (nullptr == FluctModel()) { << 102 if (!FluctModel()) { SetFluctModel(new G4UniversalFluctuation()); } 97 SetFluctModel(G4EmStandUtil::ModelOfFluc << 103 98 } << 99 AddEmModel(1, EmModel(), FluctModel()); 104 AddEmModel(1, EmModel(), FluctModel()); 100 isInitialised = true; 105 isInitialised = true; 101 } 106 } 102 } 107 } >> 108 >> 109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 110 >> 111 void G4eIonisation::PrintInfo() >> 112 {} 103 113 104 //....oooOO0OOooo........oooOO0OOooo........oo 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 105 115 106 void G4eIonisation::ProcessDescription(std::os 116 void G4eIonisation::ProcessDescription(std::ostream& out) const 107 { 117 { 108 out << " Ionisation"; 118 out << " Ionisation"; 109 G4VEnergyLossProcess::ProcessDescription(out 119 G4VEnergyLossProcess::ProcessDescription(out); 110 } 120 } 111 121 112 //....oooOO0OOooo........oooOO0OOooo........oo 122 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 113 123