#include <G4ModifiedTsai.hh>
|
| G4ModifiedTsai (const G4String &name="") |
|
virtual | ~G4ModifiedTsai () |
|
virtual G4ThreeVector & | SampleDirection (const G4DynamicParticle *dp, G4double out_energy, G4int Z, const G4Material *mat=nullptr) final |
|
virtual void | SamplePairDirections (const G4DynamicParticle *dp, G4double elecKinEnergy, G4double posiKinEnergy, G4ThreeVector &dirElectron, G4ThreeVector &dirPositron, G4int Z=0, const G4Material *mat=nullptr) final |
|
virtual void | PrintGeneratorInformation () const final |
|
| G4VEmAngularDistribution (const G4String &name) |
|
virtual | ~G4VEmAngularDistribution () |
|
virtual G4ThreeVector & | SampleDirection (const G4DynamicParticle *dp, G4double finalTotalEnergy, G4int Z, const G4Material *)=0 |
|
virtual G4ThreeVector & | SampleDirectionForShell (const G4DynamicParticle *dp, G4double finalTotalEnergy, G4int Z, G4int shellID, const G4Material *) |
|
virtual void | SamplePairDirections (const G4DynamicParticle *dp, G4double elecKinEnergy, G4double posiKinEnergy, G4ThreeVector &dirElectron, G4ThreeVector &dirPositron, G4int Z=0, const G4Material *mat=nullptr) |
|
const G4String & | GetName () const |
|
G4VEmAngularDistribution & | operator= (const G4VEmAngularDistribution &right)=delete |
|
| G4VEmAngularDistribution (const G4VEmAngularDistribution &)=delete |
|
Definition at line 62 of file G4ModifiedTsai.hh.
◆ G4ModifiedTsai()
G4ModifiedTsai::G4ModifiedTsai |
( |
const G4String & |
name = "" | ) |
|
|
explicit |
◆ ~G4ModifiedTsai()
G4ModifiedTsai::~G4ModifiedTsai |
( |
| ) |
|
|
virtual |
◆ PrintGeneratorInformation()
void G4ModifiedTsai::PrintGeneratorInformation |
( |
| ) |
const |
|
finalvirtual |
Definition at line 144 of file G4ModifiedTsai.cc.
145{
147 G4cout <<
"Bremsstrahlung Angular Generator is Modified Tsai" <<
G4endl;
148 G4cout <<
"Distribution suggested by L.Urban (Geant3 manual (1993) Phys211)"
150 G4cout <<
"Derived from Tsai distribution (Rev Mod Phys 49,421(1977)) \n"
152}
G4GLOB_DLL std::ostream G4cout
◆ SampleDirection()
Implements G4VEmAngularDistribution.
Definition at line 77 of file G4ModifiedTsai.cc.
79{
80
82 G4double sint = std::sqrt((1 - cost)*(1 + cost));
84
87
89}
void set(double x, double y, double z)
Hep3Vector & rotateUz(const Hep3Vector &)
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
G4ThreeVector fLocalDirection
◆ SamplePairDirections()
Reimplemented from G4VEmAngularDistribution.
Definition at line 118 of file G4ModifiedTsai.cc.
124{
128
129 G4double cost = SampleCosTheta(elecKinEnergy);
130 G4double sint = std::sqrt((1. - cost)*(1. + cost));
131
132 dirElectron.
set(sint*cosp, sint*sinp, cost);
134
135 cost = SampleCosTheta(posiKinEnergy);
136 sint = std::sqrt((1. - cost)*(1. + cost));
137
138 dirPositron.
set(-sint*cosp, -sint*sinp, cost);
140}
The documentation for this class was generated from the following files: