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

#include <G4PhotoNuclearCrossSection.hh>

+ Inheritance diagram for G4PhotoNuclearCrossSection:

Public Member Functions

 G4PhotoNuclearCrossSection ()
 
 ~G4PhotoNuclearCrossSection () override
 
void CrossSectionDescription (std::ostream &) const override
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm=nullptr, const G4Material *mat=nullptr) override
 
G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *mat=nullptr) override
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) override
 
G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *) override
 
G4double ComputeElementXSection (G4double energy, G4int Z)
 
G4double ComputeIsoXSection (G4double energy, G4int Z, G4int A)
 
G4PhotoNuclearCrossSectionoperator= (const G4PhotoNuclearCrossSection &right)=delete
 
 G4PhotoNuclearCrossSection (const G4PhotoNuclearCrossSection &)=delete
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
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 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 BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
virtual void SetVerboseLevel (G4int value)
 
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
 

Static Public Member Functions

static const char * Default_Name ()
 

Additional Inherited Members

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

Detailed Description

Definition at line 42 of file G4PhotoNuclearCrossSection.hh.

Constructor & Destructor Documentation

◆ G4PhotoNuclearCrossSection() [1/2]

G4PhotoNuclearCrossSection::G4PhotoNuclearCrossSection ( )

Definition at line 1486 of file G4PhotoNuclearCrossSection.cc.

1490{
1492 nistmngr = G4NistManager::Instance();
1493
1494 GDR.resize(120, nullptr);
1495 HEN.resize(120, nullptr);
1496 spA.resize(120, 0.0);
1497 eTH.resize(120, 0.0);
1498}
static G4NistManager * Instance()
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)

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

◆ ~G4PhotoNuclearCrossSection()

G4PhotoNuclearCrossSection::~G4PhotoNuclearCrossSection ( )
override

Definition at line 1501 of file G4PhotoNuclearCrossSection.cc.

1502{
1503 for (auto const & ptr : GDR) { delete [] ptr; }
1504 for (auto const & ptr : HEN) { delete [] ptr; }
1505
1506 delete [] deuteron_GDR;
1507 delete [] deuteron_HR;
1508 delete [] triton_GDR;
1509 delete [] triton_HR;
1510 delete [] he3_GDR;
1511 delete [] he3_HR;
1512}

◆ G4PhotoNuclearCrossSection() [2/2]

G4PhotoNuclearCrossSection::G4PhotoNuclearCrossSection ( const G4PhotoNuclearCrossSection & )
delete

Member Function Documentation

◆ ComputeElementXSection()

G4double G4PhotoNuclearCrossSection::ComputeElementXSection ( G4double energy,
G4int Z )

Definition at line 1645 of file G4PhotoNuclearCrossSection.cc.

1646{
1647 if (Energy <= THmin) { return 0.0; }
1648 G4int ZZ = std::min(Z, nL - 1);
1649
1650 G4double sigma=0.;
1651
1652 if(ZZ!=lastZ) // Otherwise the set of parameters is ready
1653 {
1654 lastZ = ZZ; // The last Z of calculated nucleus
1655 if(GDR[ZZ]) // Calculated nuclei in DB
1656 {
1657 lastGDR=GDR[ZZ]; // Pointer to prepared GDR cross sections
1658 lastHEN=HEN[ZZ]; // Pointer to prepared High Energy cross sections
1659 lastTH =eTH[ZZ]; // Energy Threshold
1660 lastSP =spA[ZZ]; // Shadowing coefficient for UHE
1661 }
1662 else
1663 {
1664 G4double Aa = nistmngr->GetAtomicMassAmu(ZZ); // average A
1665 G4int N = static_cast<G4int>(Aa) - ZZ;
1666
1667 G4double lnA=G4Log(Aa); // The nucleus is not found in DB. It is new.
1668 if(Aa==1.) lastSP=1.; // The Reggeon shadowing (A=1)
1669 else lastSP=Aa*(1.-shc*lnA); // The Reggeon shadowing
1670 lastTH=ThresholdEnergy(ZZ, N); // Energy Threshold
1671 lastGDR = new G4double[nL]; // Allocate memory for the new
1672 // GDR cross sections
1673 lastHEN = new G4double[nH]; // Allocate memory for the new
1674 // HEN cross sections
1675 G4int er=GetFunctions(Aa,lastGDR,lastHEN); // new ZeroPosition and
1676 // filling of the functions
1677 if(er<1) G4cerr << "***G4PhotoNucCrossSection::GetCrossSection: A="
1678 << Aa << " failed" << G4endl;
1679
1680 GDR[ZZ]=lastGDR; // added GDR, found by AH 10/7/02
1681 HEN[ZZ]=lastHEN; // added HEN, found by AH 10/7/02
1682 eTH[ZZ]=lastTH; // Threshold Energy
1683 spA[ZZ]=lastSP; // Pomeron Shadowing
1684 } // End of creation of the new set of parameters
1685 }// End of parameters udate
1686
1687 //
1688 // =================== NOW the Magic Formula ===================
1689 //
1690 if (Energy<lastTH)
1691 {
1692 lastE=Energy;
1693 lastSig=0.;
1694 return 0.;
1695 }
1696 else if (Energy<Emin) // GDR region (approximated in E, not in lnE)
1697 {
1698 sigma=EquLinearFit(Energy,nL,THmin,dE,lastGDR);
1699 }
1700 else if (Energy<Emax) // High Energy region
1701 {
1702 G4double lE=G4Log(Energy);
1703 sigma=EquLinearFit(lE,nH,milE,dlE,lastHEN);
1704 }
1705 else // UHE region (calculation, but not so frequent)
1706 {
1707 G4double lE=G4Log(Energy);
1708 sigma=lastSP*(poc*(lE-pos)+shd*G4Exp(-reg*lE));
1709 }
1710 // End of "sigma" calculation
1711
1712 sigma = std::max(sigma, 0.);
1713 return sigma*millibarn;
1714}
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
Definition G4Exp.hh:180
G4double G4Log(G4double x)
Definition G4Log.hh:227
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition G4ios.hh:67
#define N
Definition crc32.c:57

Referenced by ComputeIsoXSection(), and GetElementCrossSection().

◆ ComputeIsoXSection()

G4double G4PhotoNuclearCrossSection::ComputeIsoXSection ( G4double energy,
G4int Z,
G4int A )

Definition at line 1557 of file G4PhotoNuclearCrossSection.cc.

1558{
1559 if (Energy <= THmin) { return 0.0; }
1560 G4double sigma;
1561 G4double lE;
1562 if (Z == 1 && A == 2) {
1563 // init the XS table if need be
1564 if (deuteron_GDR == nullptr) {
1565 deuteron_TH = ThresholdEnergy(1,1); // threshold calculation is correct
1566 deuteron_GDR = new G4double[nL]; // direct copies
1567 for (G4int i = 0; i < nL; ++i) deuteron_GDR[i] = SL[0][i]; // A = 2 -> SL0
1568 deuteron_HR = new G4double[nH];
1569 for (G4int i = 0; i < nH; ++i) deuteron_HR[i] = SH[1][i]; // A = 2 -> SH1
1570 deuteron_SP = 1; // as would be assigned for proton
1571 }
1572 if (Energy < deuteron_TH) {
1573 sigma = 0.;
1574 } else if (Energy < Emin) { // GDR region (approximated in E, not in lnE)
1575 sigma = EquLinearFit(Energy,nL,THmin,dE,deuteron_GDR);
1576 } else if (Energy < Emax) { // High Energy region
1577 lE = G4Log(Energy);
1578 sigma = EquLinearFit(lE,nH,milE,dlE,deuteron_HR);
1579 } else { // Very high energy region
1580 lE = G4Log(Energy);
1581 sigma = deuteron_SP*(poc*(lE-pos)+shd*std::exp(-reg*lE));
1582 }
1583
1584 } else if (Z == 1 && A == 3) {
1585 if (triton_GDR == nullptr) {
1586 triton_TH = ThresholdEnergy(1,2);
1587 triton_GDR = new G4double[nL]; // same as for deuteron since no A = 3 entry
1588 for (G4int i = 0; i < nL; ++i) triton_GDR[i] = SL[0][i]; // A = 3 -> SL0
1589 triton_HR = new G4double[nH];
1590 for (G4int i = 0; i < nH; ++i) triton_HR[i] = SH[2][i]; // A = 3 -> SH2
1591 triton_SP = 1;
1592 }
1593 if (Energy < triton_TH) {
1594 sigma = 0.;
1595 } else if (Energy < Emin) { // GDR region
1596 sigma = EquLinearFit(Energy,nL,THmin,dE,triton_GDR);
1597 } else if (Energy < Emax) { // High Energy region
1598 lE = G4Log(Energy);
1599 sigma = EquLinearFit(lE,nH,milE,dlE,triton_HR);
1600 } else {
1601 lE = G4Log(Energy);
1602 sigma = triton_SP*(poc*(lE-pos)+shd*std::exp(-reg*lE));
1603 }
1604
1605 } else if (Z == 2 && A == 3) {
1606 if (he3_GDR == nullptr) {
1607 he3_TH = ThresholdEnergy(2,1);
1608 he3_GDR = new G4double[nL]; // same as for deuteron since no A = 3 entry
1609 for (G4int i = 0 ; i < nL ; ++i) he3_GDR[i] = SL[0][i]; // A = 3 -> SL0
1610 he3_HR = new G4double[nH];
1611 for (G4int i = 0 ; i < nH ; ++i) he3_HR[i] = SH[2][i]; // A = 3 -> SH2
1612 he3_SP = 2;
1613 }
1614 if (Energy < he3_TH) {
1615 sigma = 0.;
1616 } else if (Energy < Emin) { // GDR region
1617 sigma = EquLinearFit(Energy,nL,THmin,dE,he3_GDR);
1618 } else if (Energy < Emax) { // High Energy region
1619 lE = G4Log(Energy);
1620 sigma = EquLinearFit(lE,nH,milE,dlE,he3_HR);
1621 } else {
1622 lE = G4Log(Energy);
1623 sigma = he3_SP*(poc*(lE-pos)+shd*std::exp(-reg*lE));
1624 }
1625
1626 } else {
1627 return ComputeElementXSection(Energy, Z);
1628 }
1629
1630 if(sigma < 0.) sigma = 0.;
1631 return sigma*millibarn;
1632}
const G4double A[17]
G4double ComputeElementXSection(G4double energy, G4int Z)

Referenced by GetIsoCrossSection().

◆ CrossSectionDescription()

void G4PhotoNuclearCrossSection::CrossSectionDescription ( std::ostream & outFile) const
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 1516 of file G4PhotoNuclearCrossSection.cc.

1517{
1518 outFile << "G4PhotoNuclearCrossSection provides the total inelastic\n"
1519 << "cross section for photon interactions with nuclei. The\n"
1520 << "cross section is a parameterization of data which covers\n"
1521 << "all incident gamma energies.\n";
1522}

◆ Default_Name()

static const char * G4PhotoNuclearCrossSection::Default_Name ( )
inlinestatic

Definition at line 49 of file G4PhotoNuclearCrossSection.hh.

49{return "PhotoNuclearXS";}

Referenced by G4ElectroVDNuclearModel::G4ElectroVDNuclearModel(), and G4PhotoNuclearCrossSection().

◆ GetElementCrossSection()

G4double G4PhotoNuclearCrossSection::GetElementCrossSection ( const G4DynamicParticle * aPart,
G4int Z,
const G4Material *  )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 1638 of file G4PhotoNuclearCrossSection.cc.

1640{
1641 return ComputeElementXSection(aPart->GetKineticEnergy(), Z);
1642}
G4double GetKineticEnergy() const

◆ GetIsoCrossSection()

G4double G4PhotoNuclearCrossSection::GetIsoCrossSection ( const G4DynamicParticle * aPart,
G4int Z,
G4int A,
const G4Isotope * iso = nullptr,
const G4Element * elm = nullptr,
const G4Material * mat = nullptr )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 1547 of file G4PhotoNuclearCrossSection.cc.

1552{
1553 return ComputeIsoXSection(aPart->GetKineticEnergy(), Z, A);
1554}
G4double ComputeIsoXSection(G4double energy, G4int Z, G4int A)

◆ IsElementApplicable()

G4bool G4PhotoNuclearCrossSection::IsElementApplicable ( const G4DynamicParticle * ,
G4int Z,
const G4Material * mat = nullptr )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 1538 of file G4PhotoNuclearCrossSection.cc.

1540{
1541 return true;
1542}

◆ IsIsoApplicable()

G4bool G4PhotoNuclearCrossSection::IsIsoApplicable ( const G4DynamicParticle * ,
G4int Z,
G4int A,
const G4Element * elm = nullptr,
const G4Material * mat = nullptr )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 1527 of file G4PhotoNuclearCrossSection.cc.

1531{
1532 // explicitly allow deuterium, tritium, and He3
1533 return ((Z == 1 && A == 2) || (Z == 1 && A == 3) || (Z == 2 && A == 3));
1534}

◆ operator=()

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

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