55 theFS.Init(
A, Z,
M, dirName, aFSType, projectile);
56 theFC.Init(
A, Z,
M, dirName, aFSType, projectile);
57 theSC.Init(
A, Z,
M, dirName, aFSType, projectile);
58 theTC.Init(
A, Z,
M, dirName, aFSType, projectile);
59 theLC.Init(
A, Z,
M, dirName, aFSType, projectile);
61 theFF.Init(
A, Z,
M, dirName, aFSType, projectile);
63 G4cout <<
"Fission fragment production is now activated in HP package for "
65 G4cout <<
"As currently modeled this option precludes production of delayed neutrons from "
68 produceFissionFragments =
true;
90 G4double targetMass = theFS.GetMass();
99 theFS.SetNeutronRP(theNeutron);
100 theFS.SetTarget(theTarget);
101 theFC.SetNeutronRP(theNeutron);
102 theFC.SetTarget(theTarget);
103 theSC.SetNeutronRP(theNeutron);
104 theSC.SetTarget(theTarget);
105 theTC.SetNeutronRP(theNeutron);
106 theTC.SetTarget(theTarget);
107 theLC.SetNeutronRP(theNeutron);
108 theLC.SetTarget(theTarget);
109 theFF.SetNeutronRP(theNeutron);
110 theFF.SetTarget(theTarget);
113 theNeutron.
Lorentz(theNeutron, -1 * theTarget);
118 thePhotons = theFS.GetPhotons();
124 xSec[0] = theFC.GetXsec(eKinetic);
125 xSec[1] = xSec[0] + theSC.GetXsec(eKinetic);
126 xSec[2] = xSec[1] + theTC.GetXsec(eKinetic);
127 xSec[3] = xSec[2] + theLC.GetXsec(eKinetic);
135 for (i = 0; i < 4; i++) {
137 if (random < xSec[i] / xSec[3])
break;
145 G4int Prompt = 0, delayed = 0, all = 0;
151 theFS.SampleNeutronMult(all, Prompt, delayed, eKinetic, 0);
152 if (Prompt == 0 && delayed == 0) Prompt = all;
153 theNeutrons = theFC.ApplyYourself(Prompt);
157 theFS.SampleNeutronMult(all, Prompt, delayed, eKinetic, 1);
158 if (Prompt == 0 && delayed == 0) Prompt = all;
159 theNeutrons = theSC.ApplyYourself(Prompt);
162 theFS.SampleNeutronMult(all, Prompt, delayed, eKinetic, 2);
163 if (Prompt == 0 && delayed == 0) Prompt = all;
164 theNeutrons = theTC.ApplyYourself(Prompt);
167 theFS.SampleNeutronMult(all, Prompt, delayed, eKinetic, 3);
168 if (Prompt == 0 && delayed == 0) Prompt = all;
169 theNeutrons = theLC.ApplyYourself(Prompt);
178 if (produceFissionFragments) delayed = 0;
182 if (theNeutrons !=
nullptr) {
183 theDecayConstants =
new G4double[delayed];
184 for (i = 0; i < theNeutrons->size(); ++i) {
190 theDelayed = theFS.ApplyYourself(0, delayed, theDecayConstants);
191 for (i = 0; i < theDelayed->size(); i++) {
195 theResult.Get()->GetSecondary(
theResult.Get()->GetNumberOfSecondaries() - 1)->SetTime(time);
200 theFS.SampleNeutronMult(all, Prompt, delayed, eKinetic, 0);
201 theDecayConstants =
new G4double[delayed];
202 if (Prompt == 0 && delayed == 0) Prompt = all;
203 theNeutrons = theFS.ApplyYourself(Prompt, delayed, theDecayConstants);
205 for (i0 = 0; i0 < Prompt; ++i0) {
206 theResult.Get()->AddSecondary(theNeutrons->operator[](i0),
secID);
209 for (i0 = Prompt; i0 < Prompt + delayed; ++i0) {
212 if (theDecayConstants[i0 - Prompt] > 1.0e-30) {
217 ed <<
" theDecayConstants[i0-Prompt]=" << theDecayConstants[i0 - Prompt]
218 <<
" -> cannot sample the time : set it to 0.0 !" <<
G4endl;
223 theResult.Get()->AddSecondary(theNeutrons->operator[](i0),
secID);
224 theResult.Get()->GetSecondary(
theResult.Get()->GetNumberOfSecondaries() - 1)->SetTime(time);
228 delete[] theDecayConstants;
230 std::size_t nPhotons = 0;
231 if (thePhotons !=
nullptr) {
232 nPhotons = thePhotons->size();
233 for (i = 0; i < nPhotons; ++i) {
244 if (!produceFissionFragments)
theResult.Get()->SetLocalEnergyDeposit(eDepByFragments);
248 if (produceFissionFragments) {
253 theFF.GetAFissionFragment(eKinetic, fragA_Z, fragA_A, fragA_M);
254 if (0 == fragA_A) {
return theResult.Get(); }
267 G4double theta = std::acos(costheta);
269 G4ThreeVector direction(sinth * std::cos(phi), sinth * std::sin(phi), costheta);
std::vector< G4DynamicParticle * > G4DynamicParticleVector
void Init(G4double A, G4double Z, G4int M, const G4String &dirName, const G4String &aFSType, G4ParticleDefinition *) override
G4HadFinalState * ApplyYourself(const G4HadProjectile &theTrack) override