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
G4EmExtraParameters.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4EmExtraParameters.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
// File name: G4EmExtraParameters
31
//
32
// Author: Vladimir Ivanchenko
33
//
34
// Creation date: 06.05.2019
35
//
36
// Class Description:
37
//
38
// An internal utility class, responsable for keeping parameters
39
// for EM processes and models.
40
//
41
// It is initialized by the master thread but can be updated
42
// at any moment via G4EmParameters interface. It is not assumed
43
// to be used for a direct initialisation
44
//
45
// -------------------------------------------------------------------
46
//
47
48
#ifndef G4EmExtraParameters_h
49
#define G4EmExtraParameters_h 1
50
51
#include "
globals.hh
"
52
#include "
G4ios.hh
"
53
#include "
G4ThreeVector.hh
"
54
#include <vector>
55
56
class
G4EmExtraParametersMessenger
;
57
class
G4VEnergyLossProcess
;
58
class
G4VEmProcess
;
59
class
G4VAtomDeexcitation
;
60
61
class
G4EmExtraParameters
62
{
63
public
:
64
65
explicit
G4EmExtraParameters
();
66
67
~G4EmExtraParameters
();
68
69
void
Initialise
();
70
71
G4bool
GetDirectionalSplitting
();
72
void
SetDirectionalSplitting
(
G4bool
v
);
73
74
G4bool
QuantumEntanglement
();
75
void
SetQuantumEntanglement
(
G4bool
v);
76
77
void
SetDirectionalSplittingRadius
(
G4double
r
);
78
G4double
GetDirectionalSplittingRadius
();
79
80
void
SetDirectionalSplittingTarget
(
const
G4ThreeVector
& v);
81
G4ThreeVector
GetDirectionalSplittingTarget
()
const
;
82
83
void
SetStepFunction
(
G4double
v1
,
G4double
v2
);
84
G4double
GetStepFunctionP1
()
const
;
85
G4double
GetStepFunctionP2
()
const
;
86
87
void
SetStepFunctionMuHad
(
G4double
v1,
G4double
v2);
88
G4double
GetStepFunctionMuHadP1
()
const
;
89
G4double
GetStepFunctionMuHadP2
()
const
;
90
91
// parameters per region or per process
92
void
AddPAIModel
(
const
G4String
&
particle
,
93
const
G4String
& region,
94
const
G4String
& type);
95
const
std::vector<G4String>&
ParticlesPAI
()
const
;
96
const
std::vector<G4String>&
RegionsPAI
()
const
;
97
const
std::vector<G4String>&
TypesPAI
()
const
;
98
99
void
AddPhysics
(
const
G4String
& region,
const
G4String
& type);
100
const
std::vector<G4String>&
RegionsPhysics
()
const
;
101
const
std::vector<G4String>&
TypesPhysics
()
const
;
102
103
void
SetSubCutoff
(
G4bool
val,
const
G4String
& region =
""
);
104
105
void
SetProcessBiasingFactor
(
const
G4String
& procname,
106
G4double
val,
G4bool
wflag);
107
108
void
ActivateForcedInteraction
(
const
G4String
& procname,
109
const
G4String
& region,
110
G4double
length
,
111
G4bool
wflag);
112
113
void
ActivateSecondaryBiasing
(
const
G4String
&
name
,
114
const
G4String
& region,
115
G4double
factor,
116
G4double
energyLimit);
117
118
// initialisation methods
119
void
DefineRegParamForLoss
(
G4VEnergyLossProcess
*,
120
G4bool
isElectron
)
const
;
121
void
DefineRegParamForEM
(
G4VEmProcess
*)
const
;
122
123
G4EmExtraParameters
(
G4EmExtraParameters
&) =
delete
;
124
G4EmExtraParameters
&
operator
=
125
(
const
G4EmExtraParameters
&
right
) =
delete
;
126
127
private
:
128
129
G4String
CheckRegion
(
const
G4String
&)
const
;
130
131
void
PrintWarning
(
G4ExceptionDescription
& ed)
const
;
132
133
G4EmExtraParametersMessenger
*
theMessenger
;
134
135
G4bool
directionalSplitting
;
136
G4bool
quantumEntanglement
;
137
138
G4double
dRoverRange
;
139
G4double
finalRange
;
140
G4double
dRoverRangeMuHad
;
141
G4double
finalRangeMuHad
;
142
143
G4double
directionalSplittingRadius
;
144
G4ThreeVector
directionalSplittingTarget
;
145
146
std::vector<G4String>
m_particlesPAI
;
147
std::vector<G4String>
m_regnamesPAI
;
148
std::vector<G4String>
m_typesPAI
;
149
150
std::vector<G4String>
m_regnamesPhys
;
151
std::vector<G4String>
m_typesPhys
;
152
153
std::vector<G4String>
m_regnamesSubCut
;
154
std::vector<G4bool>
m_subCuts
;
155
156
std::vector<G4String>
m_procBiasedXS
;
157
std::vector<G4double>
m_factBiasedXS
;
158
std::vector<G4bool>
m_weightBiasedXS
;
159
160
std::vector<G4String>
m_procForced
;
161
std::vector<G4String>
m_regnamesForced
;
162
std::vector<G4double>
m_lengthForced
;
163
std::vector<G4bool>
m_weightForced
;
164
165
std::vector<G4String>
m_procBiasedSec
;
166
std::vector<G4String>
m_regnamesBiasedSec
;
167
std::vector<G4double>
m_factBiasedSec
;
168
std::vector<G4double>
m_elimBiasedSec
;
169
};
170
171
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
172
173
#endif
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
utils
include
G4EmExtraParameters.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:35
using
1.8.2 with
ECCE GitHub integration