ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4ePolarizedIonisation.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4ePolarizedIonisation.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
// GEANT4 Class header file
29
//
30
//
31
// File name: G4ePolarizedIonisation
32
//
33
// Author: A.Schaelicke on base of Vladimir Ivanchenko code
34
//
35
// Creation date: 10.11.2005
36
//
37
// Modifications:
38
//
39
// 10-11-05, include polarization description (A.Schaelicke)
40
// , create asymmetry table and determine interactionlength
41
// , update polarized differential cross section
42
//
43
// 20-08-06, modified interface (A.Schaelicke)
44
// 11-06-07, add PostStepGetPhysicalInteractionLength (A.Schalicke)
45
//
46
// Class Description:
47
//
48
// polarized version of G4eIonisation
49
// ----------------------------------------------------------------------------
50
// -------------------------------------------------------------------
51
//
52
53
#ifndef G4ePolarizedIonisation_h
54
#define G4ePolarizedIonisation_h 1
55
56
#include "
G4VEnergyLossProcess.hh
"
57
#include "
G4Electron.hh
"
58
#include "
G4Positron.hh
"
59
60
class
G4Material
;
61
class
G4ParticleDefinition
;
62
class
G4VEmFluctuationModel
;
63
class
G4PolarizedMollerBhabhaModel
;
64
65
class
G4ePolarizedIonisation
:
public
G4VEnergyLossProcess
66
{
67
68
public
:
69
70
explicit
G4ePolarizedIonisation
(
const
G4String
&
name
=
"pol-eIoni"
);
71
72
virtual
~G4ePolarizedIonisation
();
73
74
virtual
G4bool
IsApplicable
(
const
G4ParticleDefinition
&
p
)
override
;
75
76
// Print out of the class parameters
77
virtual
void
PrintInfo
()
override
;
78
79
protected
:
80
81
virtual
void
InitialiseEnergyLossProcess
(
const
G4ParticleDefinition
*,
82
const
G4ParticleDefinition
*)
override
;
83
84
virtual
G4double
MinPrimaryEnergy
(
const
G4ParticleDefinition
*,
85
const
G4Material
*,
G4double
cut)
override
;
86
87
// for polarization
88
virtual
G4double
PostStepGetPhysicalInteractionLength
(
89
const
G4Track
&
track
,
90
G4double
previousStepSize,
91
G4ForceCondition
*
condition
)
override
;
92
93
virtual
G4double
GetMeanFreePath
(
const
G4Track
& track,
94
G4double
previousStepSize,
95
G4ForceCondition
* condition)
override
;
96
97
virtual
void
BuildPhysicsTable
(
const
G4ParticleDefinition
&)
override
;
98
99
private
:
100
101
void
CleanTables
();
102
103
void
BuildAsymmetryTables
(
const
G4ParticleDefinition
&
part
);
104
105
G4double
ComputeAsymmetry
(
G4double
energy
,
106
const
G4MaterialCutsCouple
* couple,
107
const
G4ParticleDefinition
&
particle
,
108
G4double
cut,
109
G4double
&tasm);
110
111
G4double
ComputeSaturationFactor
(
const
G4Track
& aTrack);
112
113
G4ePolarizedIonisation
&
114
operator=
(
const
G4ePolarizedIonisation
&
right
) =
delete
;
115
G4ePolarizedIonisation
(
const
G4ePolarizedIonisation
&) =
delete
;
116
117
G4ParticleDefinition
*
theElectron
;
118
G4VEmFluctuationModel
*
flucModel
;
119
G4PolarizedMollerBhabhaModel
*
emModel
;
120
121
G4bool
isElectron
;
122
G4bool
isInitialised
;
123
124
// for polarization:
125
G4ThreeVector
theTargetPolarization
;
126
127
G4PhysicsTable
*
theAsymmetryTable
;
128
G4PhysicsTable
*
theTransverseAsymmetryTable
;
129
};
130
131
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
132
133
#endif
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
polarisation
include
G4ePolarizedIonisation.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:33
using
1.8.2 with
ECCE GitHub integration