259{
260
262 G4cout <<
"Calling SampleSecondaries() of G4DNAQuadrupleIonisationModel"
264 }
265
266
268
269
271
272
273 const auto& pname = pdef->GetParticleName();
274
275
277
278
279
280
281 if (ekin < low_energy_lim) {
285 return;
286 }
287
288
289 constexpr G4int kNumSecondaries = 4;
291
292 G4int ioni_shell[kNumSecondaries] = {0, 0, 0, 0};
293 G4double shell_energy[kNumSecondaries];
294
296 scale_param = ::g4pow->powA(scale_param, 3.0);
297
299 while (1) {
304 is_continue =
305 (ioni_shell[0] == ioni_shell[1] && ioni_shell[1] == ioni_shell[2]) ||
306 (ioni_shell[1] == ioni_shell[2] && ioni_shell[2] == ioni_shell[3]) ||
307 (ioni_shell[2] == ioni_shell[3] && ioni_shell[3] == ioni_shell[0]) ||
308 (ioni_shell[3] == ioni_shell[0] && ioni_shell[0] == ioni_shell[1]) ||
309 (ioni_shell[0] == ioni_shell[1] && ioni_shell[1] == ioni_shell[2] &&
310 ioni_shell[2] == ioni_shell[3]);
311 if (!is_continue) { break; }
312 }
313
315 for (int i = 0; i < kNumSecondaries; i++) {
316 shell_energy[i] = ::water_structure.IonisationEnergy(ioni_shell[i]);
317 tot_ioni_energy += shell_energy[i];
318 }
319
321 return;
322 }
323
324
325 G4double theta{0.0}, phi{0.0}, tot_ekin2{0.0};
326 for (int i = 0; i < kNumSecondaries; i++) {
328 theta, phi, shell_energy[i]);
329 theta += kDeltaTheta;
330 }
331
332
334 shell_energy)) {
335 G4Exception(
"G4DNAQuadrupleIonisatioModel::SampleSecondaries()",
337 }
338
339
340
343
344 const auto scattered_energy = ekin - tot_ioni_energy - tot_ekin2;
345
346
347 tot_ioni_energy = shell_energy[0] + shell_energy[1] +
348 shell_energy[2] + shell_energy[3];
349
353 ekin - scattered_energy);
354 } else {
357 }
358
359
360
364
365
366}
@ eQuadrupleIonisedMolecule
G4int RandomSelect(G4double energy, G4double scale_param, const G4String &pname)
G4double GenerateSecondaries(std::vector< G4DynamicParticle * > *vsec, const G4MaterialCutsCouple *couple, const G4DynamicParticle *particle, G4int ioni_shell, G4double &theta, G4double &phi, G4double &shell_energy)
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const