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

#include <G4ParticleHPParticleYield.hh>

Public Member Functions

 G4ParticleHPParticleYield ()
 
 ~G4ParticleHPParticleYield ()=default
 
G4double GetTargetMass () const
 
void InitMean (std::istream &aDataFile)
 
void InitPrompt (std::istream &aDataFile)
 
void InitDelayed (std::istream &aDataFile)
 
G4double GetMean (G4double anEnergy) const
 
G4double GetPrompt (G4double anEnergy) const
 
G4double GetDelayed (G4double anEnergy) const
 
G4double GetDecayConstant (G4int i) const
 

Detailed Description

Definition at line 39 of file G4ParticleHPParticleYield.hh.

Constructor & Destructor Documentation

◆ G4ParticleHPParticleYield()

G4ParticleHPParticleYield::G4ParticleHPParticleYield ( )
inline

Definition at line 43 of file G4ParticleHPParticleYield.hh.

44 {
45 simpleMean = true;
46 spontPrompt = true;
47 hasPromptData = false;
48 hasDelayedData = false;
49
50 targetMass = 0.0;
51 theSpontPrompt = 0.0;
52 spontDelayed = true;
53 theSpontDelayed = 0.0;
54 }

◆ ~G4ParticleHPParticleYield()

G4ParticleHPParticleYield::~G4ParticleHPParticleYield ( )
default

Member Function Documentation

◆ GetDecayConstant()

G4double G4ParticleHPParticleYield::GetDecayConstant ( G4int i) const
inline

Definition at line 128 of file G4ParticleHPParticleYield.hh.

129 {
130 return thePrecursorDecayConstants.GetValue(i);
131 }

◆ GetDelayed()

G4double G4ParticleHPParticleYield::GetDelayed ( G4double anEnergy) const
inline

Definition at line 119 of file G4ParticleHPParticleYield.hh.

120 {
121 if (!hasDelayedData) return 0;
122 if (spontDelayed) {
123 return theSpontDelayed;
124 }
125 return theDelayed.GetY(anEnergy);
126 }

◆ GetMean()

G4double G4ParticleHPParticleYield::GetMean ( G4double anEnergy) const
inline

Definition at line 102 of file G4ParticleHPParticleYield.hh.

103 {
104 if (simpleMean) {
105 return theSimpleMean.GetY(anEnergy);
106 }
107 return theMean.GetValue(anEnergy);
108 }

◆ GetPrompt()

G4double G4ParticleHPParticleYield::GetPrompt ( G4double anEnergy) const
inline

Definition at line 110 of file G4ParticleHPParticleYield.hh.

111 {
112 if (!hasPromptData) return 0;
113 if (spontPrompt) {
114 return theSpontPrompt;
115 }
116 return thePrompt.GetY(anEnergy);
117 }

◆ GetTargetMass()

G4double G4ParticleHPParticleYield::GetTargetMass ( ) const
inline

Definition at line 58 of file G4ParticleHPParticleYield.hh.

58{ return targetMass; }

◆ InitDelayed()

void G4ParticleHPParticleYield::InitDelayed ( std::istream & aDataFile)
inline

Definition at line 87 of file G4ParticleHPParticleYield.hh.

88 {
89 hasDelayedData = true;
90 G4int iflag;
91 aDataFile >> targetMass >> iflag;
92 thePrecursorDecayConstants.Init(aDataFile, 1. / CLHEP::s); // s is the CLHEP unit second
93 if (iflag == 2) spontDelayed = false;
94 if (spontDelayed) {
95 aDataFile >> theSpontDelayed;
96 }
97 else {
98 theDelayed.Init(aDataFile, CLHEP::eV);
99 }
100 }
int G4int
Definition G4Types.hh:85

◆ InitMean()

void G4ParticleHPParticleYield::InitMean ( std::istream & aDataFile)
inline

Definition at line 60 of file G4ParticleHPParticleYield.hh.

61 {
62 G4int iflag;
63 aDataFile >> targetMass >> iflag;
64 if (iflag == 1) simpleMean = false;
65 if (simpleMean) {
66 theSimpleMean.Init(aDataFile, CLHEP::eV);
67 }
68 else {
69 theMean.Init(aDataFile);
70 }
71 }

◆ InitPrompt()

void G4ParticleHPParticleYield::InitPrompt ( std::istream & aDataFile)
inline

Definition at line 73 of file G4ParticleHPParticleYield.hh.

74 {
75 hasPromptData = true;
76 G4int iflag;
77 aDataFile >> targetMass >> iflag;
78 if (iflag == 2) spontPrompt = false;
79 if (spontPrompt) {
80 aDataFile >> theSpontPrompt;
81 }
82 else {
83 thePrompt.Init(aDataFile, CLHEP::eV);
84 }
85 }

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