122 lines
4.7 KiB
C++
122 lines
4.7 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// Author: Luciano Pandola
|
|
//
|
|
// History:
|
|
// -----------
|
|
// 14 Mar 2012 L. Pandola 1st implementation.
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
//! Class description:
|
|
//! Access to Penelope ionisation cross sections for e- and e+. To be
|
|
//! registered as a specific model in G4UAtomicDeexcitation.
|
|
//!
|
|
//! NOTICE: working only for e- at the moment (no interface available for
|
|
//! e+)
|
|
//!
|
|
// -------------------------------------------------------------------
|
|
|
|
#ifndef G4PENELOPEIONISATIONCROSSSECTION_HH
|
|
#define G4PENELOPEIONISATIONCROSSSECTION_HH 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4VhShellCrossSection.hh"
|
|
#include <map>
|
|
|
|
class G4AtomicTransitionManager;
|
|
class G4PenelopeOscillatorManager;
|
|
class G4PenelopeOscillator;
|
|
class G4PenelopeCrossSection;
|
|
class G4PenelopeIonisationXSHandler;
|
|
|
|
class G4PenelopeIonisationCrossSection : public G4VhShellCrossSection
|
|
{
|
|
public:
|
|
//! Constructor.
|
|
explicit G4PenelopeIonisationCrossSection();
|
|
|
|
//! Destructor. Clean all tables.
|
|
~G4PenelopeIonisationCrossSection();
|
|
|
|
//! Purely virtual method from the base interface. Returns the cross
|
|
//! section for all levels of element Z in material mat at the
|
|
//! given energy
|
|
std::vector<G4double> GetCrossSection(G4int Z,
|
|
G4double incidentEnergy,
|
|
G4double mass,
|
|
G4double deltaEnergy,
|
|
const G4Material* mat) override;
|
|
|
|
//! 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
|
|
G4double CrossSection(G4int Z,
|
|
G4AtomicShellEnumerator shell,
|
|
G4double incidentEnergy,
|
|
G4double mass,
|
|
const G4Material* mat) override;
|
|
|
|
//! Purely virtual method from the base interface. Returns the
|
|
//! shell ionisation probabilities for the given Z in the
|
|
//! material mat at the specified energy.
|
|
std::vector<G4double> Probabilities(G4int Z,
|
|
G4double incidentEnergy,
|
|
G4double mass,
|
|
G4double deltaEnergy,
|
|
const G4Material* mat) override;
|
|
//! Getter/setter for the verbosity level
|
|
void SetVerbosityLevel(G4int vl){fVerboseLevel = vl;};
|
|
G4int GetVerbosityLevel(){return fVerboseLevel;};
|
|
|
|
G4PenelopeIonisationCrossSection & operator=(const G4PenelopeIonisationCrossSection &right)
|
|
= delete;
|
|
G4PenelopeIonisationCrossSection(const G4PenelopeIonisationCrossSection&) = delete;
|
|
|
|
private:
|
|
//!The shells in Penelope are organized per *material*, rather than per
|
|
//!element, so given a material one has to find the proper index for the
|
|
//!given Z and shellID. An appropriate look-up table is used to avoid
|
|
//!recalculation.
|
|
G4int FindShellIDIndex(const G4Material* mat,G4int Z,G4AtomicShellEnumerator shell);
|
|
|
|
std::map< std::pair<const G4Material*,G4int>, G4DataVector*> *fShellIDTable;
|
|
|
|
//Oscillator manager
|
|
G4PenelopeOscillatorManager* fOscManager;
|
|
G4PenelopeIonisationXSHandler* fCrossSectionHandler;
|
|
const G4AtomicTransitionManager* fTransitionManager;
|
|
|
|
G4double fLowEnergyLimit;
|
|
G4double fHighEnergyLimit;
|
|
G4int fVerboseLevel;
|
|
G4int fNMaxLevels;
|
|
};
|
|
|
|
#endif
|
|
|