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

#include <G4Isotope.hh>

Public Member Functions

 G4Isotope (const G4String &name, G4int z, G4int n, G4double a=0., G4int mlevel=0)
 
 ~G4Isotope ()
 
 G4Isotope (const G4Isotope &)=delete
 
G4Isotopeoperator= (const G4Isotope &)=delete
 
const G4StringGetName () const
 
G4int GetZ () const
 
G4int GetN () const
 
G4double GetA () const
 
G4int Getm () const
 
std::size_t GetIndex () const
 
G4bool operator== (const G4Isotope &) const
 
G4bool operator!= (const G4Isotope &) const
 
void SetName (const G4String &name)
 

Static Public Member Functions

static G4IsotopeGetIsotope (const G4String &name, G4bool warning=false)
 
static const G4IsotopeTableGetIsotopeTable ()
 
static std::size_t GetNumberOfIsotopes ()
 

Friends

std::ostream & operator<< (std::ostream &flux, const G4Isotope *isotope)
 
std::ostream & operator<< (std::ostream &flux, const G4Isotope &isotope)
 
std::ostream & operator<< (std::ostream &flux, const G4IsotopeTable &IsotopeTable)
 

Detailed Description

Definition at line 61 of file G4Isotope.hh.

Constructor & Destructor Documentation

◆ G4Isotope() [1/2]

G4Isotope::G4Isotope ( const G4String & name,
G4int z,
G4int n,
G4double a = 0.,
G4int mlevel = 0 )

Definition at line 49 of file G4Isotope.cc.

50 : fName(Name), fZ(Z), fN(N), fA(A), fm(il)
51{
52 if (Z < 1) {
54 ed << "Wrong Isotope " << Name << " Z= " << Z << G4endl;
55 G4Exception("G4Isotope::G4Isotope()", "mat001", FatalException, ed);
56 }
57 if (N < Z) {
59 ed << "Wrong Isotope " << Name << " Z= " << Z << " > N= " << N << G4endl;
60 G4Exception("G4Isotope::G4Isotope()", "mat002", FatalException, ed);
61 }
62 if (A <= 0.0) {
63 fA =
64 (G4NistManager::Instance()->GetAtomicMass(Z, N)) * CLHEP::g / (CLHEP::mole * CLHEP::amu_c2);
65 }
66 GetIsotopeTableRef().push_back(this);
67 fIndexInTable = GetIsotopeTableRef().size() - 1;
68}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
const G4double A[17]
#define G4endl
Definition G4ios.hh:67
G4double GetAtomicMass(G4int Z, G4int N) const
static G4NistManager * Instance()
#define N
Definition crc32.c:57

Referenced by G4Isotope(), GetIsotope(), operator!=(), operator<<, operator<<, operator=(), and operator==().

◆ ~G4Isotope()

G4Isotope::~G4Isotope ( )

Definition at line 72 of file G4Isotope.cc.

72{ GetIsotopeTableRef()[fIndexInTable] = nullptr; }

◆ G4Isotope() [2/2]

G4Isotope::G4Isotope ( const G4Isotope & )
delete

Member Function Documentation

◆ GetA()

G4double G4Isotope::GetA ( ) const
inline

Definition at line 86 of file G4Isotope.hh.

86{ return fA; }

Referenced by G4tgbGeometryDumper::DumpIsotope(), and G4GDMLWriteMaterials::IsotopeWrite().

◆ GetIndex()

std::size_t G4Isotope::GetIndex ( ) const
inline

Definition at line 97 of file G4Isotope.hh.

97{ return fIndexInTable; }

Referenced by G4ParticleHPProbabilityTablesStore::GetIsoCrossSectionPT().

◆ GetIsotope()

G4Isotope * G4Isotope::GetIsotope ( const G4String & name,
G4bool warning = false )
static

Definition at line 152 of file G4Isotope.cc.

153{
154 // search the isotope by its name
155 for (auto const & J : GetIsotopeTableRef()) {
156 if (J->GetName() == isotopeName) {
157 return J;
158 }
159 }
160
161 // the isotope does not exist in the table
162 if (warning) {
163 G4cout << "\n---> warning from G4Isotope::GetIsotope(). The isotope: " << isotopeName
164 << " does not exist in the table. Return NULL pointer." << G4endl;
165 }
166 return nullptr;
167}
G4GLOB_DLL std::ostream G4cout

Referenced by G4GDMLReadMaterials::GetIsotope(), and G4HadronicProcess::GetTargetIsotope().

◆ GetIsotopeTable()

const G4IsotopeTable * G4Isotope::GetIsotopeTable ( )
static

Definition at line 128 of file G4Isotope.cc.

128{ return &GetIsotopeTableRef(); }

Referenced by G4ParticleHPProbabilityTablesStore::Init().

◆ Getm()

◆ GetN()

◆ GetName()

const G4String & G4Isotope::GetName ( ) const
inline

◆ GetNumberOfIsotopes()

std::size_t G4Isotope::GetNumberOfIsotopes ( )
static

Definition at line 148 of file G4Isotope.cc.

148{ return GetIsotopeTableRef().size(); }

◆ GetZ()

◆ operator!=()

G4bool G4Isotope::operator!= ( const G4Isotope & right) const

Definition at line 80 of file G4Isotope.cc.

80{ return (this != (G4Isotope*)&right); }
G4Isotope(const G4String &name, G4int z, G4int n, G4double a=0., G4int mlevel=0)
Definition G4Isotope.cc:49

◆ operator=()

G4Isotope & G4Isotope::operator= ( const G4Isotope & )
delete

◆ operator==()

G4bool G4Isotope::operator== ( const G4Isotope & right) const

Definition at line 76 of file G4Isotope.cc.

76{ return (this == (G4Isotope*)&right); }

◆ SetName()

void G4Isotope::SetName ( const G4String & name)
inline

Definition at line 108 of file G4Isotope.hh.

108{ fName = name; }
const char * name(G4int ptype)

Friends And Related Symbol Documentation

◆ operator<< [1/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Isotope & isotope )
friend

Definition at line 106 of file G4Isotope.cc.

107{
108 flux << &isotope;
109 return flux;
110}

◆ operator<< [2/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Isotope * isotope )
friend

Definition at line 84 of file G4Isotope.cc.

85{
86 std::ios::fmtflags mode = flux.flags();
87 flux.setf(std::ios::fixed, std::ios::floatfield);
88 G4long prec = flux.precision(3);
89
90 // clang-format off
91 flux
92 << " Isotope: " << std::setw(5) << isotope->fName
93 << " Z = " << std::setw(2) << isotope->fZ
94 << " N = " << std::setw(3) << isotope->fN
95 << " A = " << std::setw(6) << std::setprecision(2)
96 << (isotope->fA)/(g/mole) << " g/mole";
97 // clang-format on
98
99 flux.precision(prec);
100 flux.setf(mode, std::ios::floatfield);
101 return flux;
102}
long G4long
Definition G4Types.hh:87

◆ operator<< [3/3]

std::ostream & operator<< ( std::ostream & flux,
const G4IsotopeTable & IsotopeTable )
friend

Definition at line 114 of file G4Isotope.cc.

115{
116 // Dump info for all known isotopes
117 flux << "\n***** Table : Nb of isotopes = " << IsotopeTable.size() << " *****\n" << G4endl;
118
119 for (auto const & i : IsotopeTable) {
120 flux << i << G4endl;
121 }
122
123 return flux;
124}

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