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

#include <G4ParticleHPInelasticDataPT.hh>

+ Inheritance diagram for G4ParticleHPInelasticDataPT:

Public Member Functions

 G4ParticleHPInelasticDataPT ()
 
 ~G4ParticleHPInelasticDataPT ()
 
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 G4ParticleHPInelasticDataPT.hh.

Constructor & Destructor Documentation

◆ G4ParticleHPInelasticDataPT()

G4ParticleHPInelasticDataPT::G4ParticleHPInelasticDataPT ( )

Definition at line 59 of file G4ParticleHPInelasticDataPT.cc.

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

◆ ~G4ParticleHPInelasticDataPT()

G4ParticleHPInelasticDataPT::~G4ParticleHPInelasticDataPT ( )

Definition at line 67 of file G4ParticleHPInelasticDataPT.cc.

67{}

Member Function Documentation

◆ BuildPhysicsTable()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 99 of file G4ParticleHPInelasticDataPT.cc.

99 {
100 if ( G4HadronicParameters::Instance()->GetTypeTablePT() == "njoy" ) {
102 SetMaxKinEnergy( 0.0 );
103 doNOTusePTforInelastic = true;
104 } else if ( G4HadronicParameters::Instance()->GetTypeTablePT() == "calendf" ) {
105 doNOTusePTforInelastic = false;
106 G4cout << "BuildPhysicsTable in G4ParticleHPInelasticDataPT." << G4endl;
107 if ( &aP != G4Neutron::Neutron() ) {
108 throw G4HadronicException( __FILE__, __LINE__, "Attempt to use NeutronHP data for particles other than neutrons!" );
109 }
112 // sets the overall limits of the URR, which are stored at the last position of URRlimits - min and max URR(all elements)
113 // defines URR model energy range
114 SetMinKinEnergy( (*URRlimits).back().first );
115 SetMaxKinEnergy( (*URRlimits).back().second );
116 } else {
117 if (G4ParticleHPManager::GetInstance()->GetProbabilityTables() == nullptr ) {
120 }
121 if ( URRlimits == nullptr ) {
125 }
126 // sets the overall limits of the URR, which are stored at the last position of URRlimits - min and max URR(all elements)
127 // defines URR model energy range
128 SetMinKinEnergy( (*URRlimits).back().first );
129 SetMaxKinEnergy( (*URRlimits).back().second );
130 }
131 }
132}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static G4HadronicParameters * Instance()
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()
#define DBL_MAX
Definition templates.hh:62

◆ CrossSectionDescription()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 145 of file G4ParticleHPInelasticDataPT.cc.

145 {
146 outFile << "Inelastic probability tables." ;
147}

◆ GetIsoCrossSection()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 93 of file G4ParticleHPInelasticDataPT.cc.

94 {
95 return G4ParticleHPProbabilityTablesStore::GetInstance()->GetIsoCrossSectionPT( dp, 3, iso, element, material );
96}
G4double GetIsoCrossSectionPT(const G4DynamicParticle *, G4int, const G4Isotope *, const G4Element *, const G4Material *)

◆ GetVerboseLevel()

G4int G4ParticleHPInelasticDataPT::GetVerboseLevel ( ) const

Definition at line 135 of file G4ParticleHPInelasticDataPT.cc.

135 {
137}

◆ IsIsoApplicable()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 70 of file G4ParticleHPInelasticDataPT.cc.

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

◆ SetVerboseLevel()

void G4ParticleHPInelasticDataPT::SetVerboseLevel ( G4int newValue)
virtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 140 of file G4ParticleHPInelasticDataPT.cc.

140 {
142}

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