Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4RiGeMuPairProductionModel.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//
29// GEANT4 Class header file
30//
31//
32// File name: G4RiGeMuPairProductionModel
33//
34// Authors: Girardo Depaola & Ricardo Pacheco
35//
36// Creation date: 29.10.2024
37//
38//
39// -------------------------------------------------------------------
40//
41
42#ifndef G4RiGeMuPairProductionModel_h
43#define G4RiGeMuPairProductionModel_h 1
44
45#include "G4VEmModel.hh"
46#include "G4NistManager.hh"
47#include "G4ElementData.hh"
48#include "G4Physics2DVector.hh"
50#include <vector>
51
52class G4Element;
55
57{
58public:
59
60 explicit G4RiGeMuPairProductionModel(const G4ParticleDefinition* p = nullptr);
61
62 ~G4RiGeMuPairProductionModel() override = default;
63
64 void Initialise(const G4ParticleDefinition*, const G4DataVector&) override;
65
67 G4VEmModel* masterModel) override;
68
70 G4double kineticEnergy,
72 G4double cutEnergy,
73 G4double maxEnergy) override;
74
77 G4double kineticEnergy,
78 G4double cutEnergy) override;
79
80 void SampleSecondaries(std::vector<G4DynamicParticle*>*,
82 const G4DynamicParticle*,
83 G4double tmin,
84 G4double maxEnergy) override;
85
88 G4double) override;
89
92 G4double pairEnergy);
93
94 inline void SetLowestKineticEnergy(G4double e);
95
96 inline void SetParticle(const G4ParticleDefinition*);
97
98 // hide assignment operator and copy constructor
100 (const G4RiGeMuPairProductionModel& right) = delete;
102
103protected:
104
106 G4double tmax);
107
109 G4double Z,
110 G4double cut);
111
113 G4double yymin, G4double yymax);
114
116 G4double Z);
117
118 void MakeSamplingTables();
119
120 void StoreTables() const;
121
123
124 virtual void DataCorrupted(G4int Z, G4double logTkin) const;
125
128 G4NistManager* nist = nullptr;
129
136
139
143 G4double dy = 0.005;
144
145 // Random numbers for sampling
147
150 std::size_t nbiny = 1000;
151 std::size_t nbine = 0;
152
154
155 // static members
156 static const G4int NZDATPAIR = 5;
157 static const G4int NINTPAIR = 8;
158 static const G4int ZDATPAIR[NZDATPAIR];
159 static const G4double xgi[NINTPAIR];
160 static const G4double wgi[NINTPAIR];
161
162private:
163
164 G4RiGeAngularGenerator* fAngularGenerator;
165 G4ParticleDefinition* theElectron;
166 G4ParticleDefinition* thePositron;
167 G4String dataName{""};
168};
169
170//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
171
176
177//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
178
179inline
181{
182 if(nullptr == particle) {
183 particle = p;
184 particleMass = particle->GetPDGMass();
185 }
186}
187
188//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
189
190inline G4double
192 G4double ZZ)
193{
194 G4int Z = G4lrint(ZZ);
195 if(Z != currentZ) {
196 currentZ = Z;
197 z13 = nist->GetZ13(Z);
198 z23 = z13*z13;
199 lnZ = nist->GetLOGZ(Z);
200 }
201 return kineticEnergy + particleMass*(1.0 - 0.75*sqrte*z13);
202}
203
204//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
205
206#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
const G4double A[17]
void SetParticle(const G4ParticleDefinition *)
G4RiGeMuPairProductionModel(const G4RiGeMuPairProductionModel &)=delete
static const G4int ZDATPAIR[NZDATPAIR]
virtual void DataCorrupted(G4int Z, G4double logTkin) const
const G4ParticleDefinition * particle
static const G4double wgi[NINTPAIR]
G4ParticleChangeForLoss * fParticleChange
G4double ComputeCrossSectionPerAtom(const G4ParticleDefinition *, G4double kineticEnergy, G4double Z, G4double A, G4double cutEnergy, G4double maxEnergy) override
void Initialise(const G4ParticleDefinition *, const G4DataVector &) override
static const G4double xgi[NINTPAIR]
G4double MaxSecondaryEnergyForElement(G4double kineticEnergy, G4double Z)
G4double MinPrimaryEnergy(const G4Material *, const G4ParticleDefinition *, G4double) override
void InitialiseLocal(const G4ParticleDefinition *, G4VEmModel *masterModel) override
G4double ComputeDMicroscopicCrossSection(G4double tkin, G4double Z, G4double pairEnergy)
G4double ComputeMicroscopicCrossSection(G4double tkin, G4double Z, G4double cut)
G4double FindScaledEnergy(G4int Z, G4double rand, G4double logTkin, G4double yymin, G4double yymax)
~G4RiGeMuPairProductionModel() override=default
G4RiGeMuPairProductionModel(const G4ParticleDefinition *p=nullptr)
void SampleSecondaries(std::vector< G4DynamicParticle * > *, const G4MaterialCutsCouple *, const G4DynamicParticle *, G4double tmin, G4double maxEnergy) override
G4double ComputMuPairLoss(G4double Z, G4double tkin, G4double cut, G4double tmax)
G4double ComputeDEDXPerVolume(const G4Material *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy) override
G4VEmModel(const G4String &nam)
Definition G4VEmModel.cc:67
int G4lrint(double ad)
Definition templates.hh:134