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
G4AdjointBremsstrahlungModel.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4AdjointBremsstrahlungModel.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
//
28
// Class: G4AdjointBremsstrahlungModel
29
// Author: L. Desorgher
30
// Organisation: SpaceIT GmbH
31
// Contract: ESA contract 21435/08/NL/AT
32
// Customer: ESA/ESTEC
34
//
35
// CHANGE HISTORY
36
// --------------
37
// ChangeHistory:
38
// 15 June 2007 creation by L. Desorgher. Adapted from G4eBremsstrahlungModel
39
// 20-10-2009 Remove all the screening effect that are not considered in the direct models blow 10 GeV. L.Desorgher
40
// 4-11-2009 Implement the use of a simple biased differential cross section (C(Z)/Egamma) allowing a rapid computation of adjoint CS
41
// and rapid sampling of adjoint secondaries. By this way cross section matrices are not used anymore, avoiding a rather
42
// time consuming computation of adjoint brem cross section matrices for each material at initialisation. This mode is switch on/off
43
// by selecting SetUseMatrix(false)/ SetUseMatrix(true) in the constructor. L.Desorgher
44
//
45
//
46
//-------------------------------------------------------------
47
// Documentation:
48
// Adjoint Model for e- Bremsstrahlung
49
//
50
51
52
53
#ifndef G4AdjointBremsstrahlungModel_h
54
#define G4AdjointBremsstrahlungModel_h 1
55
#include "
globals.hh
"
56
#include "
G4VEmAdjointModel.hh
"
57
#include "
G4VEmAngularDistribution.hh
"
58
#include "
G4PhysicsTable.hh
"
59
#include "
G4EmModelManager.hh
"
60
class
G4Timer
;
61
class
G4AdjointBremsstrahlungModel
:
public
G4VEmAdjointModel
62
63
{
64
public
:
65
66
G4AdjointBremsstrahlungModel
(
G4VEmModel
* aModel);
67
G4AdjointBremsstrahlungModel
();
68
~G4AdjointBremsstrahlungModel
();
69
virtual
void
SampleSecondaries
(
const
G4Track
& aTrack,
70
G4bool
IsScatProjToProjCase,
71
G4ParticleChange
* fParticleChange);
72
void
RapidSampleSecondaries
(
const
G4Track
& aTrack,
73
G4bool
IsScatProjToProjCase,
74
G4ParticleChange
* fParticleChange);
75
virtual
G4double
DiffCrossSectionPerVolumePrimToSecond
(
76
const
G4Material
* aMaterial,
77
G4double
kinEnergyProj,
// kinetic energy of the primary particle before the interaction
78
G4double
kinEnergyProd
// kinetic energy of the secondary particle
79
);
80
G4double
DiffCrossSectionPerVolumePrimToSecondApproximated1
(
81
const
G4Material
* aMaterial,
82
G4double
kinEnergyProj,
// kinetic energy of the primary particle before the interaction
83
G4double
kinEnergyProd
// kinetic energy of the secondary particle
84
);
85
G4double
DiffCrossSectionPerVolumePrimToSecondApproximated2
(
86
const
G4Material
* aMaterial,
87
G4double
kinEnergyProj,
// kinetic energy of the primary particle before the interaction
88
G4double
kinEnergyProd
// kinetic energy of the secondary particle
89
);
90
virtual
G4double
AdjointCrossSection
(
const
G4MaterialCutsCouple
* aCouple,
91
G4double
primEnergy,
92
G4bool
IsScatProjToProjCase);
93
virtual
G4double
GetAdjointCrossSection
(
const
G4MaterialCutsCouple
* aCouple,
94
G4double
primEnergy,
95
G4bool
IsScatProjToProjCase);
96
97
98
// private void InitialiseFwdModels();
99
100
101
private
:
102
G4VEmModel
*
theDirectStdBremModel
;
103
G4EmModelManager
*
theEmModelManagerForFwdModels
;
104
G4bool
isDirectModelInitialised
;
105
106
G4double
highKinEnergy
;
107
G4double
lowKinEnergy
,
lastCZ
;
108
std::vector<G4DataVector*>
partialSumSigma
;
109
std::vector<float>
SigmaPerAtom
;
110
111
112
};
113
114
115
#endif
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
adjoint
include
G4AdjointBremsstrahlungModel.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:28
using
1.8.2 with
ECCE GitHub integration