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

#include <G4ParticleHPCaptureDataPT.hh>

+ Inheritance diagram for G4ParticleHPCaptureDataPT:

Public Member Functions

 G4ParticleHPCaptureDataPT ()
 
 ~G4ParticleHPCaptureDataPT ()
 
void BuildPhysicsTable (const G4ParticleDefinition &)
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int, G4int, const G4Element *, const G4Material *)
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int, G4int, const G4Isotope *, const G4Element *, const G4Material *)
 
void SetVerboseLevel (G4int)
 
G4int GetVerboseLevel () const
 
virtual void CrossSectionDescription (std::ostream &) const
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
virtual G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *mat=nullptr)
 
G4double GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
G4double ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double ComputeCrossSectionPerElement (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *mat=nullptr)
 
virtual G4double ComputeIsoCrossSection (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr)
 
virtual const G4IsotopeSelectIsotope (const G4Element *, G4double kinEnergy, G4double logE)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
G4double GetMinKinEnergy () const
 
void SetMinKinEnergy (G4double value)
 
G4double GetMaxKinEnergy () const
 
void SetMaxKinEnergy (G4double value)
 
bool ForAllAtomsAndEnergies () const
 
void SetForAllAtomsAndEnergies (G4bool val)
 
const G4StringGetName () const
 
void SetName (const G4String &nam)
 
G4VCrossSectionDataSetoperator= (const G4VCrossSectionDataSet &right)=delete
 
 G4VCrossSectionDataSet (const G4VCrossSectionDataSet &)=delete
 

Additional Inherited Members

- Protected Attributes inherited from G4VCrossSectionDataSet
G4int verboseLevel {0}
 
G4String name
 

Detailed Description

Definition at line 65 of file G4ParticleHPCaptureDataPT.hh.

Constructor & Destructor Documentation

◆ G4ParticleHPCaptureDataPT()

G4ParticleHPCaptureDataPT::G4ParticleHPCaptureDataPT ( )

Definition at line 58 of file G4ParticleHPCaptureDataPT.cc.

58 : G4VCrossSectionDataSet( "NeutronHPCaptureXSPT" ) {
59 // minimum and maximum energy limit for URR in ENDF/B-VII.1, it is overwritten in BuildPhysicsTable
60 SetMinKinEnergy( 1.0 * CLHEP::eV );
61 SetMaxKinEnergy( 1.2 * CLHEP::MeV );
62 URRlimits = nullptr;
63}
G4VCrossSectionDataSet(const G4String &nam="")
void SetMaxKinEnergy(G4double value)
void SetMinKinEnergy(G4double value)

◆ ~G4ParticleHPCaptureDataPT()

G4ParticleHPCaptureDataPT::~G4ParticleHPCaptureDataPT ( )

Definition at line 66 of file G4ParticleHPCaptureDataPT.cc.

66{}

Member Function Documentation

◆ BuildPhysicsTable()

void G4ParticleHPCaptureDataPT::BuildPhysicsTable ( const G4ParticleDefinition & aP)
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 93 of file G4ParticleHPCaptureDataPT.cc.

93 {
94 G4cout << "BuildPhysicsTable in G4ParticleHPCaptureDataPT." << G4endl;
95 if ( &aP != G4Neutron::Neutron() ) {
96 throw G4HadronicException( __FILE__, __LINE__, "Attempt to use NeutronHP data for particles other than neutrons!" );
97 }
100 // sets the overall limits of the URR, which are stored at the last position of URRlimits - min and max URR(all elements)
101 // defines URR model energy range
102 SetMinKinEnergy( (*URRlimits).back().first );
103 SetMaxKinEnergy( (*URRlimits).back().second );
104 } else {
105 if ( G4ParticleHPManager::GetInstance()->GetProbabilityTables() == nullptr ) {
108 }
109 if ( URRlimits == nullptr ) {
113 }
114 // sets the overall limits of the URR, which are stored at the last position of URRlimits - min and max URR(all elements)
115 // defines URR model energy range
116 SetMinKinEnergy( (*URRlimits).back().first );
117 SetMaxKinEnergy( (*URRlimits).back().second );
118 }
119}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
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 G4ParticleHPManager * GetInstance()
void RegisterProbabilityTables(std::vector< std::map< G4int, G4ParticleHPIsoProbabilityTable * > > *val)
static G4ParticleHPProbabilityTablesStore * GetInstance()
std::vector< std::pair< G4double, G4double > > * GetURRlimits()
G4bool IsWorkerThread()

◆ CrossSectionDescription()

void G4ParticleHPCaptureDataPT::CrossSectionDescription ( std::ostream & outFile) const
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 132 of file G4ParticleHPCaptureDataPT.cc.

132 {
133 outFile << "Capture probability tables." ;
134}

◆ GetIsoCrossSection()

G4double G4ParticleHPCaptureDataPT::GetIsoCrossSection ( const G4DynamicParticle * dp,
G4int ,
G4int ,
const G4Isotope * iso,
const G4Element * element,
const G4Material * material )
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 87 of file G4ParticleHPCaptureDataPT.cc.

88 {
89 return G4ParticleHPProbabilityTablesStore::GetInstance()->GetIsoCrossSectionPT( dp, 102, iso, element, material );
90}
G4double GetIsoCrossSectionPT(const G4DynamicParticle *, G4int, const G4Isotope *, const G4Element *, const G4Material *)

◆ GetVerboseLevel()

G4int G4ParticleHPCaptureDataPT::GetVerboseLevel ( ) const

Definition at line 122 of file G4ParticleHPCaptureDataPT.cc.

122 {
124}

◆ IsIsoApplicable()

G4bool G4ParticleHPCaptureDataPT::IsIsoApplicable ( const G4DynamicParticle * dp,
G4int ,
G4int ,
const G4Element * elm,
const G4Material *  )
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 69 of file G4ParticleHPCaptureDataPT.cc.

70 {
71 // checks applicability for the element
72 if ( dp->GetDefinition() != G4Neutron::Neutron() ) {
73 return false;
74 } else {
75 std::size_t elementI = elm->GetIndex();
76 G4double eKin = dp->GetKineticEnergy();
77 if ( eKin < (*URRlimits).at(elementI).first ) { // kinetic energy below the URR energy range for this element = minURR(isotopes in element)
78 return false;
79 } else if ( eKin > (*URRlimits).at(elementI).second ) { // kinetic energy above the URR energy range for this element = maxURR(isotopes in element)
80 return false;
81 }
82 }
83 return true;
84}
double G4double
Definition G4Types.hh:83
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
std::size_t GetIndex() const
Definition G4Element.hh:159

◆ SetVerboseLevel()

void G4ParticleHPCaptureDataPT::SetVerboseLevel ( G4int newValue)
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 127 of file G4ParticleHPCaptureDataPT.cc.

127 {
129}

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