// // ******************************************************************** // * 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. * // ******************************************************************** // // // $Id: G4AugerTransition.hh v0.1 // // // Author: Alfonso Mantero (Alfosno.Mantero@ge.infn.it) // // History: // ----------- // 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 #define G4AugerTransition_h 1 #include "G4DataVector.hh" #include "globals.hh" #include #include class G4AugerTransition { public: G4AugerTransition(G4int finalShell, std::vector transIds, const std::map, std::less >* idMap, const std::map >* energyMap, const std::map >* 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. const std::vector* AugerOriginatingShellIds(G4int startShellId) const; // Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId const std::vector* TransitionOriginatingShellIds() const; // 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. const G4DataVector* AugerTransitionProbabilities(G4int startShellId) const; // 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. 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. 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. G4double AugerTransitionProbability(G4int index, G4int startShellId) const; // Returns the id of the shell form wich the transition electron come from G4int TransitionOriginatingShellId(G4int index) const; private: G4int finalShellId; std::map,std::less > augerOriginatingShellIdsMap; std::map > augerTransitionEnergiesMap; std::map > augerTransitionProbabilitiesMap; std::vector transitionOriginatingShellIds; }; #endif