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

Last change on this file since 846 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 6.3 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.54 2007/05/22 17:35:58 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-01-patch-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 "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{
101  SetStepFunction(0.2, 1*mm);
102  SetIntegral(true);
103  SetVerboseLevel(1);
104}
105
106//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
107
108G4MuIonisation::~G4MuIonisation()
109{}
110
111//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
112
113void G4MuIonisation::InitialiseEnergyLossProcess(const G4ParticleDefinition* part,
114                                                 const G4ParticleDefinition* bpart)
115{
116  if(!isInitialised) {
117
118    theParticle = part;
119    theBaseParticle = bpart;
120
121    mass = theParticle->GetPDGMass();
122    SetSecondaryParticle(G4Electron::Electron());
123
124    flucModel = new G4UniversalFluctuation();
125
126    G4VEmModel* em = new G4BraggModel();
127    em->SetLowEnergyLimit(0.1*keV);
128    em->SetHighEnergyLimit(0.2*MeV);
129    AddEmModel(1, em, flucModel);
130    G4VEmModel* em1 = new G4BetheBlochModel();
131    em1->SetLowEnergyLimit(0.2*MeV);
132    em1->SetHighEnergyLimit(1.0*GeV);
133    AddEmModel(2, em1, flucModel);
134    G4VEmModel* em2 = new G4MuBetheBlochModel();
135    em2->SetLowEnergyLimit(1.0*GeV);
136    em2->SetHighEnergyLimit(100.0*TeV);
137    AddEmModel(3, em2, flucModel);
138
139    ratio = electron_mass_c2/mass;
140    isInitialised = true;
141  }
142}
143
144//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
145
146void G4MuIonisation::PrintInfo()
147{
148  G4cout << "      Bether-Bloch model for E > 0.2 MeV, "
149         << "parametrisation of Bragg peak below, "
150         << G4endl;
151  G4cout << "      radiative corrections for E > 1 GeV" << G4endl;
152}
153
154//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
155
156
157
158
Note: See TracBrowser for help on using the repository browser.