Import Geant4 11.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2024-12-06 11:11:40 +01:00
parent e58e650b32
commit 32390e802b
1984 changed files with 98713 additions and 83996 deletions
@@ -53,8 +53,11 @@
#include "G4Threading.hh"
G4ParticleHPElasticURR::G4ParticleHPElasticURR() : G4HadronicInteraction( "NeutronHPElasticURR" ) {
SetMinEnergy( 0.0 * CLHEP::eV );
G4ParticleHPElasticURR::G4ParticleHPElasticURR( G4bool isThermalScatteringOn ) :
G4HadronicInteraction( "NeutronHPElasticURR" ) {
G4double minEnergy = 0.0;
if ( isThermalScatteringOn ) minEnergy = 4.0 * CLHEP::eV;
SetMinEnergy( minEnergy );
SetMaxEnergy( 20.0 * CLHEP::MeV );
particleHPelastic = new G4ParticleHPElastic;
}