48 theCrossSectionHandler(0)
59 fLowEnergyLimit = 10.0*eV;
60 fHighEnergyLimit = 100.0*GeV;
69 if (theCrossSectionHandler)
70 delete theCrossSectionHandler;
82 G4cout <<
"Entering in method G4PenelopeIonisationCrossSection::CrossSection()" <<
G4endl;
91 ed <<
"The method has been called with a NULL G4Material pointer" <<
G4endl;
92 G4Exception(
"G4PenelopeIonisationCrossSection::CrossSection()",
"em2042",
97 if (!theCrossSectionHandler)
102 if(
G4int(shell) < nmax &&
103 incidentEnergy >= fLowEnergyLimit && incidentEnergy <= fHighEnergyLimit)
109 G4int index = FindShellIDIndex(material,Z,shell);
126 ed <<
"There is something wrong here: it looks like the index is wrong" <<
G4endl;
127 ed <<
"Requested: shell " <<
G4int(shell) <<
" and Z = " << Z <<
G4endl;
129 G4Exception(
"G4PenelopeIonisationCrossSection::CrossSection()",
"em2043",
141 cross = crossPerMolecule/atomsPerMolec;
144 if (verboseLevel > 0)
146 G4cout <<
"Cross section of shell " <<
G4int(shell) <<
" and Z= " << Z;
147 G4cout <<
" of material: " << material->
GetName() <<
" and energy = " << incidentEnergy/keV <<
" keV" <<
G4endl;
151 if (verboseLevel > 2)
153 G4cout <<
"Cross section per molecule: " << crossPerMolecule/barn <<
" barn" <<
G4endl;
154 G4cout <<
"Atoms " << Z <<
" per molecule: " << atomsPerMolec <<
G4endl;
170 std::vector<G4double> vec(nmax,0.0);
171 for(
G4int i=0; i<nmax; ++i) {
187 size_t n = vec.size();
190 for(i=0; i<n; ++i) { sum += vec[i]; }
193 for(i=0; i<n; ++i) { vec[i] = vec[i]*sum; }
200G4int G4PenelopeIonisationCrossSection::FindShellIDIndex(
const G4Material* mat,
204 if (verboseLevel > 1)
205 G4cout <<
"Entering in method G4PenelopeIonisationCrossSection::FindShellIDIndex()" <<
G4endl;
208 shellIDTable =
new std::map< std::pair<const G4Material*,G4int>,
G4DataVector*>;
210 std::pair<const G4Material*,G4int> theKey = std::make_pair(mat,Z);
214 if (shellIDTable->count(theKey))
216 if (verboseLevel > 2)
218 G4DataVector* theVec = shellIDTable->find(theKey)->second;
220 if (ishell>=0 && ishell < (
G4int) theVec->size())
221 result = (
G4int) (*theVec)[ishell];
225 ed <<
"Shell ID: " << ishell <<
" not available for material " << mat->
GetName() <<
" and Z = " <<
234 if (verboseLevel > 2)
238 size_t numberOfOscillators = theTable->size();
243 for (
size_t iosc=0;iosc<numberOfOscillators;iosc++)
254 if ((shFlag-1) == ishell)
255 result = (
G4int) iosc;
258 shellIDTable->insert(std::make_pair(theKey,dat));
261 if (verboseLevel > 1)
262 G4cout <<
"Leaving method G4PenelopeIonisationCrossSection::FindShellIDIndex() with index = " << result <<
G4endl;
std::vector< G4PenelopeOscillator * > G4PenelopeOscillatorTable
G4DLLIMPORT std::ostream G4cout
G4int NumberOfShells(G4int Z) const
static G4AtomicTransitionManager * Instance()
static G4Electron * Electron()
const G4String & GetName() const
G4double GetShellCrossSection(size_t shellID, G4double energy)
Returns the hard cross section for the given shell (per molecule)
~G4PenelopeIonisationCrossSection()
Destructor. Clean all tables.
std::vector< G4double > GetCrossSection(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)
std::vector< G4double > Probabilities(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)
G4double CrossSection(G4int Z, G4AtomicShellEnumerator shell, G4double incidentEnergy, G4double mass, const G4Material *mat)
G4PenelopeIonisationCrossSection()
Constructor.
G4PenelopeCrossSection * GetCrossSectionTableForCouple(const G4ParticleDefinition *, const G4Material *, G4double cut)
G4double GetNumberOfZAtomsPerMolecule(const G4Material *, G4int Z)
static G4PenelopeOscillatorManager * GetOscillatorManager()
G4PenelopeOscillatorTable * GetOscillatorTableIonisation(const G4Material *)
G4PenelopeOscillator * GetOscillatorIonisation(const G4Material *, G4int)
G4double GetIonisationEnergy()
G4double GetResonanceEnergy() const
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
std::ostringstream G4ExceptionDescription