source: trunk/source/processes/electromagnetic/lowenergy/include/G4LowEnergyIonisation.hh@ 1201

Last change on this file since 1201 was 1196, checked in by garnier, 16 years ago

update CVS release candidate geant4.9.3.01

File size: 4.6 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// -------------------------------------------------------------------
27// $Id: G4LowEnergyIonisation.hh,v 1.41 2006/06/29 19:36:01 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30// Author: A. Forti
31//
32// History:
33// -----------
34// 02 Mar 1999 A. Forti 1st implementation
35// 27 Sep 2001 V. Ivanchenko Major revision according to a design iteration
36// 10 Oct 2001 M.G. Pia Revision to improve code quality and
37// consistency with design
38// 18 Oct 2001 M.G. Pia Revision to improve code quality and
39// consistency with design
40// 29 Nov 2001 V.Ivanchenko New parametrisation of EEDL data
41// 31 May 2002 V.Ivanchenko Add Auger flag
42// 06 Feb 2003 V.Ivanchenko Change signature of deexcitation for cut per region
43//
44// -------------------------------------------------------------------
45
46// Class description:
47// Low Energy electromagnetic process, electron Ionisation
48// based on the data of the EEDL database. Details are described
49// in the Physics Reference Manual.
50// Further documentation available from http://www.ge.infn.it/geant4/lowE
51
52// --------------------------------------------------------------
53
54#ifndef G4LOWENERGYIONISATION_HH
55#define G4LOWENERGYIONISATION_HH 1
56
57#include "G4eLowEnergyLoss.hh"
58#include "G4AtomicDeexcitation.hh"
59
60class G4Track;
61class G4Step;
62class G4ParticleDefinition;
63class G4VParticleChange;
64class G4VDataSetAlgorithm;
65class G4ParticleChange;
66class G4VEnergySpectrum;
67class G4VCrossSectionHandler;
68class G4ShellVacancy;
69class G4VEMDataSet;
70
71class G4LowEnergyIonisation : public G4eLowEnergyLoss
72{
73public:
74
75 G4LowEnergyIonisation(const G4String& processName = "LowEnergyIoni");
76
77 ~G4LowEnergyIonisation();
78
79 G4bool IsApplicable(const G4ParticleDefinition&);
80
81 void PrintInfoDefinition();
82
83 void BuildPhysicsTable(const G4ParticleDefinition& ParticleType);
84
85 G4VParticleChange* PostStepDoIt(const G4Track& track,
86 const G4Step& step);
87
88 void SetCutForLowEnSecPhotons(G4double cut);
89
90 void SetCutForLowEnSecElectrons(G4double cut);
91
92 void ActivateAuger(G4bool val);
93
94protected:
95
96 G4double GetMeanFreePath(const G4Track& track,
97 G4double previousStepSize,
98 G4ForceCondition* condition );
99
100protected:
101
102 virtual std::vector<G4DynamicParticle*>* DeexciteAtom(const G4MaterialCutsCouple* couple,
103 G4double incidentEnergy,
104 G4double eLoss);
105
106private:
107
108 // Hide copy constructor and assignment operator as private
109 G4LowEnergyIonisation(const G4LowEnergyIonisation& );
110 G4LowEnergyIonisation& operator = (const G4LowEnergyIonisation& right);
111
112 void BuildLossTable(const G4ParticleDefinition& ParticleType);
113
114 G4VCrossSectionHandler* crossSectionHandler;
115 G4VEMDataSet* theMeanFreePath;
116 G4VEnergySpectrum* energySpectrum;
117
118 // Lower limit for generation of gamma in this model
119 G4DataVector cutForDelta;
120 G4double cutForPhotons;
121 G4double cutForElectrons;
122 G4AtomicDeexcitation deexcitationManager;
123 G4ShellVacancy* shellVacancy;
124
125};
126
127#endif
128
129
130
131
132
133
134
135
136
137
138
Note: See TracBrowser for help on using the repository browser.