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

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

update processes

File size: 7.0 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.59 2009/02/26 11:04:20 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-02-ref-02 $
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
92//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
93
94using namespace std;
95
96G4MuIonisation::G4MuIonisation(const G4String& name)
97  : G4VEnergyLossProcess(name),
98    theParticle(0),
99    theBaseParticle(0),
100    isInitialised(false)
101{
102  //  SetStepFunction(0.2, 1*mm);
103  //SetIntegral(true);
104  //SetVerboseLevel(1);
105  SetProcessSubType(fIonisation);
106}
107
108//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
109
110G4MuIonisation::~G4MuIonisation()
111{}
112
113//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
114
115G4bool G4MuIonisation::IsApplicable(const G4ParticleDefinition& p)
116{
117  return (p.GetPDGCharge() != 0.0 && p.GetPDGMass() > 10.0*MeV);
118}
119
120//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
121
122G4double G4MuIonisation::MinPrimaryEnergy(const G4ParticleDefinition*,
123                                          const G4Material*,
124                                          G4double cut)
125{
126  G4double x = 0.5*cut/electron_mass_c2;
127  G4double g = x*ratio + std::sqrt((1. + x)*(1. + x*ratio*ratio));
128  return mass*(g - 1.0);
129}
130
131//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
132
133void G4MuIonisation::InitialiseEnergyLossProcess(const G4ParticleDefinition* part,
134                                                 const G4ParticleDefinition* bpart)
135{
136  if(!isInitialised) {
137
138    theParticle = part;
139    theBaseParticle = bpart;
140
141    mass = theParticle->GetPDGMass();
142    SetSecondaryParticle(G4Electron::Electron());
143
144    // Bragg peak model
145    if (!EmModel(1)) SetEmModel(new G4BraggModel(),1);
146    EmModel(1)->SetLowEnergyLimit(MinKinEnergy());
147    EmModel(1)->SetHighEnergyLimit(0.2*MeV);
148    AddEmModel(1, EmModel(1), new G4IonFluctuations());
149
150    // high energy fluctuation model
151    if (!FluctModel()) SetFluctModel(new G4UniversalFluctuation());
152
153    // moderate energy model
154    if (!EmModel(2)) SetEmModel(new G4BetheBlochModel(),2);
155    EmModel(2)->SetLowEnergyLimit(0.2*MeV);
156    EmModel(2)->SetHighEnergyLimit(1.0*GeV);
157    AddEmModel(2, EmModel(2), FluctModel());
158
159    // high energy model
160    if (!EmModel(3)) SetEmModel(new G4MuBetheBlochModel(),3);
161    EmModel(3)->SetLowEnergyLimit(1.0*GeV);
162    EmModel(3)->SetHighEnergyLimit(MaxKinEnergy());
163    AddEmModel(3, EmModel(3), FluctModel());
164
165    ratio = electron_mass_c2/mass;
166    isInitialised = true;
167  }
168}
169
170//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
171
172void G4MuIonisation::PrintInfo()
173{}
174
175//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
176
177
178
179
Note: See TracBrowser for help on using the repository browser.