Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ePolarizedIonisation.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// -------------------------------------------------------------------
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
57#include "G4Electron.hh"
58#include "G4Positron.hh"
59
60class G4Material;
64
66{
67
68public:
69
70 explicit G4ePolarizedIonisation(const G4String& name = "pol-eIoni");
71
73
74 virtual G4bool IsApplicable(const G4ParticleDefinition& p) override;
75
76 // Print out of the class parameters
77 virtual void PrintInfo() override;
78
79protected:
80
82 const G4ParticleDefinition*) override;
83
85 const G4Material*, G4double cut) override;
86
87 // for polarization
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
99private:
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
114 operator=(const G4ePolarizedIonisation &right) = delete;
116
117 G4ParticleDefinition* theElectron;
118 G4VEmFluctuationModel* flucModel;
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
G4double condition(const G4ErrorSymMatrix &m)
G4ForceCondition
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
virtual void PrintInfo() override
virtual G4double MinPrimaryEnergy(const G4ParticleDefinition *, const G4Material *, G4double cut) override
virtual G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
virtual G4double GetMeanFreePath(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
virtual G4bool IsApplicable(const G4ParticleDefinition &p) override
virtual void BuildPhysicsTable(const G4ParticleDefinition &) override
virtual void InitialiseEnergyLossProcess(const G4ParticleDefinition *, const G4ParticleDefinition *) override