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
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
tree
geant4-10.6-release
config
environments
examples
source
analysis
digits_hits
error_propagation
event
externals
g3tog4
geometry
global
graphics_reps
intercoms
interfaces
materials
parameterisations
particles
persistency
physics_lists
processes
biasing
cuts
decay
electromagnetic
adjoint
dna
highenergy
lowenergy
muons
pii
polarisation
standard
utils
include
G4AngleDirect.hh
G4AtomicShell.hh
G4AtomicShellEnumerator.hh
G4DNAModelSubType.hh
G4DummyModel.hh
G4ElectronIonPair.hh
G4EmBiasingManager.hh
G4EmCalculator.hh
G4EmConfigurator.hh
G4EmCorrections.hh
G4EmDataHandler.hh
G4EmElementSelector.hh
G4EmExtraParameters.hh
G4EmExtraParametersMessenger.hh
G4EmLowEParameters.hh
G4EmLowEParametersMessenger.hh
G4EmModelManager.hh
G4EmMultiModel.hh
G4EmParameters.hh
G4EmParametersMessenger.hh
G4EmProcessOptions.hh
G4EmProcessSubType.hh
G4EmSaturation.hh
G4EmTableType.hh
G4EnergyLossTables.hh
G4ionEffectiveCharge.hh
G4LossTableBuilder.hh
G4LossTableManager.hh
G4MscStepLimitType.hh
G4NIELCalculator.hh
G4NuclearFormfactorType.hh
G4VAtomDeexcitation.hh
G4VEmAngularDistribution.hh
G4VEmFluctuationModel.hh
G4VEmModel.hh
G4VEmProcess.hh
G4VEnergyLossProcess.hh
G4VMscModel.hh
G4VMultipleScattering.hh
G4VSubCutProducer.hh
src
xrays
hadronic
management
optical
parameterisation
scoring
solidstate
transportation
readout
run
track
tracking
visualization
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4VEmAngularDistribution.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4VEmAngularDistribution.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
//
29
// GEANT4 Class header file
30
//
31
// File name: G4VEmAngularDistribution
32
//
33
// Author: V. Ivanchenko using design of existing
34
// interface G4VBremAngularDistribution
35
//
36
// Creation date: 13 October 2010
37
//
38
// Modifications:
39
//
40
// Class Description:
41
//
42
// Abstract base class for polar angle sampling
43
//
44
// Class Description: End
45
46
// -------------------------------------------------------------------
47
//
48
49
#ifndef G4VEmAngularDistribution_h
50
#define G4VEmAngularDistribution_h 1
51
52
#include "
globals.hh
"
53
#include "
Randomize.hh
"
54
#include "
G4ThreeVector.hh
"
55
#include "
G4DynamicParticle.hh
"
56
57
class
G4Material
;
58
59
class
G4VEmAngularDistribution
60
{
61
public
:
62
63
explicit
G4VEmAngularDistribution
(
const
G4String
&
name
);
64
65
virtual
~G4VEmAngularDistribution
();
66
67
// Sample direction in global coordinate system,
68
// this means for zero scattering angle this direction is the same
69
// as the direction of primary
70
virtual
G4ThreeVector
&
SampleDirection
(
const
G4DynamicParticle
* dp,
71
G4double
finalTotalEnergy,
72
G4int
Z
,
73
const
G4Material
*) = 0;
74
75
// Sample direction in global coordinate system for given electronic shell,
76
// this means for zero scattering angle this direction is the same
77
// as the direction of primary
78
virtual
G4ThreeVector
&
SampleDirectionForShell
(
79
const
G4DynamicParticle
* dp,
80
G4double
finalTotalEnergy,
81
G4int
Z,
82
G4int
shellID,
83
const
G4Material
*);
84
85
virtual
void
SamplePairDirections
(
const
G4DynamicParticle
* dp,
86
G4double
elecKinEnergy,
87
G4double
posiKinEnergy,
88
G4ThreeVector
& dirElectron,
89
G4ThreeVector
& dirPositron,
90
G4int
Z = 0,
91
const
G4Material
*
mat
=
nullptr
);
92
93
inline
const
G4String
&
GetName
()
const
;
94
95
protected
:
96
97
G4ThreeVector
fLocalDirection
;
98
99
private
:
100
101
// hide assignment operator
102
G4VEmAngularDistribution
&
103
operator=
(
const
G4VEmAngularDistribution
&
right
) =
delete
;
104
G4VEmAngularDistribution
(
const
G4VEmAngularDistribution
&) =
delete
;
105
106
G4String
fName
;
107
};
108
109
inline
const
G4String
&
G4VEmAngularDistribution::GetName
()
const
110
{
111
return
fName
;
112
}
113
114
#endif
115
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
utils
include
G4VEmAngularDistribution.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:35
using
1.8.2 with
ECCE GitHub integration