Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -32,15 +32,12 @@
|
||||
// -----------
|
||||
// 1 Jun 2002: first Commited to CVS
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
// Class description:
|
||||
// Low Energy Electromagnetic Physics
|
||||
// This Class stores all the information of auger effect relative
|
||||
// to one main vacancy in a atom, like possible auger emission with
|
||||
// relative probabilites, originating shell's Ids, probabilities of
|
||||
// transition and auger electron energies.
|
||||
// Further documentation available from http://www.ge.infn.it/geant4/lowE
|
||||
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
#ifndef G4AugerTransition_h
|
||||
@@ -55,68 +52,59 @@ class G4AugerTransition {
|
||||
|
||||
public:
|
||||
|
||||
G4AugerTransition(G4int finalShell, std::vector<G4int> transIds,
|
||||
const std::map<G4int, std::vector<G4int>, std::less<G4int> >* idMap,
|
||||
const std::map<G4int, G4DataVector, std::less<G4int> >* energyMap,
|
||||
const std::map<G4int, G4DataVector, std::less<G4int> >* probabilityMap);
|
||||
|
||||
explicit G4AugerTransition(G4int finalShell, std::vector<G4int> transIds,
|
||||
const std::map<G4int, std::vector<G4int>, std::less<G4int> >* idMap,
|
||||
const std::map<G4int, G4DataVector, std::less<G4int> >* energyMap,
|
||||
const std::map<G4int, G4DataVector, std::less<G4int> >* probabilityMap);
|
||||
|
||||
~G4AugerTransition();
|
||||
|
||||
// All the data stored and provided by this class are relative to a
|
||||
// given vacancy, whose identity is provided by the FinalShellId() method,
|
||||
// in an atom of a given material
|
||||
|
||||
// Returns the ids of the shells from wich an auger electron culd came from, given the shell
|
||||
// from wich the transition electron comes from.
|
||||
/// All the data stored and provided by this class are relative to a
|
||||
/// given vacancy, whose identity is provided by the FinalShellId() method,
|
||||
/// in an atom of a given material
|
||||
|
||||
/// Returns the ids of the shells from wich an auger electron culd came from, given the shell
|
||||
/// from wich the transition electron comes from.
|
||||
const std::vector<G4int>* AugerOriginatingShellIds(G4int startShellId) const;
|
||||
|
||||
// Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId
|
||||
|
||||
/// Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId
|
||||
const std::vector<G4int>* TransitionOriginatingShellIds() const;
|
||||
|
||||
// Returns the energiess of the possible auger electrons, given th shell
|
||||
// from wich the transition electron comes from.
|
||||
|
||||
/// Returns the energiess of the possible auger electrons, given th shell
|
||||
/// from wich the transition electron comes from.
|
||||
const G4DataVector* AugerTransitionEnergies(G4int startShellId) const;
|
||||
|
||||
// Returns the emission probabilities of the auger electrons, given th shell
|
||||
// from wich the transition electron comes from.
|
||||
|
||||
/// Returns the emission probabilities of the auger electrons, given th shell
|
||||
/// from wich the transition electron comes from.
|
||||
const G4DataVector* AugerTransitionProbabilities(G4int startShellId) const;
|
||||
|
||||
// returns the id of the shell in wich the transition electron arrives
|
||||
|
||||
/// returns the id of the shell in wich the transition electron arrives
|
||||
G4int FinalShellId() const;
|
||||
|
||||
// Returns the id of the shell from wich come the auger electron , given the shell
|
||||
// from wich the transition electron comes from and the index number.
|
||||
|
||||
/// Returns the id of the shell from wich come the auger electron , given the shell
|
||||
/// from wich the transition electron comes from and the index number.
|
||||
G4int AugerOriginatingShellId(G4int index, G4int startShellId) const;
|
||||
|
||||
// Returns the energy of the auger electron, given the shell
|
||||
// from wich the transition electron comes from and the index number.
|
||||
|
||||
/// Returns the energy of the auger electron, given the shell
|
||||
/// from wich the transition electron comes from and the index number.
|
||||
G4double AugerTransitionEnergy(G4int index, G4int startShellId) const;
|
||||
|
||||
// Returns the probability of the auger emission, given the shell
|
||||
// from wich the transition electron comes from and the index number.
|
||||
|
||||
/// Returns the probability of the auger emission, given the shell
|
||||
/// from wich the transition electron comes from and the index number.
|
||||
G4double AugerTransitionProbability(G4int index, G4int startShellId) const;
|
||||
|
||||
// Returns the id of the shell form wich the transition electron come from
|
||||
|
||||
/// Returns the id of the shell form wich the transition electron come from
|
||||
G4int TransitionOriginatingShellId(G4int index) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4int finalShellId;
|
||||
private:
|
||||
std::map<G4int,std::vector<G4int>,std::less<G4int> > augerOriginatingShellIdsMap;
|
||||
std::map<G4int,G4DataVector,std::less<G4int> > augerTransitionEnergiesMap;
|
||||
std::map<G4int,G4DataVector,std::less<G4int> > augerTransitionProbabilitiesMap;
|
||||
std::vector<G4int> transitionOriginatingShellIds;
|
||||
|
||||
G4int finalShellId;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user