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

#include <G4PenelopeIonisationCrossSection.hh>

+ Inheritance diagram for G4PenelopeIonisationCrossSection:

Public Member Functions

 G4PenelopeIonisationCrossSection ()
 Constructor.
 
 ~G4PenelopeIonisationCrossSection ()
 Destructor. Clean all tables.
 
std::vector< G4doubleGetCrossSection (G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)
 
G4double CrossSection (G4int Z, G4AtomicShellEnumerator shell, G4double incidentEnergy, G4double mass, const G4Material *mat)
 
std::vector< G4doubleProbabilities (G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)
 
void SetVerbosityLevel (G4int vl)
 Getter/setter for the verbosity level.
 
G4int GetVerbosityLevel ()
 
- Public Member Functions inherited from G4VhShellCrossSection
 G4VhShellCrossSection (const G4String &xname="")
 
virtual ~G4VhShellCrossSection ()
 
G4int SelectRandomShell (G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)
 
virtual std::vector< G4doubleGetCrossSection (G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)=0
 
virtual G4double CrossSection (G4int Z, G4AtomicShellEnumerator shell, G4double incidentEnergy, G4double mass, const G4Material *mat)=0
 
virtual std::vector< G4doubleProbabilities (G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)=0
 
virtual void SetTotalCS (G4double)
 
const G4StringGetName () const
 

Detailed Description

Definition at line 57 of file G4PenelopeIonisationCrossSection.hh.

Constructor & Destructor Documentation

◆ G4PenelopeIonisationCrossSection()

G4PenelopeIonisationCrossSection::G4PenelopeIonisationCrossSection ( )

Constructor.

NOTICE: working only for e- at the moment (no interface available for e+)

Definition at line 45 of file G4PenelopeIonisationCrossSection.cc.

45 :
46 G4VhShellCrossSection("Penelope"),shellIDTable(0),
47 theCrossSectionHandler(0)
48{
50 nMaxLevels = 9;
51
52 // Verbosity scale:
53 // 0 = nothing
54 // 1 = calculation of cross sections, file openings, sampling of atoms
55 // 2 = entering in methods
56 verboseLevel = 0;
57
58 fLowEnergyLimit = 10.0*eV;
59 fHighEnergyLimit = 100.0*GeV;
60
61 transitionManager = G4AtomicTransitionManager::Instance();
62}
static G4AtomicTransitionManager * Instance()
static G4PenelopeOscillatorManager * GetOscillatorManager()

◆ ~G4PenelopeIonisationCrossSection()

G4PenelopeIonisationCrossSection::~G4PenelopeIonisationCrossSection ( )

Destructor. Clean all tables.

Definition at line 66 of file G4PenelopeIonisationCrossSection.cc.

67{
68 if (theCrossSectionHandler)
69 delete theCrossSectionHandler;
70}

Member Function Documentation

◆ CrossSection()

G4double G4PenelopeIonisationCrossSection::CrossSection ( G4int  Z,
G4AtomicShellEnumerator  shell,
G4double  incidentEnergy,
G4double  mass,
const G4Material mat 
)
virtual

Purely virtual method from the base interface. Returns the cross section for the given shell in the element Z of material mat at the specified energy

Implements G4VhShellCrossSection.

Definition at line 74 of file G4PenelopeIonisationCrossSection.cc.

79{
80 if (verboseLevel > 1)
81 G4cout << "Entering in method G4PenelopeIonisationCrossSection::CrossSection()" << G4endl;
82
83 G4double cross = 0.;
84
85 //Material pointer is not available
86 if (!material)
87 {
88 //CRASH!
90 ed << "The method has been called with a null G4Material pointer" << G4endl;
91 G4Exception("G4PenelopeIonisationCrossSection::CrossSection()","em2042",
93 return cross;
94 }
95
96 if (!theCrossSectionHandler)
97 theCrossSectionHandler = new G4PenelopeIonisationXSHandler();
98
99 theCrossSectionHandler->BuildXSTable(material,0.,G4Electron::Electron());
100
101 G4int nmax = std::min(nMaxLevels,transitionManager->NumberOfShells(Z));
102
103 if(G4int(shell) < nmax &&
104 incidentEnergy >= fLowEnergyLimit && incidentEnergy <= fHighEnergyLimit)
105 {
106 //The shells in Penelope are organized per *material*, rather than per
107 //element, so given a material one has to find the proper index for the
108 //given Z and shellID. An appropriate lookup table is used to avoid
109 //recalculation.
110 G4int index = FindShellIDIndex(material,Z,shell);
111
112 //Index is not available!
113 if (index < 0)
114 return cross;
115
116 const G4PenelopeCrossSection* theXS =
117 theCrossSectionHandler->GetCrossSectionTableForCouple(G4Electron::Electron(),
118 material,
119 0.);
120
121 //Cross check that everything is fine:
122 G4PenelopeOscillator* theOsc = oscManager->GetOscillatorIonisation(material,index);
123 if (theOsc->GetParentZ() != Z || theOsc->GetShellFlag()-1 != G4int(shell))
124 {
125 //something went wrong!
127 ed << "There is something wrong here: it looks like the index is wrong" << G4endl;
128 ed << "Requested: shell " << G4int(shell) << " and Z = " << Z << G4endl;
129 ed << "Retrieved: " << theOsc->GetShellFlag()-1 << " and Z = " << theOsc->GetParentZ() << G4endl;
130 G4Exception("G4PenelopeIonisationCrossSection::CrossSection()","em2043",
131 JustWarning,ed);
132 return cross;
133 }
134
135
136 G4double crossPerMolecule = (theXS) ? theXS->GetShellCrossSection(index,incidentEnergy) : 0.;
137
138 //Now it must be converted in cross section per atom. I need the number of
139 //atoms of the given Z per molecule.
140 G4double atomsPerMolec = oscManager->GetNumberOfZAtomsPerMolecule(material,Z);
141 if (atomsPerMolec)
142 cross = crossPerMolecule/atomsPerMolec;
143
144
145 if (verboseLevel > 0)
146 {
147 G4cout << "Cross section of shell " << G4int(shell) << " and Z= " << Z;
148 G4cout << " of material: " << material->GetName() << " and energy = " << incidentEnergy/keV << " keV" << G4endl;
149 G4cout << "--> " << cross/barn << " barn" << G4endl;
150 G4cout << "Shell binding energy: " << theOsc->GetIonisationEnergy()/eV << " eV;" ;
151 G4cout << " resonance energy: " << theOsc->GetResonanceEnergy()/eV << "eV" << G4endl;
152 if (verboseLevel > 2)
153 {
154 G4cout << "Cross section per molecule: " << crossPerMolecule/barn << " barn" << G4endl;
155 G4cout << "Atoms " << Z << " per molecule: " << atomsPerMolec << G4endl;
156 }
157 }
158 }
159
160 return cross;
161}
@ JustWarning
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::ostringstream G4ExceptionDescription
Definition: G4Exception.hh:40
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4Electron * Electron()
Definition: G4Electron.cc:93
G4double GetShellCrossSection(size_t shellID, G4double energy) const
Returns the hard cross section for the given shell (per molecule)
void BuildXSTable(const G4Material *, G4double cut, const G4ParticleDefinition *, G4bool isMaster=true)
This can be inkoved only by the master.
const G4PenelopeCrossSection * GetCrossSectionTableForCouple(const G4ParticleDefinition *, const G4Material *, const G4double cut) const
G4double GetNumberOfZAtomsPerMolecule(const G4Material *, G4int Z)
G4PenelopeOscillator * GetOscillatorIonisation(const G4Material *, G4int)
G4double GetResonanceEnergy() const

Referenced by GetCrossSection().

◆ GetCrossSection()

std::vector< G4double > G4PenelopeIonisationCrossSection::GetCrossSection ( G4int  Z,
G4double  incidentEnergy,
G4double  mass,
G4double  deltaEnergy,
const G4Material mat 
)
virtual

Purely virtual method from the base interface. Returns the cross section for all levels of element Z in material mat at the given energy

Implements G4VhShellCrossSection.

Definition at line 165 of file G4PenelopeIonisationCrossSection.cc.

169{
170 G4int nmax = std::min(nMaxLevels,transitionManager->NumberOfShells(Z));
171 std::vector<G4double> vec(nmax,0.0);
172 for(G4int i=0; i<nmax; ++i) {
173 vec[i] = CrossSection(Z, G4AtomicShellEnumerator(i), kinEnergy,0.,mat);
174 }
175 return vec;
176}
G4AtomicShellEnumerator
G4double CrossSection(G4int Z, G4AtomicShellEnumerator shell, G4double incidentEnergy, G4double mass, const G4Material *mat)

Referenced by Probabilities().

◆ GetVerbosityLevel()

G4int G4PenelopeIonisationCrossSection::GetVerbosityLevel ( )
inline

Definition at line 94 of file G4PenelopeIonisationCrossSection.hh.

94{return verboseLevel;};

◆ Probabilities()

std::vector< G4double > G4PenelopeIonisationCrossSection::Probabilities ( G4int  Z,
G4double  incidentEnergy,
G4double  mass,
G4double  deltaEnergy,
const G4Material mat 
)
virtual

Purely virtual method from the base interface. Returns the shell ionisation probabilities for the given Z in the material mat at the specified energy.

Implements G4VhShellCrossSection.

Definition at line 181 of file G4PenelopeIonisationCrossSection.cc.

186{
187 std::vector<G4double> vec = GetCrossSection(Z, kinEnergy,0,0,mat);
188 size_t n = vec.size();
189 size_t i=0;
190 G4double sum = 0.0;
191 for(i=0; i<n; ++i) { sum += vec[i]; }
192 if(sum > 0.0) {
193 sum = 1.0/sum;
194 for(i=0; i<n; ++i) { vec[i] = vec[i]*sum; }
195 }
196 return vec;
197}
std::vector< G4double > GetCrossSection(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)

◆ SetVerbosityLevel()

void G4PenelopeIonisationCrossSection::SetVerbosityLevel ( G4int  vl)
inline

Getter/setter for the verbosity level.

Definition at line 93 of file G4PenelopeIonisationCrossSection.hh.

93{verboseLevel = vl;};

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