Geant4
10.00.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
G4eSingleCoulombScatteringModel.hh
Go to the documentation of this file.
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
// G4eSingleCoulombScatteringModel.hh
27
// -------------------------------------------------------------------
28
//
29
// GEANT4 Class header file
30
//
31
// File name: G4eSingleCoulombScatteringModel
32
//
33
// Author: Cristina Consolandi
34
//
35
// Creation date: 20.10.2011
36
//
37
// Class Description:
38
// Single Scattering model for electron-nuclei interaction.
39
// Suitable for high energy electrons and low scattering angles.
40
//
41
// Reference:
42
// M.J. Boschini et al.
43
// "Non Ionizing Energy Loss induced by Electrons in the Space Environment"
44
// Proc. of the 13th International Conference on Particle Physics and Advanced Technology
45
// (13th ICPPAT, Como 3-7/10/2011), World Scientific (Singapore).
46
// Available at: http://arxiv.org/abs/1111.4042v4
47
//
48
//
49
// -------------------------------------------------------------------
50
//
51
52
#ifndef G4eSingleCoulombScatteringModel_h
53
#define G4eSingleCoulombScatteringModel_h 1
54
55
#include "
G4VEmModel.hh
"
56
#include "
globals.hh
"
57
#include "
G4ScreeningMottCrossSection.hh
"
58
59
#include <vector>
60
using namespace
std
;
61
62
class
G4ParticleChangeForGamma
;
63
class
G4ParticleDefinition
;
64
class
G4IonTable
;
65
class
G4Nistmanager;
66
67
class
G4eSingleCoulombScatteringModel
:
public
G4VEmModel
68
{
69
70
public
:
71
72
G4eSingleCoulombScatteringModel
(
const
G4String
& nam =
"eSingleCoulombScattering"
);
73
74
virtual
~
G4eSingleCoulombScatteringModel
();
75
76
virtual
void
Initialise(
const
G4ParticleDefinition
*,
const
G4DataVector
&);
77
78
virtual
G4double
ComputeCrossSectionPerAtom
(
79
const
G4ParticleDefinition
*,
80
G4double
kinEnergy,
81
G4double
Z,
82
G4double
A
,
83
G4double
cut,
84
G4double
emax);
85
86
virtual
void
SampleSecondaries(std::vector<G4DynamicParticle*>*,
87
const
G4MaterialCutsCouple
*,
88
const
G4DynamicParticle
*,
89
G4double
tmin,
90
G4double
maxEnergy);
91
92
inline
void
SetRecoilThreshold(
G4double
eth);
93
94
protected
:
95
96
inline
void
DefineMaterial(
const
G4MaterialCutsCouple
*);
97
inline
void
SetupParticle(
const
G4ParticleDefinition
*);
98
99
private
:
100
101
// hide assignment operator
102
G4eSingleCoulombScatteringModel
& operator=(
const
G4eSingleCoulombScatteringModel
&
right
);
103
G4eSingleCoulombScatteringModel
(
const
G4eSingleCoulombScatteringModel
&);
104
105
G4IonTable
*
theIonTable
;
106
G4ParticleChangeForGamma
*
fParticleChange
;
107
G4NistManager
*
fNistManager
;
108
G4ScreeningMottCrossSection
*
Mottcross
;
109
110
const
std::vector<G4double>*
pCuts
;
111
const
G4MaterialCutsCouple
*
currentCouple
;
112
const
G4Material
*
currentMaterial
;
113
const
G4Element
*
currentElement
;
114
G4int
currentMaterialIndex
;
115
116
117
G4double
cosThetaMin
;
118
G4double
recoilThreshold
;
119
120
121
// projectile
122
const
G4ParticleDefinition
*
particle
;
123
G4double
mass
;
124
G4double
lowEnergyLimit
;
125
126
127
private
:
128
129
G4bool
isInitialised
;
130
131
};
132
133
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
134
135
inline
136
void
G4eSingleCoulombScatteringModel::DefineMaterial
(
const
G4MaterialCutsCouple
* cup)
137
{
138
if
(cup != currentCouple) {
139
currentCouple = cup;
140
currentMaterial = cup->
GetMaterial
();
141
currentMaterialIndex = currentCouple->
GetIndex
();
142
143
}
144
}
145
146
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
147
148
inline
149
void
G4eSingleCoulombScatteringModel::SetupParticle
(
const
G4ParticleDefinition
* p)
150
{
151
if
(p != particle) {
152
particle = p;
153
mass = particle->
GetPDGMass
();
154
Mottcross->SetupParticle(p);
155
}
156
}
157
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
158
159
inline
void
G4eSingleCoulombScatteringModel::SetRecoilThreshold
(
G4double
eth)
160
{
161
recoilThreshold = eth;
162
}
163
164
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
165
166
#endif
G4IonTable
Definition:
G4IonTable.hh:67
G4VEmModel
Definition:
G4VEmModel.hh:103
G4eSingleCoulombScatteringModel::cosThetaMin
G4double cosThetaMin
Definition:
G4eSingleCoulombScatteringModel.hh:117
G4eSingleCoulombScatteringModel::SetRecoilThreshold
void SetRecoilThreshold(G4double eth)
Definition:
G4eSingleCoulombScatteringModel.hh:159
G4ScreeningMottCrossSection.hh
right
Definition:
F04UserTrackInformation.hh:37
G4Material::GetIndex
size_t GetIndex() const
Definition:
G4Material.hh:260
G4eSingleCoulombScatteringModel::fNistManager
G4NistManager * fNistManager
Definition:
G4eSingleCoulombScatteringModel.hh:107
G4eSingleCoulombScatteringModel::currentElement
const G4Element * currentElement
Definition:
G4eSingleCoulombScatteringModel.hh:113
G4Material
Definition:
G4Material.hh:118
G4DynamicParticle
Definition:
G4DynamicParticle.hh:73
G4Element
Definition:
G4Element.hh:97
G4eSingleCoulombScatteringModel::isInitialised
G4bool isInitialised
Definition:
G4eSingleCoulombScatteringModel.hh:129
G4ParticleChangeForGamma
Definition:
G4ParticleChangeForGamma.hh:58
G4VEmModel.hh
G4eSingleCoulombScatteringModel::mass
G4double mass
Definition:
G4eSingleCoulombScatteringModel.hh:123
std
G4eSingleCoulombScatteringModel::currentMaterial
const G4Material * currentMaterial
Definition:
G4eSingleCoulombScatteringModel.hh:112
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:111
G4eSingleCoulombScatteringModel::lowEnergyLimit
G4double lowEnergyLimit
Definition:
G4eSingleCoulombScatteringModel.hh:124
G4eSingleCoulombScatteringModel::currentMaterialIndex
G4int currentMaterialIndex
Definition:
G4eSingleCoulombScatteringModel.hh:114
G4int
int G4int
Definition:
G4Types.hh:78
G4DataVector
Definition:
G4DataVector.hh:50
G4MaterialCutsCouple
Definition:
G4MaterialCutsCouple.hh:50
G4eSingleCoulombScatteringModel::pCuts
const std::vector< G4double > * pCuts
Definition:
G4eSingleCoulombScatteringModel.hh:110
G4NistManager
Definition:
G4NistManager.hh:82
G4eSingleCoulombScatteringModel::currentCouple
const G4MaterialCutsCouple * currentCouple
Definition:
G4eSingleCoulombScatteringModel.hh:111
G4bool
bool G4bool
Definition:
G4Types.hh:79
G4ScreeningMottCrossSection
Definition:
G4ScreeningMottCrossSection.hh:86
G4eSingleCoulombScatteringModel
Definition:
G4eSingleCoulombScatteringModel.hh:67
G4eSingleCoulombScatteringModel::recoilThreshold
G4double recoilThreshold
Definition:
G4eSingleCoulombScatteringModel.hh:118
G4eSingleCoulombScatteringModel::Mottcross
G4ScreeningMottCrossSection * Mottcross
Definition:
G4eSingleCoulombScatteringModel.hh:108
A
static const G4double A[nN]
Definition:
G4ElectroNuclearCrossSection.cc:115
globals.hh
G4eSingleCoulombScatteringModel::DefineMaterial
void DefineMaterial(const G4MaterialCutsCouple *)
Definition:
G4eSingleCoulombScatteringModel.hh:136
pyG4EmCalculator::ComputeCrossSectionPerAtom
ComputeCrossSectionPerAtom
Definition:
pyG4EmCalculator.cc:180
G4eSingleCoulombScatteringModel::fParticleChange
G4ParticleChangeForGamma * fParticleChange
Definition:
G4eSingleCoulombScatteringModel.hh:106
G4eSingleCoulombScatteringModel::SetupParticle
void SetupParticle(const G4ParticleDefinition *)
Definition:
G4eSingleCoulombScatteringModel.hh:149
G4ParticleDefinition::GetPDGMass
G4double GetPDGMass() const
Definition:
G4ParticleDefinition.hh:161
G4eSingleCoulombScatteringModel::particle
const G4ParticleDefinition * particle
Definition:
G4eSingleCoulombScatteringModel.hh:122
G4double
double G4double
Definition:
G4Types.hh:76
G4eSingleCoulombScatteringModel::theIonTable
G4IonTable * theIonTable
Definition:
G4eSingleCoulombScatteringModel.hh:105
G4MaterialCutsCouple::GetMaterial
const G4Material * GetMaterial() const
Definition:
G4MaterialCutsCouple.hh:150
G4String
Definition:
G4String.hh:45
geant4.10.00.p02
source
processes
electromagnetic
standard
include
G4eSingleCoulombScatteringModel.hh
Generated on Thu Dec 31 2015 10:40:40 for Geant4 by
1.8.8