SampleSecondaries Each model must implement SampleSecondaries to decide if a particle will be created after the ModelInterface or if any charateristic of the incident particle will change.
219{
220 auto materialID = couple->GetMaterial()->GetIndex();
221 G4double k = aDynamicParticle->GetKineticEnergy();
222 const auto& particle = aDynamicParticle->GetDefinition();
223 G4double lowLim = fpModelData->GetLowELimit(materialID, particle);
224 G4double highLim = fpModelData->GetHighELimit(materialID, particle);
225
226
227 if (k >= lowLim && k < highLim) {
231 if (materialID == fpG4_WATER->GetIndex()) {
232 level = fpModelData->RandomSelectShell(k, particle, materialID);
233 excitationEnergy = eStructure.ExcitationEnergy(level, materialID);
234 }
235 else {
236 do {
237 level = eStructure.NumberOfLevels(materialID) *
G4UniformRand();
238 excitationEnergy = eStructure.ExcitationEnergy(level, materialID);
239 } while ((k - eStructure.ExcitationEnergy(level, materialID)) < 0);
240 }
241 newEnergy = k - excitationEnergy;
242
243 if (k - newEnergy <= 0) {
244 G4cout <<
"k : " << k <<
" newEnergy : " << newEnergy <<
G4endl;
245 G4cout <<
"newEnergy : " << newEnergy <<
" k : " << k
246 <<
" excitationEnergy: " << excitationEnergy <<
G4endl;
247 G4cout <<
"G4DNACPA100ExcitationModel::level : " << eStructure.NumberOfLevels(materialID)
248 <<
" excitationEnergy : " << excitationEnergy <<
G4endl;
252 abort();
253 }
254
255 if (newEnergy >= 0) {
256
257
259 (excitationEnergy / k) / (1. + (k / (2 * electron_mass_c2)) * (1. - excitationEnergy / k));
260
261 cosTheta = std::sqrt(1. - cosTheta);
263 const G4ThreeVector& zVers = aDynamicParticle->GetMomentumDirection();
264
265
266 G4double CT1, ST1, CF1, SF1, CT2, ST2, CF2, SF2;
267 G4double sinTheta = std::sqrt(1 - cosTheta * cosTheta);
269 ST1 = std::sqrt(1. - CT1 * CT1);
270
271 ST1 != 0 ? CF1 = zVers.
x() / ST1 : CF1 = std::cos(2. * pi *
G4UniformRand());
272 ST1 != 0 ? SF1 = zVers.
y() / ST1 : SF1 = std::sqrt(1. - CF1 * CF1);
274 A3 = sinTheta * std::cos(phi);
275 A4 = A3 * CT1 + ST1 * cosTheta;
276 A5 = sinTheta * std::sin(phi);
277 A2 = A4 * SF1 + A5 * CF1;
278 A1 = A4 * CF1 - A5 * SF1;
279
280 CT2 = CT1 * cosTheta - ST1 * A3;
281 ST2 = std::sqrt(1. - CT2 * CT2);
282
283 if (ST2 == 0) {
284 ST2 = 1E-6;
285 }
286 CF2 = A1 / ST2;
287 SF2 = A2 / ST2;
288
290 fParticleChangeForGamma->ProposeMomentumDirection(zPrimeVers.unit());
291 if (!statCode) {
292 fParticleChangeForGamma->SetProposedKineticEnergy(newEnergy);
293 }
294 else {
295 fParticleChangeForGamma->SetProposedKineticEnergy(k);
296 }
297
298 fParticleChangeForGamma->ProposeLocalEnergyDeposit(excitationEnergy);
299
300
301 if (materialID == fpG4_WATER->GetIndex()) {
302 const G4Track* theIncomingTrack = fParticleChangeForGamma->GetCurrentTrack();
304 theIncomingTrack);
305 }
306 }
307 else {
308 G4cerr <<
"newEnergy : " << newEnergy <<
" k : " << k
309 <<
" excitationEnergy: " << excitationEnergy <<
G4endl;
310 G4cerr <<
"G4DNACPA100ExcitationModel::level : " << eStructure.NumberOfLevels(materialID)
311 <<
" excitationEnergy : " << excitationEnergy <<
G4endl;
316 "model is not registered for this energy");
317 }
318 }
319 else {
320 G4cerr <<
"k : " << k <<
" lowLim : " << lowLim <<
" highLim : " << highLim <<
G4endl;
322 "model is not registered for this energy");
323 }
324}
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cerr
static G4DNAChemistryManager * Instance()
void CreateWaterMolecule(ElectronicModification, G4int, const G4Track *)