Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ModifiedMephi.cc
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 file
30//
31//
32// File name: G4ModifiedMephi
33//
34// Author: V. Ivanchenko
35//
36// Creation date: 27 October 2020
37//
38// Modifications:
39//
40//
41// -------------------------------------------------------------------
42//
43
44#include "G4ModifiedMephi.hh"
45#include "Randomize.hh"
46#include "G4Log.hh"
48
49//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
50
52 : G4VEmAngularDistribution("ModifiedMephi")
53{}
54
55//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
56
58{}
59
60//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
61
64 G4double gEnergy, G4int,
65 const G4Material*)
66{
67 // Sample gamma angle (Z - axis along the parent particle).
68 G4double cost = SampleCosTheta(dp->GetKineticEnergy(), gEnergy,
69 dp->GetDefinition()->GetPDGMass());
70 G4double sint = std::sqrt((1.0 - cost)*(1.0 + cost));
71 G4double phi = CLHEP::twopi*G4UniformRand();
72
73 fLocalDirection.set(sint*std::cos(phi), sint*std::sin(phi), cost);
75
76 return fLocalDirection;
77}
78
79//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
80
81G4double G4ModifiedMephi::SampleCosTheta(G4double primKinEnergy,
82 G4double gEnergy,
83 G4double mass)
84{
85 G4double gam = 1.0 + primKinEnergy/mass;
86 G4double rmax = gam*CLHEP::halfpi*std::min(1.0, gam*mass/gEnergy - 1.0);
87 G4double rmax2= rmax*rmax;
88 G4double x = G4UniformRand()*rmax2/(1.0 + rmax2);
89
90 return std::cos(std::sqrt(x/(1.0 - x))/gam);
91}
92
93//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
94
96 G4double elecKinEnergy,
97 G4double posiKinEnergy,
98 G4ThreeVector& dirElectron,
99 G4ThreeVector& dirPositron,
100 G4int, const G4Material*)
101{
102 G4double phi = CLHEP::twopi * G4UniformRand();
103 G4double sinp = std::sin(phi);
104 G4double cosp = std::cos(phi);
105
106 G4double ekin = dp->GetKineticEnergy();
107 G4double etwo = elecKinEnergy + posiKinEnergy;
108 G4double mass = dp->GetDefinition()->GetPDGMass();
109
110 G4double cost = SampleCosTheta(ekin, etwo, mass);
111 G4double sint = std::sqrt((1.0 - cost)*(1.0 + cost));
112
113 dirElectron.set(sint*cosp, sint*sinp, cost);
114 dirElectron.rotateUz(dp->GetMomentumDirection());
115
116 cost = SampleCosTheta(ekin, etwo, mass);
117 sint = std::sqrt((1.0 - cost)*(1.0 + cost));
118
119 dirPositron.set(-sint*cosp, -sint*sinp, cost);
120 dirPositron.rotateUz(dp->GetMomentumDirection());
121}
122
123//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
124
126{
127 G4cout << "\n" << G4endl;
128 G4cout << "Angular Generator is Modified Mephi" << G4endl;
129}
130
131//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
#define G4UniformRand()
Definition: Randomize.hh:52
void set(double x, double y, double z)
Hep3Vector & rotateUz(const Hep3Vector &)
Definition: ThreeVector.cc:33
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
void PrintGeneratorInformation() const override
G4ModifiedMephi(const G4String &name="")
G4ThreeVector & SampleDirection(const G4DynamicParticle *dp, G4double gEnergy, G4int Z, const G4Material *mat=nullptr) final
void SamplePairDirections(const G4DynamicParticle *dp, G4double elecKinEnergy, G4double posiKinEnergy, G4ThreeVector &dirElectron, G4ThreeVector &dirPositron, G4int Z=0, const G4Material *mat=nullptr) final
~G4ModifiedMephi() override