Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
GFlashParticleBounds Class Reference

#include <GFlashParticleBounds.hh>

Public Member Functions

 GFlashParticleBounds ()
 
 ~GFlashParticleBounds ()
 
G4double GetMinEneToParametrise (G4ParticleDefinition &particleType)
 
G4double GetMaxEneToParametrise (G4ParticleDefinition &particleType)
 
G4double GetEneToKill (G4ParticleDefinition &particleType)
 
void SetMinEneToParametrise (G4ParticleDefinition &particleType, G4double enemin)
 
void SetMaxEneToParametrise (G4ParticleDefinition &particleType, G4double enemax)
 
void SetEneToKill (G4ParticleDefinition &particleType, G4double enekill)
 

Detailed Description

Definition at line 46 of file GFlashParticleBounds.hh.

Constructor & Destructor Documentation

◆ GFlashParticleBounds()

GFlashParticleBounds::GFlashParticleBounds ( )

Definition at line 42 of file GFlashParticleBounds.cc.

43{
44 // e+e- defaults
45 EMinEneToParametrise = 0.10 * GeV;
46 EMaxEneToParametrise = 10000.00 * GeV;
47 EEneToKill = 0.1 * GeV; // Energie at which electrons are killed
48}

◆ ~GFlashParticleBounds()

GFlashParticleBounds::~GFlashParticleBounds ( )

Definition at line 50 of file GFlashParticleBounds.cc.

51{
52}

Member Function Documentation

◆ GetEneToKill()

G4double GFlashParticleBounds::GetEneToKill ( G4ParticleDefinition & particleType)

Definition at line 99 of file GFlashParticleBounds.cc.

100{
101 if (&particleType == G4Electron::ElectronDefinition()
102 || &particleType == G4Positron::PositronDefinition())
103 return EEneToKill;
104 else
105 return (-DBL_MAX);
106}
static G4Electron * ElectronDefinition()
Definition G4Electron.cc:86
static G4Positron * PositronDefinition()
Definition G4Positron.cc:85
#define DBL_MAX
Definition templates.hh:62

◆ GetMaxEneToParametrise()

G4double GFlashParticleBounds::GetMaxEneToParametrise ( G4ParticleDefinition & particleType)

Definition at line 88 of file GFlashParticleBounds.cc.

89{
90 G4double result = 0;
91 if (&particleType == G4Electron::ElectronDefinition()
92 || &particleType == G4Positron::PositronDefinition())
93 {
94 result = EMaxEneToParametrise;
95 }
96 return result;
97}
double G4double
Definition G4Types.hh:83

◆ GetMinEneToParametrise()

G4double GFlashParticleBounds::GetMinEneToParametrise ( G4ParticleDefinition & particleType)

Definition at line 77 of file GFlashParticleBounds.cc.

78{
79 G4double result = DBL_MAX;
80 if (&particleType == G4Electron::ElectronDefinition()
81 || &particleType == G4Positron::PositronDefinition())
82 {
83 result = EMinEneToParametrise;
84 }
85 return result;
86}

◆ SetEneToKill()

void GFlashParticleBounds::SetEneToKill ( G4ParticleDefinition & particleType,
G4double enekill )

Definition at line 70 of file GFlashParticleBounds.cc.

71{
72 if (&particleType == G4Electron::ElectronDefinition()
73 || &particleType == G4Positron::PositronDefinition())
74 EEneToKill = enekill;
75}

◆ SetMaxEneToParametrise()

void GFlashParticleBounds::SetMaxEneToParametrise ( G4ParticleDefinition & particleType,
G4double enemax )

Definition at line 62 of file GFlashParticleBounds.cc.

64{
65 if (&particleType == G4Electron::ElectronDefinition()
66 || &particleType == G4Positron::PositronDefinition())
67 EMaxEneToParametrise = enemax;
68}

◆ SetMinEneToParametrise()

void GFlashParticleBounds::SetMinEneToParametrise ( G4ParticleDefinition & particleType,
G4double enemin )

Definition at line 54 of file GFlashParticleBounds.cc.

56{
57 if (&particleType == G4Electron::ElectronDefinition()
58 || &particleType == G4Positron::PositronDefinition())
59 EMinEneToParametrise = enemin;
60}

The documentation for this class was generated from the following files: