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
G4GammaConversionToMuons.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4GammaConversionToMuons.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
// ------------ G4GammaConversionToMuons physics process ------
28
// by H.Burkhardt, S. Kelner and R. Kokoulin, April 2002
29
// -----------------------------------------------------------------------------
30
//
31
// 05-08-04: suppression of .icc file (mma)
32
// 13-08-04, public ComputeCrossSectionPerAtom() and ComputeMeanFreePath() (mma)
33
//
34
// class description
35
//
36
// gamma ---> mu+ mu-
37
// inherit from G4VDiscreteProcess
38
//
39
40
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41
42
#ifndef G4GammaConversionToMuons_h
43
#define G4GammaConversionToMuons_h 1
44
45
#include "
G4ios.hh
"
46
#include "
globals.hh
"
47
#include "
Randomize.hh
"
48
#include "
G4VDiscreteProcess.hh
"
49
#include "
G4PhysicsTable.hh
"
50
#include "
G4PhysicsLogVector.hh
"
51
#include "
G4ParticleDefinition.hh
"
52
#include "
G4Element.hh
"
53
#include "
G4Step.hh
"
54
55
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56
57
class
G4LossTableManager
;
58
class
G4BetheHeitler5DModel
;
59
60
class
G4GammaConversionToMuons
:
public
G4VDiscreteProcess
61
{
62
public
:
// with description
63
64
explicit
G4GammaConversionToMuons
(
65
const
G4String
& processName =
"GammaToMuPair"
,
66
G4ProcessType
type =
fElectromagnetic
);
67
68
~G4GammaConversionToMuons
()
override
;
69
70
G4bool
IsApplicable
(
const
G4ParticleDefinition
&)
override
;
71
// true for Gamma only.
72
73
void
BuildPhysicsTable
(
const
G4ParticleDefinition
&)
override
;
74
// here dummy, the total cross section parametrization is used rather
75
// than tables, just calling PrintInfoDefinition
76
77
void
PrintInfoDefinition
();
78
// Print few lines of informations about the process: validity range,
79
// origine ..etc..
80
// Invoked by BuildThePhysicsTable().
81
82
void
SetCrossSecFactor
(
G4double
fac
);
83
// Set the factor to artificially increase the crossSection (default 1)
84
85
inline
G4double
GetCrossSecFactor
()
const
{
return
CrossSecFactor
;}
86
// Get the factor to artificially increase the cross section
87
88
G4double
GetMeanFreePath
(
const
G4Track
& aTrack,
89
G4double
previousStepSize,
90
G4ForceCondition
*
condition
)
override
;
91
// It returns the MeanFreePath of the process for the current track :
92
// (energy, material)
93
// The previousStepSize and G4ForceCondition* are not used.
94
// This function overloads a virtual function of the base class.
95
// It is invoked by the ProcessManager of the Particle.
96
97
G4double
GetCrossSectionPerAtom
(
const
G4DynamicParticle
* aDynamicGamma,
98
const
G4Element
* anElement);
99
// It returns the total CrossSectionPerAtom of the process,
100
// for the current DynamicGamma (energy), in anElement.
101
102
G4VParticleChange
*
PostStepDoIt
(
const
G4Track
& aTrack,
103
const
G4Step
& aStep)
override
;
104
// It computes the final state of the process (at end of step),
105
// returned as a ParticleChange object.
106
// This function overloads a virtual function of the base class.
107
// It is invoked by the ProcessManager of the Particle.
108
109
G4double
ComputeCrossSectionPerAtom
(
G4double
GammaEnergy,
G4int
Z
);
110
111
G4double
ComputeMeanFreePath
(
G4double
GammaEnergy,
112
const
G4Material
* aMaterial);
113
114
private
:
115
116
const
G4Element
*
SelectRandomAtom
(
const
G4DynamicParticle
* aDynamicGamma,
117
const
G4Material
* aMaterial);
118
119
// hide assignment operator as private
120
G4GammaConversionToMuons
&
121
operator=
(
const
G4GammaConversionToMuons
&
right
) =
delete
;
122
G4GammaConversionToMuons
(
const
G4GammaConversionToMuons
& ) =
delete
;
123
124
G4double
Mmuon
;
125
G4double
Rc
;
126
G4double
LimitEnergy
;
// energy limit for accurate x-section
127
G4double
LowestEnergyLimit
;
// low energy limit of the model
128
G4double
HighestEnergyLimit
;
// high energy limit of the model
129
G4double
Energy5DLimit
;
// high energy limit for 5D final state sampling
130
131
G4double
MeanFreePath
;
// actual MeanFreePath (current medium)
132
G4double
CrossSecFactor
;
// factor to artificially increase
133
// the cross section
134
135
G4LossTableManager
*
fManager
;
136
G4BetheHeitler5DModel
*
f5Dmodel
;
137
const
G4ParticleDefinition
*
theGamma
;
138
const
G4ParticleDefinition
*
theMuonPlus
;
139
const
G4ParticleDefinition
*
theMuonMinus
;
140
};
141
142
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
143
144
#endif
145
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
highenergy
include
G4GammaConversionToMuons.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:31
using
1.8.2 with
ECCE GitHub integration