Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPElasticURR Class Reference

#include <G4ParticleHPElasticURR.hh>

+ Inheritance diagram for G4ParticleHPElasticURR:

Public Member Functions

 G4ParticleHPElasticURR (G4bool isThermalScatteringOn=false)
 
 ~G4ParticleHPElasticURR ()
 
G4HadFinalStateApplyYourself (const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
 
virtual const std::pair< G4double, G4doubleGetFatalEnergyCheckLevels () const
 
G4int GetVerboseLevel () const
 
void SetVerboseLevel (G4int)
 
void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void ModelDescription (std::ostream &outFile) const
 
- Public Member Functions inherited from G4HadronicInteraction
 G4HadronicInteraction (const G4String &modelName="HadronicModel")
 
virtual ~G4HadronicInteraction ()
 
virtual G4double SampleInvariantT (const G4ParticleDefinition *p, G4double plab, G4int Z, G4int A)
 
virtual G4bool IsApplicable (const G4HadProjectile &aTrack, G4Nucleus &targetNucleus)
 
G4double GetMinEnergy () const
 
G4double GetMinEnergy (const G4Material *aMaterial, const G4Element *anElement) const
 
void SetMinEnergy (G4double anEnergy)
 
void SetMinEnergy (G4double anEnergy, const G4Element *anElement)
 
void SetMinEnergy (G4double anEnergy, const G4Material *aMaterial)
 
G4double GetMaxEnergy () const
 
G4double GetMaxEnergy (const G4Material *aMaterial, const G4Element *anElement) const
 
void SetMaxEnergy (const G4double anEnergy)
 
void SetMaxEnergy (G4double anEnergy, const G4Element *anElement)
 
void SetMaxEnergy (G4double anEnergy, const G4Material *aMaterial)
 
G4int GetVerboseLevel () const
 
void SetVerboseLevel (G4int value)
 
const G4StringGetModelName () const
 
void DeActivateFor (const G4Material *aMaterial)
 
void ActivateFor (const G4Material *aMaterial)
 
void DeActivateFor (const G4Element *anElement)
 
void ActivateFor (const G4Element *anElement)
 
G4bool IsBlocked (const G4Material *aMaterial) const
 
G4bool IsBlocked (const G4Element *anElement) const
 
void SetRecoilEnergyThreshold (G4double val)
 
G4double GetRecoilEnergyThreshold () const
 
virtual std::pair< G4double, G4doubleGetEnergyMomentumCheckLevels () const
 
void SetEnergyMomentumCheckLevels (G4double relativeLevel, G4double absoluteLevel)
 
virtual void InitialiseModel ()
 
 G4HadronicInteraction (const G4HadronicInteraction &right)=delete
 
const G4HadronicInteractionoperator= (const G4HadronicInteraction &right)=delete
 
G4bool operator== (const G4HadronicInteraction &right) const =delete
 
G4bool operator!= (const G4HadronicInteraction &right) const =delete
 

Additional Inherited Members

- Protected Member Functions inherited from G4HadronicInteraction
void SetModelName (const G4String &nam)
 
G4bool IsBlocked () const
 
void Block ()
 
- Protected Attributes inherited from G4HadronicInteraction
G4HadFinalState theParticleChange
 
G4int verboseLevel
 
G4double theMinEnergy
 
G4double theMaxEnergy
 
G4bool isBlocked
 

Detailed Description

Definition at line 61 of file G4ParticleHPElasticURR.hh.

Constructor & Destructor Documentation

◆ G4ParticleHPElasticURR()

G4ParticleHPElasticURR::G4ParticleHPElasticURR ( G4bool isThermalScatteringOn = false)

Definition at line 56 of file G4ParticleHPElasticURR.cc.

56 :
57 G4HadronicInteraction( "NeutronHPElasticURR" ) {
58 G4double minEnergy = 0.0;
59 if ( isThermalScatteringOn ) minEnergy = 4.0 * CLHEP::eV;
60 SetMinEnergy( minEnergy );
61 SetMaxEnergy( 20.0 * CLHEP::MeV );
62 particleHPelastic = new G4ParticleHPElastic;
63}
double G4double
Definition G4Types.hh:83
void SetMinEnergy(G4double anEnergy)
G4HadronicInteraction(const G4String &modelName="HadronicModel")
void SetMaxEnergy(const G4double anEnergy)

◆ ~G4ParticleHPElasticURR()

G4ParticleHPElasticURR::~G4ParticleHPElasticURR ( )

Definition at line 66 of file G4ParticleHPElasticURR.cc.

66{}

Member Function Documentation

◆ ApplyYourself()

G4HadFinalState * G4ParticleHPElasticURR::ApplyYourself ( const G4HadProjectile & aTrack,
G4Nucleus & aTargetNucleus )
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 69 of file G4ParticleHPElasticURR.cc.

69 {
70 const G4Material* theMaterial = aTrack.GetMaterial();
71 G4double kineticEnergy = aTrack.GetKineticEnergy();
72 G4HadFinalState* theFinalState = nullptr;
73 if ( kineticEnergy < (*URRlimits).back().first || kineticEnergy > (*URRlimits).back().second ) {
74 return particleHPelastic->ApplyYourself( aTrack, aNucleus );
75 }
76 G4int elementI = -1;
77 G4int isotopeJ = -1;
78 G4int A = aNucleus.GetA_asInt();
79 G4int Z = aNucleus.GetZ_asInt();
80 // finds the element and isotope of the selected target aNucleus
81 for ( G4int i = 0; i < (G4int)theMaterial->GetNumberOfElements(); ++i ) {
82 if ( Z == theMaterial->GetElement(i)->GetZasInt() ) {
83 for ( G4int j = 0; j < (G4int)theMaterial->GetElement(i)->GetNumberOfIsotopes(); ++j ) {
84 if ( A == theMaterial->GetElement(i)->GetIsotope(j)->GetN() ) {
85 isotopeJ = j;
86 break;
87 }
88 }
89 // the loop cannot be ended here because the material can have two elements with same Z but different isotopic composition
90 if ( isotopeJ != -1 ) {
91 // isotope was found and for loop is ended
92 elementI = (G4int)theMaterial->GetElement(i)->GetIndex();
93 break;
94 }
95 } // end if find element
96 } // end element loop
97 // Check whether the energy is out of the URR limits for the given element
98 if ( kineticEnergy < (*URRlimits).at(elementI).first || kineticEnergy > (*URRlimits).at(elementI).second ) {
99 // Call elastic final state in G4ParicleHPChannel and SELECT ISOTOPE (to be improved in the future)
101 theFinalState = (*G4ParticleHPManager::GetInstance()->GetElasticFinalStates())[elementI]->ApplyYourself( aTrack );
102 // Update target nucleus information according to the selected isotope
104 aNucleus.SetParameters( selectedIsotope_A, Z );
105 const G4Element* target_element = (*G4Element::GetElementTable())[elementI];
106 const G4Isotope* target_isotope = nullptr;
107 // Find the selected isotope among in the element
108 for ( G4int j = 0; j < (G4int)target_element->GetNumberOfIsotopes(); ++j ) {
109 target_isotope = target_element->GetIsotope(j);
110 if ( target_isotope->GetN() == selectedIsotope_A ) break;
111 }
112 aNucleus.SetIsotope( target_isotope );
114 } else {
115 // the energy is inside the limits of the URR, calls the final state for the found element and isotope
116 theFinalState = ((*G4ParticleHPManager::GetInstance()->GetElasticFinalStates())[elementI]->GetFinalStates())[isotopeJ]->ApplyYourself( aTrack );
117 }
118 return theFinalState;
119}
int G4int
Definition G4Types.hh:85
const G4double A[17]
std::size_t GetNumberOfIsotopes() const
Definition G4Element.hh:143
std::size_t GetIndex() const
Definition G4Element.hh:159
const G4Isotope * GetIsotope(G4int iso) const
Definition G4Element.hh:151
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401
G4int GetZasInt() const
Definition G4Element.hh:120
const G4Material * GetMaterial() const
G4double GetKineticEnergy() const
G4int GetN() const
Definition G4Isotope.hh:83
const G4Element * GetElement(G4int iel) const
std::size_t GetNumberOfElements() const
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
std::vector< G4ParticleHPChannel * > * GetElasticFinalStates() const
static G4ParticleHPManager * GetInstance()
G4ParticleHPReactionWhiteBoard * GetReactionWhiteBoard()

Referenced by ApplyYourself().

◆ BuildPhysicsTable()

void G4ParticleHPElasticURR::BuildPhysicsTable ( const G4ParticleDefinition & )
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 122 of file G4ParticleHPElasticURR.cc.

122 {
123 particleHPelastic->BuildPhysicsTable( *(G4Neutron::Neutron()) );
125 if ( URRlimits == nullptr ) {
129 }
130}
static G4Neutron * Neutron()
Definition G4Neutron.cc:101
std::vector< std::pair< G4double, G4double > > * GetURRlimits() const
void RegisterURRlimits(std::vector< std::pair< G4double, G4double > > *val)
static G4ParticleHPProbabilityTablesStore * GetInstance()
std::vector< std::pair< G4double, G4double > > * GetURRlimits()

◆ GetFatalEnergyCheckLevels()

const std::pair< G4double, G4double > G4ParticleHPElasticURR::GetFatalEnergyCheckLevels ( ) const
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 133 of file G4ParticleHPElasticURR.cc.

133 {
134 // max energy non-conservation is mass of heavy nucleus
135 return std::pair< G4double, G4double >( 10.0 * perCent, 350.0 * CLHEP::GeV );
136}

◆ GetVerboseLevel()

G4int G4ParticleHPElasticURR::GetVerboseLevel ( ) const

Definition at line 139 of file G4ParticleHPElasticURR.cc.

139 {
141}

◆ ModelDescription()

void G4ParticleHPElasticURR::ModelDescription ( std::ostream & outFile) const
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 149 of file G4ParticleHPElasticURR.cc.

149 {
150 outFile << "High Precision model based on Evaluated Nuclear Data Files (ENDF) for elastic reaction of neutrons in the unresolved resonance region.";
151}

◆ SetVerboseLevel()

void G4ParticleHPElasticURR::SetVerboseLevel ( G4int newValue)

Definition at line 144 of file G4ParticleHPElasticURR.cc.

144 {
146}

The documentation for this class was generated from the following files: