ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4LowEnergyIonisation.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4LowEnergyIonisation.hh
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 //
28 // Author: A. Forti
29 //
30 // History:
31 // -----------
32 // 02 Mar 1999 A. Forti 1st implementation
33 // 27 Sep 2001 V. Ivanchenko Major revision according to a design iteration
34 // 10 Oct 2001 M.G. Pia Revision to improve code quality and
35 // consistency with design
36 // 18 Oct 2001 M.G. Pia Revision to improve code quality and
37 // consistency with design
38 // 29 Nov 2001 V.Ivanchenko New parametrisation of EEDL data
39 // 31 May 2002 V.Ivanchenko Add Auger flag
40 // 06 Feb 2003 V.Ivanchenko Change signature of deexcitation for cut per region
41 //
42 // -------------------------------------------------------------------
43 
44 // Class description:
45 // Low Energy electromagnetic process, electron Ionisation
46 // based on the data of the EEDL database. Details are described
47 // in the Physics Reference Manual.
48 // Further documentation available from http://www.ge.infn.it/geant4/lowE
49 
50 // --------------------------------------------------------------
51 
52 #ifndef G4RDLOWENERGYIONISATION_HH
53 #define G4RDLOWENERGYIONISATION_HH 1
54 
55 #include "G4eLowEnergyLoss.hh"
57 
58 class G4Track;
59 class G4Step;
61 class G4VParticleChange;
63 class G4ParticleChange;
66 class G4RDShellVacancy;
67 class G4RDVEMDataSet;
68 
70 {
71 public:
72 
73  G4LowEnergyIonisation(const G4String& processName = "LowEnergyIoni");
74 
76 
78 
79  void PrintInfoDefinition();
80 
82 
84  const G4Step& step);
85 
87 
89 
90  void ActivateAuger(G4bool val);
91 
92 protected:
93 
94  G4double GetMeanFreePath(const G4Track& track,
95  G4double previousStepSize,
97 
98 protected:
99 
100  virtual std::vector<G4DynamicParticle*>* DeexciteAtom(const G4MaterialCutsCouple* couple,
101  G4double incidentEnergy,
102  G4double eLoss);
103 
104 private:
105 
106  // Hide copy constructor and assignment operator as private
109 
110  void BuildLossTable(const G4ParticleDefinition& ParticleType);
111 
115 
116  // Lower limit for generation of gamma in this model
122 
123 };
124 
125 #endif
126 
127 
128 
129 
130 
131 
132 
133 
134 
135 
136