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

#include <G4InterfaceToXS.hh>

Public Member Functions

 G4InterfaceToXS (const G4ParticleDefinition *, G4int index)
 
 ~G4InterfaceToXS ()=default
 
void Initialise ()
 
G4double GetElementCrossSection (const G4double ekin, const G4int Z)
 
G4double GetIsoCrossSection (const G4double ekin, const G4int Z, const G4int A)
 
 G4InterfaceToXS (const G4InterfaceToXS &right)=delete
 
const G4InterfaceToXSoperator= (const G4InterfaceToXS &right)=delete
 

Detailed Description

Definition at line 47 of file G4InterfaceToXS.hh.

Constructor & Destructor Documentation

◆ G4InterfaceToXS() [1/2]

G4InterfaceToXS::G4InterfaceToXS ( const G4ParticleDefinition * p,
G4int index )

Definition at line 45 of file G4InterfaceToXS.cc.

46 : index(idx), fParticle(p)
47{
49 if (index == 0) {
50 fNeutronNuclear =
51 dynamic_cast<G4NeutronInelasticXS*>(reg->GetCrossSectionDataSet("G4NeutronInelasticXS"));
52 if (nullptr == fNeutronNuclear) { fNeutronNuclear = new G4NeutronInelasticXS(); }
53 fNeutronNuclear->BuildPhysicsTable(*fParticle);
54 } else if (index > 0 && index < 6) {
55 const G4String pname[6] = {"neutron", "proton", "deuteron", "triton", "He3", "alpha"};
56 const G4String& ss = pname[index] + "ParticleXS";
57 fParticleNuclear =
58 dynamic_cast<G4ParticleInelasticXS*>(reg->GetCrossSectionDataSet(ss));
59 if (nullptr == fParticleNuclear) { fParticleNuclear = new G4ParticleInelasticXS(fParticle); }
60 fParticleNuclear->BuildPhysicsTable(*fParticle);
61 } else if (index == 6) {
62 fGammaNuclear =
63 dynamic_cast<G4GammaNuclearXS*>(reg->GetCrossSectionDataSet("GammaNuclearXS"));
64 if (nullptr == fGammaNuclear) { fGammaNuclear = new G4GammaNuclearXS(); }
65 fGammaNuclear->BuildPhysicsTable(*fParticle);
66 }
67}
static G4CrossSectionDataSetRegistry * Instance()

Referenced by G4InterfaceToXS(), and operator=().

◆ ~G4InterfaceToXS()

G4InterfaceToXS::~G4InterfaceToXS ( )
default

◆ G4InterfaceToXS() [2/2]

G4InterfaceToXS::G4InterfaceToXS ( const G4InterfaceToXS & right)
delete

Member Function Documentation

◆ GetElementCrossSection()

G4double G4InterfaceToXS::GetElementCrossSection ( const G4double ekin,
const G4int Z )

Definition at line 69 of file G4InterfaceToXS.cc.

70{
71 G4double res = 0.0;
72 if (ekin <= 0.0) { return res; }
73 if (nullptr != fNeutronNuclear) {
74 res = fNeutronNuclear->ElementCrossSection(ekin, G4Log(ekin), Z);
75 } else if (nullptr != fParticleNuclear) {
76 res = fParticleNuclear->ElementCrossSection(ekin, G4Log(ekin), Z);
77 } else if (nullptr != fGammaNuclear) {
78 res = fGammaNuclear->ElementCrossSection(ekin, Z);
79 }
80 return res;
81}
G4double G4Log(G4double x)
Definition G4Log.hh:227
double G4double
Definition G4Types.hh:83

◆ GetIsoCrossSection()

G4double G4InterfaceToXS::GetIsoCrossSection ( const G4double ekin,
const G4int Z,
const G4int A )

Definition at line 83 of file G4InterfaceToXS.cc.

84{
85 G4double res = 0.0;
86 if (ekin <= 0.0) { return res; }
87 if (nullptr != fNeutronNuclear) {
88 res = fNeutronNuclear->IsoCrossSection(ekin, G4Log(ekin), Z, A);
89 } else if (nullptr != fParticleNuclear) {
90 res = fParticleNuclear->IsoCrossSection(ekin, G4Log(ekin), Z, A);
91 } else if (nullptr != fGammaNuclear) {
92 res = fGammaNuclear->IsoCrossSection(ekin, Z, A);
93 }
94 return res;
95}
const G4double A[17]

◆ Initialise()

void G4InterfaceToXS::Initialise ( )

◆ operator=()

const G4InterfaceToXS & G4InterfaceToXS::operator= ( const G4InterfaceToXS & right)
delete

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