#include <G4ParticleHPParticleYield.hh>
◆ 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 |
◆ GetDecayConstant()
G4double G4ParticleHPParticleYield::GetDecayConstant |
( |
G4int | i | ) |
const |
|
inline |
◆ GetDelayed()
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()
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()
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 |
◆ InitDelayed()
void G4ParticleHPParticleYield::InitDelayed |
( |
std::istream & | aDataFile | ) |
|
|
inline |
Definition at line 87 of file G4ParticleHPParticleYield.hh.
88 {
89 hasDelayedData = true;
91 aDataFile >> targetMass >> iflag;
92 thePrecursorDecayConstants.Init(aDataFile, 1. / CLHEP::s);
93 if (iflag == 2) spontDelayed = false;
94 if (spontDelayed) {
95 aDataFile >> theSpontDelayed;
96 }
97 else {
98 theDelayed.Init(aDataFile, CLHEP::eV);
99 }
100 }
◆ InitMean()
void G4ParticleHPParticleYield::InitMean |
( |
std::istream & | aDataFile | ) |
|
|
inline |
Definition at line 60 of file G4ParticleHPParticleYield.hh.
61 {
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;
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: