source: trunk/source/processes/electromagnetic/muons/src/G4MuIonisation.cc@ 1330

Last change on this file since 1330 was 1315, checked in by garnier, 15 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 7.2 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// $Id: G4MuIonisation.cc,v 1.61 2010/06/04 09:30:40 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
28//
29// -------------------------------------------------------------------
30//
31// GEANT4 Class file
32//
33//
34// File name: G4MuIonisation
35//
36// Author: Laszlo Urban
37//
38// Creation date: 30.09.1997
39//
40// Modifications:
41//
42// 08-04-98 remove 'tracking cut' of the ionizing particle (mma)
43// 26-10-98 new stuff from R.Kokoulin + cleanup , L.Urban
44// 10-02-00 modifications , new e.m. structure, L.Urban
45// 23-03-01 R.Kokoulin's correction is commented out, L.Urban
46// 29-05-01 V.Ivanchenko minor changes to provide ANSI -wall compilation
47// 10-08-01 new methods Store/Retrieve PhysicsTable (mma)
48// 28-08-01 new function ComputeRestrictedMeandEdx() + 'cleanup' (mma)
49// 17-09-01 migration of Materials to pure STL (mma)
50// 26-09-01 completion of RetrievePhysicsTable (mma)
51// 29-10-01 all static functions no more inlined (mma)
52// 07-11-01 correction(Tmax+xsection computation) L.Urban
53// 08-11-01 particleMass becomes a local variable (mma)
54// 10-05-02 V.Ivanchenko update to new design
55// 04-12-02 V.Ivanchenko the low energy limit for Kokoulin model to 10 GeV
56// 23-12-02 Change interface in order to move to cut per region (V.Ivanchenko)
57// 26-12-02 Secondary production moved to derived classes (V.Ivanchenko)
58// 13-02-03 SubCutoff regime is assigned to a region (V.Ivanchenko)
59// 23-05-03 Define default integral + BohrFluctuations (V.Ivanchenko)
60// 03-06-03 Add SetIntegral method to choose fluctuation model (V.Ivanchenko)
61// 03-06-03 Fix initialisation problem for STD ionisation (V.Ivanchenko)
62// 04-08-03 Set integral=false to be default (V.Ivanchenko)
63// 08-08-03 STD substitute standard (V.Ivanchenko)
64// 12-11-03 G4EnergyLossSTD -> G4EnergyLossProcess (V.Ivanchenko)
65// 10-02-04 Calculation of radiative corrections using R.Kokoulin model (V.Ivanchenko)
66// 27-05-04 Set integral to be a default regime (V.Ivanchenko)
67// 17-08-04 Utilise mu+ tables for mu- (V.Ivanchenko)
68// 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivantchenko)
69// 08-04-05 Major optimisation of internal interfaces (V.Ivantchenko)
70// 12-08-05 SetStepLimits(0.2, 0.1*mm) (mma)
71// 02-09-05 SetStepLimits(0.2, 1*mm) (V.Ivantchenko)
72// 12-08-05 SetStepLimits(0.2, 0.1*mm) + integral off (V.Ivantchenko)
73// 10-01-06 SetStepLimits -> SetStepFunction (V.Ivantchenko)
74//
75// -------------------------------------------------------------------
76//
77//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
78//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
79
80#include "G4MuIonisation.hh"
81#include "G4Electron.hh"
82#include "G4MuonPlus.hh"
83#include "G4MuonMinus.hh"
84#include "G4BraggModel.hh"
85#include "G4BetheBlochModel.hh"
86#include "G4MuBetheBlochModel.hh"
87#include "G4UniversalFluctuation.hh"
88#include "G4IonFluctuations.hh"
89#include "G4BohrFluctuations.hh"
90#include "G4UnitsTable.hh"
91#include "G4ICRU73QOModel.hh"
92
93//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
94
95using namespace std;
96
97G4MuIonisation::G4MuIonisation(const G4String& name)
98 : G4VEnergyLossProcess(name),
99 theParticle(0),
100 theBaseParticle(0),
101 isInitialised(false)
102{
103 // SetStepFunction(0.2, 1*mm);
104 //SetIntegral(true);
105 //SetVerboseLevel(1);
106 SetProcessSubType(fIonisation);
107}
108
109//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
110
111G4MuIonisation::~G4MuIonisation()
112{}
113
114//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
115
116G4bool G4MuIonisation::IsApplicable(const G4ParticleDefinition& p)
117{
118 return (p.GetPDGCharge() != 0.0 && p.GetPDGMass() > 10.0*MeV);
119}
120
121//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
122
123G4double G4MuIonisation::MinPrimaryEnergy(const G4ParticleDefinition*,
124 const G4Material*,
125 G4double cut)
126{
127 G4double x = 0.5*cut/electron_mass_c2;
128 G4double g = x*ratio + std::sqrt((1. + x)*(1. + x*ratio*ratio));
129 return mass*(g - 1.0);
130}
131
132//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
133
134void G4MuIonisation::InitialiseEnergyLossProcess(const G4ParticleDefinition* part,
135 const G4ParticleDefinition* bpart)
136{
137 if(!isInitialised) {
138
139 theParticle = part;
140 theBaseParticle = bpart;
141
142 mass = theParticle->GetPDGMass();
143 G4double q = theParticle->GetPDGCharge();
144 G4double elow = 0.2*MeV;
145 SetSecondaryParticle(G4Electron::Electron());
146
147 // Bragg peak model
148 if (!EmModel(1)) {
149 if(q > 0.0) { SetEmModel(new G4BraggModel(),1); }
150 else {
151 SetEmModel(new G4ICRU73QOModel(),1);
152 //elow = 1.0*MeV;
153 }
154 }
155 EmModel(1)->SetLowEnergyLimit(MinKinEnergy());
156 EmModel(1)->SetHighEnergyLimit(elow);
157 AddEmModel(1, EmModel(1), new G4IonFluctuations());
158
159 // high energy fluctuation model
160 if (!FluctModel()) { SetFluctModel(new G4UniversalFluctuation()); }
161
162 // moderate energy model
163 if (!EmModel(2)) { SetEmModel(new G4BetheBlochModel(),2); }
164 EmModel(2)->SetLowEnergyLimit(elow);
165 EmModel(2)->SetHighEnergyLimit(1.0*GeV);
166 AddEmModel(2, EmModel(2), FluctModel());
167
168 // high energy model
169 if (!EmModel(3)) { SetEmModel(new G4MuBetheBlochModel(),3); }
170 EmModel(3)->SetLowEnergyLimit(1.0*GeV);
171 EmModel(3)->SetHighEnergyLimit(MaxKinEnergy());
172 AddEmModel(3, EmModel(3), FluctModel());
173
174 ratio = electron_mass_c2/mass;
175 isInitialised = true;
176 }
177}
178
179//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
180
181void G4MuIonisation::PrintInfo()
182{}
183
184//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
185
186
187
188
Note: See TracBrowser for help on using the repository browser.