#include <G4PhotoNuclearCrossSection.hh>
|
| G4PhotoNuclearCrossSection () |
|
virtual | ~G4PhotoNuclearCrossSection () |
|
virtual void | CrossSectionDescription (std::ostream &) const |
|
virtual G4bool | IsElementApplicable (const G4DynamicParticle *particle, G4int Z, const G4Material *) |
|
virtual G4double | GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *) |
|
| G4VCrossSectionDataSet (const G4String &nam="") |
|
virtual | ~G4VCrossSectionDataSet () |
|
virtual G4bool | IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm=0, const G4Material *mat=0) |
|
G4double | GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=0) |
|
G4double | ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=0) |
|
virtual G4double | GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=0, const G4Element *elm=0, const G4Material *mat=0) |
|
virtual G4Isotope * | SelectIsotope (const G4Element *, G4double kinEnergy) |
|
virtual void | BuildPhysicsTable (const G4ParticleDefinition &) |
|
virtual void | DumpPhysicsTable (const G4ParticleDefinition &) |
|
virtual G4int | GetVerboseLevel () const |
|
virtual void | SetVerboseLevel (G4int value) |
|
G4double | GetMinKinEnergy () const |
|
void | SetMinKinEnergy (G4double value) |
|
G4double | GetMaxKinEnergy () const |
|
void | SetMaxKinEnergy (G4double value) |
|
const G4String & | GetName () const |
|
◆ G4PhotoNuclearCrossSection()
G4PhotoNuclearCrossSection::G4PhotoNuclearCrossSection |
( |
| ) |
|
Definition at line 1492 of file G4PhotoNuclearCrossSection.cc.
1498 for (
G4int i=0;i<120;i++)
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4VCrossSectionDataSet(const G4String &nam="")
static const char * Default_Name()
std::vector< G4double > spA
static G4NistManager * Instance()
std::vector< G4double > eTH
std::vector< G4double * > GDR
std::vector< G4double * > HEN
◆ ~G4PhotoNuclearCrossSection()
G4PhotoNuclearCrossSection::~G4PhotoNuclearCrossSection |
( |
| ) |
|
|
virtual |
Definition at line 1507 of file G4PhotoNuclearCrossSection.cc.
1509 std::vector<G4double*>::iterator posi;
1510 for(posi=
GDR.begin(); posi<
GDR.end(); posi++)
1511 {
delete [] *posi; }
1513 for(posi=
HEN.begin(); posi<
HEN.end(); posi++)
1514 {
delete [] *posi; }
std::vector< G4double * > GDR
std::vector< G4double * > HEN
◆ CrossSectionDescription()
void G4PhotoNuclearCrossSection::CrossSectionDescription |
( |
std::ostream & |
outFile | ) |
const |
|
virtual |
Reimplemented from G4VCrossSectionDataSet.
Definition at line 1519 of file G4PhotoNuclearCrossSection.cc.
1521 outFile <<
"G4PhotoNuclearCrossSection provides the total inelastic\n" 1522 <<
"cross section for photon interactions with nuclei. The\n" 1523 <<
"cross section is a parameterization of data which covers\n" 1524 <<
"all incident gamma energies.\n";
◆ Default_Name()
static const char* G4PhotoNuclearCrossSection::Default_Name |
( |
| ) |
|
|
inlinestatic |
◆ EquLinearFit()
◆ GetElementCrossSection()
Reimplemented from G4VCrossSectionDataSet.
Definition at line 1537 of file G4PhotoNuclearCrossSection.cc.
1542 if (Energy<
THmin)
return 0.;
1570 if(er<1)
G4cerr <<
"***G4PhotoNucCrossSection::GetCrossSection: A=" 1571 << Aa <<
" failed" <<
G4endl;
1589 else if (Energy<
Emin)
1593 else if (Energy<
Emax)
1605 if(sigma<0.)
return 0.;
static const G4double pos
static const G4double shc
static const G4double reg
G4int GetFunctions(G4double a, G4double *y, G4double *z)
std::vector< G4double > spA
G4double EquLinearFit(G4double X, G4int N, const G4double X0, const G4double XD, const G4double *Y)
G4double GetKineticEnergy() const
static const G4double shd
std::vector< G4double > eTH
std::vector< G4double * > GDR
std::vector< G4double * > HEN
G4double G4Log(G4double x)
static const G4double milE
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
static const G4double dlE
static const double millibarn
G4double ThresholdEnergy(G4int Z, G4int N)
static const G4double Emin
static const G4double Emax
G4double GetAtomicMassAmu(const G4String &symb) const
static const G4double THmin
static const G4double poc
G4GLOB_DLL std::ostream G4cerr
◆ GetFunctions()
Definition at line 1669 of file G4PhotoNuclearCrossSection.cc.
1674 G4cout <<
"***G4PhotoNuclearCS::GetFunctions: A=" <<
a 1675 <<
"(?). No CS returned!" <<
G4endl;
1679 for(
G4int i=0; i<
nLA; i++)
if(std::abs(
a-
LA[i])<.0005)
1685 for(
G4int j=0; j<
nHA; j++)
if(std::abs(
a-
HA[j])<.0005)
1693 for(k=1; k<
nLA; k++)
if(
a<
LA[k])
break;
1704 y[q]=yi+(
SL[k][q]-yi)*b;
1713 for(k=1; k<
nHA; k++)
if(
a<
HA[k])
break;
1722 z[q]=zi+(
SH[k][q]-zi)*b;
static const G4double HA[nHA]
static const G4double LA[nLA]
static const G4double * SH[nHA]
G4GLOB_DLL std::ostream G4cout
static const G4double * SL[nLA]
◆ IsElementApplicable()
◆ ThresholdEnergy()
Definition at line 1610 of file G4PhotoNuclearCrossSection.cc.
1615 if(A<1)
return infEn;
1616 else if(A==1)
return 134.9766;
static G4double GetNuclearMass(const G4double A, const G4double Z)
double A(double temperature)
static bool IsInStableTable(const G4double A, const G4double Z)
static const G4double infEn
◆ eTH
std::vector<G4double> G4PhotoNuclearCrossSection::eTH |
|
private |
◆ GDR
std::vector<G4double*> G4PhotoNuclearCrossSection::GDR |
|
private |
◆ HEN
std::vector<G4double*> G4PhotoNuclearCrossSection::HEN |
|
private |
◆ lastE
G4double G4PhotoNuclearCrossSection::lastE |
|
private |
◆ lastGDR
G4double* G4PhotoNuclearCrossSection::lastGDR |
|
private |
◆ lastHEN
G4double* G4PhotoNuclearCrossSection::lastHEN |
|
private |
◆ lastSig
G4double G4PhotoNuclearCrossSection::lastSig |
|
private |
◆ lastSP
G4double G4PhotoNuclearCrossSection::lastSP |
|
private |
◆ lastTH
G4double G4PhotoNuclearCrossSection::lastTH |
|
private |
◆ lastZ
G4int G4PhotoNuclearCrossSection::lastZ |
|
private |
◆ mNeut
G4double G4PhotoNuclearCrossSection::mNeut |
|
private |
◆ mProt
G4double G4PhotoNuclearCrossSection::mProt |
|
private |
◆ nistmngr
◆ spA
std::vector<G4double> G4PhotoNuclearCrossSection::spA |
|
private |
The documentation for this class was generated from the following files: