327{
328 if (fVerboseLevel > 3)
329 G4cout <<
"Calling SampleSecondaries() of G4PenelopeBremsstrahlungModel" <<
G4endl;
330
332 const G4Material* material = couple->
GetMaterial();
333
334 if (kineticEnergy <= fIntrinsicLowEnergyLimit)
335 {
338 return ;
339 }
340
342
344
345
346 if (kineticEnergy < cutG)
347 return;
348
349 if (fVerboseLevel > 3)
350 G4cout <<
"Going to sample gamma energy for: " <<material->
GetName() <<
" " <<
351 "energy = " << kineticEnergy/keV <<
", cut = " << cutG/keV <<
G4endl;
352
353
355 fPenelopeFSHelper->SampleGammaEnergy(kineticEnergy,material,cutG);
356
357 if (fVerboseLevel > 3)
358 G4cout <<
"Sampled gamma energy: " << gammaEnergy/keV <<
" keV" <<
G4endl;
359
360
361
363 fPenelopeAngular->SampleDirection(aDynamicParticle,gammaEnergy,0,material);
364
365 if (fVerboseLevel > 3)
367
368 G4double residualPrimaryEnergy = kineticEnergy-gammaEnergy;
369 if (residualPrimaryEnergy < 0)
370 {
371
372 gammaEnergy += residualPrimaryEnergy;
373 residualPrimaryEnergy = 0.0;
374 }
375
376
377 G4ThreeVector particleDirection1 = initialMomentum - gammaEnergy*gammaDirection1;
378 particleDirection1 = particleDirection1.
unit();
379
380
381 if (residualPrimaryEnergy > 0.)
382 {
385 }
386 else
387 {
389 }
390
391
392 G4DynamicParticle* theGamma =
new G4DynamicParticle(
G4Gamma::Gamma(),
393 gammaDirection1,
394 gammaEnergy);
395 fvect->push_back(theGamma);
396
397 if (fVerboseLevel > 1)
398 {
399 G4cout <<
"-----------------------------------------------------------" <<
G4endl;
400 G4cout <<
"Energy balance from G4PenelopeBremsstrahlung" <<
G4endl;
401 G4cout <<
"Incoming primary energy: " << kineticEnergy/keV <<
" keV" <<
G4endl;
402 G4cout <<
"-----------------------------------------------------------" <<
G4endl;
403 G4cout <<
"Outgoing primary energy: " << residualPrimaryEnergy/keV <<
" keV" <<
G4endl;
404 G4cout <<
"Bremsstrahlung photon " << gammaEnergy/keV <<
" keV" <<
G4endl;
405 G4cout <<
"Total final state: " << (residualPrimaryEnergy+gammaEnergy)/keV
407 G4cout <<
"-----------------------------------------------------------" <<
G4endl;
408 }
409
410 if (fVerboseLevel > 0)
411 {
412 G4double energyDiff = std::fabs(residualPrimaryEnergy+gammaEnergy-kineticEnergy);
413 if (energyDiff > 0.05*keV)
414 G4cout <<
"Warning from G4PenelopeBremsstrahlung: problem with energy conservation: "
415 <<
416 (residualPrimaryEnergy+gammaEnergy)/keV <<
417 " keV (final) vs. " <<
418 kineticEnergy/keV <<
" keV (initial)" <<
G4endl;
419 }
420 return;
421}
G4ThreeVector G4ParticleMomentum
CLHEP::Hep3Vector G4ThreeVector
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
G4ThreeVector GetMomentum() const