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

Last change on this file since 1007 was 1007, checked in by garnier, 17 years ago

update to geant4.9.2

File size: 6.1 KB
RevLine 
[819]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//
[1007]26// $Id: G4MuIonisation.cc,v 1.57 2008/10/27 10:55:07 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-02 $
[819]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 "G4BohrFluctuations.hh"
89#include "G4UnitsTable.hh"
90
91//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
92
93using namespace std;
94
95G4MuIonisation::G4MuIonisation(const G4String& name)
96 : G4VEnergyLossProcess(name),
97 theParticle(0),
98 theBaseParticle(0),
99 isInitialised(false)
100{
[961]101 // SetStepFunction(0.2, 1*mm);
102 //SetIntegral(true);
103 //SetVerboseLevel(1);
104 SetProcessSubType(fIonisation);
[819]105}
106
107//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
108
109G4MuIonisation::~G4MuIonisation()
110{}
111
112//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
113
114void G4MuIonisation::InitialiseEnergyLossProcess(const G4ParticleDefinition* part,
115 const G4ParticleDefinition* bpart)
116{
117 if(!isInitialised) {
118
119 theParticle = part;
120 theBaseParticle = bpart;
121
122 mass = theParticle->GetPDGMass();
123 SetSecondaryParticle(G4Electron::Electron());
124
[1007]125 flucModel = new G4UniversalFluctuation();
[819]126
[1007]127 G4VEmModel* em = new G4BraggModel();
128 em->SetLowEnergyLimit(MinKinEnergy());
129 em->SetHighEnergyLimit(0.2*MeV);
130 AddEmModel(1, em, flucModel);
131 G4VEmModel* em1 = new G4BetheBlochModel();
132 em1->SetLowEnergyLimit(0.2*MeV);
133 em1->SetHighEnergyLimit(1.0*GeV);
134 AddEmModel(2, em1, flucModel);
135 G4VEmModel* em2 = new G4MuBetheBlochModel();
136 em2->SetLowEnergyLimit(1.0*GeV);
137 em2->SetHighEnergyLimit(MaxKinEnergy());
138 AddEmModel(3, em2, flucModel);
[819]139
140 ratio = electron_mass_c2/mass;
141 isInitialised = true;
142 }
143}
144
145//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
146
147void G4MuIonisation::PrintInfo()
[961]148{}
[819]149
150//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
151
152
153
154
Note: See TracBrowser for help on using the repository browser.