Geant4
10.03
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
G4LowEnergyBremsstrahlung.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
// $Id$
29
// GEANT4 tag $Name: geant4-09-01-ref-00 $
30
//
31
// Author: A. Forti
32
//
33
// History:
34
// -----------
35
// 02 Mar 1999 A. Forti 1st implementation
36
// 27 Sep 2001 V. Ivanchenko Major revision according to a design iteration
37
// 10 Oct 2001 M.G. Pia Revision to improve code quality
38
// and consistency with design
39
// 29 Nov 2001 V.Ivanchenko New parametrisation of EEDL data
40
// 21 Feb 2003 V.Ivanchenko Energy bins for spectrum are defined here
41
// 24 Mar 2003 P.Rodrigues Changes to accommodate new angular generators
42
// 06 Nov 2003 MGP Overloaded SetAngularGenerator
43
//
44
// -------------------------------------------------------------------
45
46
// Class description:
47
// Low Energy electromagnetic process, electron Bremsstrahlung
48
// based on the data of the EEDL database. Details are described
49
// in the Physics Reference Manual.
50
// Further documentation available from http://www.ge.infn.it/geant4/lowE
51
52
// --------------------------------------------------------------
53
54
55
#ifndef G4RDLOWENERGYBREMSSTRAHLUNG_HH
56
#define G4RDLOWENERGYBREMSSTRAHLUNG_HH 1
57
58
#include "
G4eLowEnergyLoss.hh
"
59
#include "
G4DataVector.hh
"
60
61
class
G4Track
;
62
class
G4Step
;
63
class
G4ParticleDefinition
;
64
class
G4VParticleChange
;
65
class
G4RDVEMDataSet
;
66
class
G4RDVEnergySpectrum
;
67
class
G4RDVCrossSectionHandler
;
68
class
G4RDVBremAngularDistribution
;
69
70
class
G4LowEnergyBremsstrahlung
:
public
G4eLowEnergyLoss
71
{
72
public
:
73
74
G4LowEnergyBremsstrahlung
(
const
G4String
& processName =
"LowEnBrem"
);
75
76
77
// G4LowEnergyBremsstrahlung(const G4String& processName = "LowEnBrem",
78
// G4RDVBremAngularDistribution* distribution = 0);
79
80
~G4LowEnergyBremsstrahlung
();
81
82
G4bool
IsApplicable
(
const
G4ParticleDefinition
&);
83
84
void
BuildPhysicsTable
(
const
G4ParticleDefinition
& particleType);
85
86
G4VParticleChange
*
PostStepDoIt
(
const
G4Track
& track,
87
const
G4Step
& step);
88
89
void
SetCutForLowEnSecPhotons
(
G4double
cut);
90
91
void
SetAngularGenerator
(
G4RDVBremAngularDistribution
* distribution);
92
93
void
SetAngularGenerator
(
const
G4String
&
name
);
94
95
void
PrintInfoDefinition
();
96
97
98
protected
:
99
100
G4double
GetMeanFreePath
(
const
G4Track
& track,
101
G4double
previousStepSize,
102
G4ForceCondition
*
condition
);
103
104
private
:
105
106
// Hide copy constructor and assignment operator as private
107
G4LowEnergyBremsstrahlung
(
const
G4LowEnergyBremsstrahlung
& );
108
G4LowEnergyBremsstrahlung
&
operator =
(
const
G4LowEnergyBremsstrahlung
&
right
);
109
110
void
BuildLossTable
(
const
G4ParticleDefinition
&
ParticleType
);
111
112
G4RDVCrossSectionHandler
*
crossSectionHandler
;
113
G4RDVEMDataSet
*
theMeanFreePath
;
114
G4RDVEnergySpectrum
*
energySpectrum
;
115
G4DataVector
energyBins
;
116
G4RDVBremAngularDistribution
*
angularDistribution
;
117
G4RDVBremAngularDistribution
*
TsaiAngularDistribution
;
118
G4String
generatorName
;
119
120
// Lower limit for generation of gamma in this model
121
G4DataVector
cutForSecondaryPhotons
;
122
G4double
cutForPhotons
;
123
};
124
125
126
127
#endif
128
129
130
131
132
133
134
135
136
137
138
condition
G4double condition(const G4ErrorSymMatrix &m)
G4LowEnergyBremsstrahlung
Definition:
G4LowEnergyBremsstrahlung.hh:70
G4LowEnergyBremsstrahlung::operator=
G4LowEnergyBremsstrahlung & operator=(const G4LowEnergyBremsstrahlung &right)
G4RDVEnergySpectrum
Definition:
G4RDVEnergySpectrum.hh:59
right
Definition:
F04UserTrackInformation.hh:37
G4LowEnergyBremsstrahlung::cutForSecondaryPhotons
G4DataVector cutForSecondaryPhotons
Definition:
G4LowEnergyBremsstrahlung.hh:121
G4LowEnergyBremsstrahlung::PrintInfoDefinition
void PrintInfoDefinition()
Definition:
G4LowEnergyBremsstrahlung.cc:369
G4RDVBremAngularDistribution
Definition:
G4RDVBremAngularDistribution.hh:59
G4LowEnergyBremsstrahlung::BuildLossTable
void BuildLossTable(const G4ParticleDefinition &ParticleType)
Definition:
G4LowEnergyBremsstrahlung.cc:222
G4InuclParticleNames::name
const char * name(G4int ptype)
Definition:
G4InuclParticleNames.hh:77
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:72
G4LowEnergyBremsstrahlung::~G4LowEnergyBremsstrahlung
~G4LowEnergyBremsstrahlung()
Definition:
G4LowEnergyBremsstrahlung.cc:116
G4LowEnergyBremsstrahlung::energySpectrum
G4RDVEnergySpectrum * energySpectrum
Definition:
G4LowEnergyBremsstrahlung.hh:114
G4eLowEnergyLoss.hh
G4DataVector
Definition:
G4DataVector.hh:50
G4LowEnergyBremsstrahlung::energyBins
G4DataVector energyBins
Definition:
G4LowEnergyBremsstrahlung.hh:115
G4LowEnergyBremsstrahlung::SetCutForLowEnSecPhotons
void SetCutForLowEnSecPhotons(G4double cut)
Definition:
G4LowEnergyBremsstrahlung.cc:398
G4LowEnergyBremsstrahlung::generatorName
G4String generatorName
Definition:
G4LowEnergyBremsstrahlung.hh:118
G4RDVCrossSectionHandler
Definition:
G4RDVCrossSectionHandler.hh:64
G4bool
bool G4bool
Definition:
G4Types.hh:79
G4eLowEnergyLoss
Definition:
G4eLowEnergyLoss.hh:87
G4LowEnergyBremsstrahlung::TsaiAngularDistribution
G4RDVBremAngularDistribution * TsaiAngularDistribution
Definition:
G4LowEnergyBremsstrahlung.hh:117
G4Step
Definition:
G4Step.hh:76
G4LowEnergyBremsstrahlung::SetAngularGenerator
void SetAngularGenerator(G4RDVBremAngularDistribution *distribution)
Definition:
G4LowEnergyBremsstrahlung.cc:403
G4LowEnergyBremsstrahlung::G4LowEnergyBremsstrahlung
G4LowEnergyBremsstrahlung(const G4String &processName="LowEnBrem")
Definition:
G4LowEnergyBremsstrahlung.cc:85
G4Track
Definition:
G4Track.hh:76
G4LowEnergyBremsstrahlung::crossSectionHandler
G4RDVCrossSectionHandler * crossSectionHandler
Definition:
G4LowEnergyBremsstrahlung.hh:112
G4LowEnergyBremsstrahlung::BuildPhysicsTable
void BuildPhysicsTable(const G4ParticleDefinition &particleType)
Definition:
G4LowEnergyBremsstrahlung.cc:127
G4RDVEMDataSet
Definition:
G4RDVEMDataSet.hh:52
G4LowEnergyBremsstrahlung::theMeanFreePath
G4RDVEMDataSet * theMeanFreePath
Definition:
G4LowEnergyBremsstrahlung.hh:113
G4LowEnergyBremsstrahlung::cutForPhotons
G4double cutForPhotons
Definition:
G4LowEnergyBremsstrahlung.hh:122
G4double
double G4double
Definition:
G4Types.hh:76
G4LowEnergyBremsstrahlung::GetMeanFreePath
G4double GetMeanFreePath(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
Definition:
G4LowEnergyBremsstrahlung.cc:387
G4DataVector.hh
G4ForceCondition
G4ForceCondition
Definition:
G4ForceCondition.hh:49
G4LowEnergyBremsstrahlung::angularDistribution
G4RDVBremAngularDistribution * angularDistribution
Definition:
G4LowEnergyBremsstrahlung.hh:116
G4VParticleChange
Definition:
G4VParticleChange.hh:94
G4LowEnergyBremsstrahlung::PostStepDoIt
G4VParticleChange * PostStepDoIt(const G4Track &track, const G4Step &step)
Definition:
G4LowEnergyBremsstrahlung.cc:302
G4INCL::ParticleType
ParticleType
Definition:
G4INCLParticleType.hh:50
G4LowEnergyBremsstrahlung::IsApplicable
G4bool IsApplicable(const G4ParticleDefinition &)
Definition:
G4LowEnergyBremsstrahlung.cc:381
G4String
Definition:
G4String.hh:45
geant4.10.03
examples
advanced
eRosita
physics
include
G4LowEnergyBremsstrahlung.hh
Generated on Thu Feb 14 2002 02:27:31 for Geant4 by
1.8.8