Geant4-11
G4AdjointCSManager.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//
27// Class: G4AdjointCSManager
28// Author: L. Desorgher
29// Organisation: SpaceIT GmbH
30//
31// Class is responsible for the management of all adjoint cross section
32// matrices, and for the computation of the total forward and adjoint cross
33// sections. Total adjoint and forward cross sections are needed to correct the
34// weight of a particle after a tracking step or after the occurrence of a
35// reverse reaction. It is also used to sample an adjoint secondary from a
36// given adjoint cross section matrix.
37//
39
40#ifndef G4AdjointCSManager_h
41#define G4AdjointCSManager_h 1
42
43#include "globals.hh"
44#include "G4AdjointCSMatrix.hh"
46
47#include <vector>
48
49class G4Element;
50class G4Material;
53class G4PhysicsTable;
54class G4VEmProcess;
57
59{
61
62 public:
65
67
68 // Registration of the different models and processes
69
71
72 void RegisterEmProcess(G4VEmProcess* aProcess,
73 G4ParticleDefinition* aPartDef);
74
76 G4ParticleDefinition* aPartDef);
77
79
80 // Building of the CS Matrices and Total Forward and Adjoint LambdaTables
82
84
85 // Get TotalCrossSections form Total Lambda Tables, Needed for Weight
86 // correction and scaling of the
88 const G4MaterialCutsCouple* aCouple);
89
91 const G4MaterialCutsCouple* aCouple);
92
93 G4double GetAdjointSigma(G4double Ekin_nuc, size_t index_model,
94 G4bool is_scat_proj_to_proj,
95 const G4MaterialCutsCouple* aCouple);
96
98 const G4MaterialCutsCouple* aCouple,
99 G4double& emin_adj, G4double& emin_fwd);
100
102 const G4MaterialCutsCouple* aCouple,
103 G4double& e_sigma_max, G4double& sigma_max);
104
106 const G4MaterialCutsCouple* aCouple,
107 G4double& e_sigma_max, G4double& sigma_max);
108
109 // CrossSection Correction 1 or FwdCS/AdjCS following the G4boolean value of
110 // forward_CS_is_used and forward_CS_mode
112 G4double PreStepEkin,
113 const G4MaterialCutsCouple* aCouple,
114 G4bool& fwd_is_used);
115
116 // Cross section mode
117 inline void SetFwdCrossSectionMode(G4bool aBool) { fForwardCSMode = aBool; }
118
119 // Weight correction
121 G4double PreStepEkin,
122 G4double AfterStepEkin,
123 const G4MaterialCutsCouple* aCouple,
124 G4double step_length);
125
127
128 // called by the adjoint model to get the CS, if not otherwise specified
130 G4double PrimEnergy, G4double Tcut,
131 G4bool isScatProjToProj,
132 std::vector<G4double>& AdjointCS_for_each_element);
133
134 // called by the adjoint model to sample secondary energy from the CS matrix
136 G4VEmAdjointModel* aModel,
137 G4double PrimEnergy, G4double Tcut,
138 G4bool isScatProjToProj);
139
140 // Total Adjoint CS is computed at initialisation phase
143 G4double PrimEnergy);
144
146 G4ParticleDefinition* theFwdPartDef);
147
149 G4ParticleDefinition* theAdjPartDef);
150
151 // inline
153 {
154 fAdjIon = adjIon;
155 fFwdIon = fwdIon;
156 }
157
158 private:
160
162
163 void DefineCurrentParticle(const G4ParticleDefinition* aPartDef);
164
166 G4AdjointCSMatrix* anAdjointCSMatrix,
167 G4double Tcut);
168
169 std::vector<G4AdjointCSMatrix*> BuildCrossSectionsModelAndElement(
170 G4VEmAdjointModel* aModel, G4int Z, G4int A, G4int nbin_pro_decade);
171
172 std::vector<G4AdjointCSMatrix*> BuildCrossSectionsModelAndMaterial(
173 G4VEmAdjointModel* aModel, G4Material* aMaterial, G4int nbin_pro_decade);
174
175 static constexpr G4double fTmin = 0.1 * CLHEP::keV;
176 static constexpr G4double fTmax = 100. * CLHEP::TeV;
177 // fNbins chosen to avoid error
178 // in the CS value close to CS jump. (For example at Tcut)
179 static constexpr G4int fNbins = 320;
180
182
183 // only one ion can be considered by simulation
186
189
190 // x dim is for G4VAdjointEM*, y dim is for elements
191 std::vector<std::vector<G4AdjointCSMatrix*>>
193
194 std::vector<std::vector<G4AdjointCSMatrix*>> fAdjointCSMatricesForProdToProj;
195
196 std::vector<G4VEmAdjointModel*> fAdjointModels;
197
199 std::vector<G4bool> fIsScatProjToProj;
200 std::vector<std::vector<G4double>> fLastAdjointCSVsModelsAndElements;
201
202 // total adjoint and total forward cross section table in function of material
203 // and in function of adjoint particle type
204 std::vector<G4PhysicsTable*> fTotalFwdSigmaTable;
205 std::vector<G4PhysicsTable*> fTotalAdjSigmaTable;
206
207 // Sigma table for each G4VAdjointEMModel
208 std::vector<G4PhysicsTable*> fSigmaTableForAdjointModelScatProjToProj;
209 std::vector<G4PhysicsTable*> fSigmaTableForAdjointModelProdToProj;
210
211 std::vector<std::vector<G4double>> fEminForFwdSigmaTables;
212 std::vector<std::vector<G4double>> fEminForAdjSigmaTables;
213 std::vector<std::vector<G4double>> fEkinofFwdSigmaMax;
214 std::vector<std::vector<G4double>> fEkinofAdjSigmaMax;
215
216 // list of forward G4VEmProcess and of G4VEnergyLossProcess for the different
217 // adjoint particle
218 std::vector<std::vector<G4VEmProcess*>*> fForwardProcesses;
219 std::vector<std::vector<G4VEnergyLossProcess*>*> fForwardLossProcesses;
220
221 // list of adjoint particles considered
222 std::vector<G4ParticleDefinition*> fAdjointParticlesInAction;
223
224 G4double fMassRatio = 1.; // ion
226
229
234 // Two CS mode are possible:
235 // 1) fForwardCSMode = false, the Adjoint CS are used as it is implying
236 // an AlongStep Weight Correction.
237 // 2) fForwardCSMode = true, the Adjoint CS are scaled to have the total
238 // adjoint CS equal to the fwd one implying a PostStep Weight Correction.
239 // For energies where the total Fwd CS or the total adjoint CS are zero,
240 // the scaling is not possible and fForwardCSUsed is set to false
241};
242#endif
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
const G4int Z[17]
const G4double A[17]
static constexpr G4int fNbins
std::vector< G4bool > fIsScatProjToProj
std::vector< G4PhysicsTable * > fSigmaTableForAdjointModelScatProjToProj
size_t RegisterEmAdjointModel(G4VEmAdjointModel *)
void RegisterAdjointParticle(G4ParticleDefinition *aPartDef)
G4ParticleDefinition * fFwdIon
G4ParticleDefinition * GetForwardParticleEquivalent(G4ParticleDefinition *theAdjPartDef)
std::vector< std::vector< G4VEnergyLossProcess * > * > fForwardLossProcesses
void GetMaxAdjTotalCS(G4ParticleDefinition *aPartDef, const G4MaterialCutsCouple *aCouple, G4double &e_sigma_max, G4double &sigma_max)
G4double GetCrossSectionCorrection(G4ParticleDefinition *aPartDef, G4double PreStepEkin, const G4MaterialCutsCouple *aCouple, G4bool &fwd_is_used)
G4double GetTotalForwardCS(G4ParticleDefinition *aPartDef, G4double Ekin, const G4MaterialCutsCouple *aCouple)
void SetIon(G4ParticleDefinition *adjIon, G4ParticleDefinition *fwdIon)
std::vector< std::vector< G4AdjointCSMatrix * > > fAdjointCSMatricesForScatProjToProj
G4double ComputeTotalAdjointCS(const G4MaterialCutsCouple *aMatCutCouple, G4ParticleDefinition *aPart, G4double PrimEnergy)
std::vector< G4PhysicsTable * > fTotalFwdSigmaTable
G4double ComputeAdjointCS(G4Material *aMaterial, G4VEmAdjointModel *aModel, G4double PrimEnergy, G4double Tcut, G4bool isScatProjToProj, std::vector< G4double > &AdjointCS_for_each_element)
G4MaterialCutsCouple * fCurrentCouple
std::vector< std::vector< G4double > > fEminForFwdSigmaTables
G4ParticleDefinition * fAdjIon
void DefineCurrentParticle(const G4ParticleDefinition *aPartDef)
std::vector< std::vector< G4VEmProcess * > * > fForwardProcesses
std::vector< G4AdjointCSMatrix * > BuildCrossSectionsModelAndMaterial(G4VEmAdjointModel *aModel, G4Material *aMaterial, G4int nbin_pro_decade)
std::vector< std::vector< G4double > > fEminForAdjSigmaTables
G4ParticleDefinition * GetAdjointParticleEquivalent(G4ParticleDefinition *theFwdPartDef)
static constexpr G4double fTmin
void DefineCurrentMaterial(const G4MaterialCutsCouple *couple)
G4Element * SampleElementFromCSMatrices(G4Material *aMaterial, G4VEmAdjointModel *aModel, G4double PrimEnergy, G4double Tcut, G4bool isScatProjToProj)
G4double GetContinuousWeightCorrection(G4ParticleDefinition *aPartDef, G4double PreStepEkin, G4double AfterStepEkin, const G4MaterialCutsCouple *aCouple, G4double step_length)
std::vector< G4PhysicsTable * > fTotalAdjSigmaTable
G4double GetPostStepWeightCorrection()
void GetEminForTotalCS(G4ParticleDefinition *aPartDef, const G4MaterialCutsCouple *aCouple, G4double &emin_adj, G4double &emin_fwd)
std::vector< G4PhysicsTable * > fSigmaTableForAdjointModelProdToProj
G4Material * fCurrentMaterial
std::vector< std::vector< G4double > > fEkinofAdjSigmaMax
static G4AdjointCSManager * GetAdjointCSManager()
std::vector< G4AdjointCSMatrix * > BuildCrossSectionsModelAndElement(G4VEmAdjointModel *aModel, G4int Z, G4int A, G4int nbin_pro_decade)
static constexpr G4double fTmax
G4double GetTotalAdjointCS(G4ParticleDefinition *aPartDef, G4double Ekin, const G4MaterialCutsCouple *aCouple)
std::vector< G4ParticleDefinition * > fAdjointParticlesInAction
std::vector< G4VEmAdjointModel * > fAdjointModels
G4double GetAdjointSigma(G4double Ekin_nuc, size_t index_model, G4bool is_scat_proj_to_proj, const G4MaterialCutsCouple *aCouple)
std::vector< std::vector< G4double > > fLastAdjointCSVsModelsAndElements
void RegisterEmProcess(G4VEmProcess *aProcess, G4ParticleDefinition *aPartDef)
std::vector< std::vector< G4double > > fEkinofFwdSigmaMax
void RegisterEnergyLossProcess(G4VEnergyLossProcess *aProcess, G4ParticleDefinition *aPartDef)
void GetMaxFwdTotalCS(G4ParticleDefinition *aPartDef, const G4MaterialCutsCouple *aCouple, G4double &e_sigma_max, G4double &sigma_max)
void SetFwdCrossSectionMode(G4bool aBool)
std::vector< std::vector< G4AdjointCSMatrix * > > fAdjointCSMatricesForProdToProj
std::vector< size_t > fIndexOfAdjointEMModelInAction
static G4ThreadLocal G4AdjointCSManager * fInstance
static constexpr double TeV
static constexpr double keV
#define G4ThreadLocal
Definition: tls.hh:77