G4AugerTransition.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id: G4AugerTransition.hh v0.1
00028 // 
00029 // 
00030 // Author: Alfonso Mantero (Alfosno.Mantero@ge.infn.it)
00031 //
00032 // History:
00033 // -----------
00034 // 1 Jun 2002: first Commited to CVS
00035 // -------------------------------------------------------------------
00036 
00037 // Class description:
00038 // Low Energy Electromagnetic Physics
00039 // This Class stores all the information of auger effect relative 
00040 // to one main vacancy in a atom, like possible auger emission with 
00041 // relative probabilites, originating shell's Ids, probabilities of 
00042 // transition and auger electron energies. 
00043 // Further documentation available from http://www.ge.infn.it/geant4/lowE
00044 
00045 // -------------------------------------------------------------------
00046 
00047 #ifndef G4AugerTransition_h 
00048 #define G4AugerTransition_h 1
00049 
00050 #include "G4DataVector.hh"
00051 #include "globals.hh"
00052 #include <vector>
00053 #include <map>
00054 
00055 class G4AugerTransition {
00056 
00057 public:
00058 
00059   G4AugerTransition(G4int finalShell, std::vector<G4int> transIds,
00060                     const std::map<G4int, std::vector<G4int>, std::less<G4int> >* idMap,
00061                     const std::map<G4int, G4DataVector, std::less<G4int> >* energyMap,
00062                     const std::map<G4int, G4DataVector, std::less<G4int> >* probabilityMap);
00063 
00064   ~G4AugerTransition();
00065   
00066 // All the data stored and provided by this class are relative to a
00067 // given vacancy, whose identity is provided by the FinalShellId() method,
00068 // in an atom of a given material
00069 
00070 // Returns the ids of the shells from wich an auger electron culd came from, given the shell
00071 // from wich the transition electron comes from.
00072 
00073   const std::vector<G4int>* AugerOriginatingShellIds(G4int startShellId) const;
00074 
00075 // Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId
00076 
00077   const std::vector<G4int>* TransitionOriginatingShellIds() const;
00078 
00079 // Returns the energiess of the possible auger electrons, given th shell
00080 // from wich the transition electron comes from.
00081 
00082   const G4DataVector* AugerTransitionEnergies(G4int startShellId) const;
00083 
00084 // Returns the emission probabilities of the auger electrons, given th shell
00085 // from wich the transition electron comes from.
00086 
00087   const G4DataVector* AugerTransitionProbabilities(G4int startShellId) const;
00088 
00089 // returns the id of the shell in wich the transition electron arrives
00090 
00091   G4int FinalShellId() const;
00092 
00093 // Returns the id of the shell from wich come the auger electron , given the shell
00094 // from wich the transition electron comes from and the index number.
00095 
00096   G4int AugerOriginatingShellId(G4int index, G4int startShellId) const;
00097 
00098 // Returns the energy of the auger electron, given the shell
00099 // from wich the transition electron comes from and the index number.
00100 
00101   G4double AugerTransitionEnergy(G4int index, G4int startShellId) const;
00102 
00103 // Returns the probability of the auger emission, given the shell
00104 // from wich the transition electron comes from and the index number.
00105 
00106   G4double AugerTransitionProbability(G4int index, G4int startShellId) const;
00107 
00108 // Returns the id of the shell form wich the transition electron come from
00109 
00110   G4int TransitionOriginatingShellId(G4int index) const;
00111 
00112 
00113 private:
00114 
00115   G4int finalShellId;
00116   std::map<G4int,std::vector<G4int>,std::less<G4int> >  augerOriginatingShellIdsMap;
00117   std::map<G4int,G4DataVector,std::less<G4int> >  augerTransitionEnergiesMap;
00118   std::map<G4int,G4DataVector,std::less<G4int> >  augerTransitionProbabilitiesMap;
00119   std::vector<G4int> transitionOriginatingShellIds;
00120   
00121 };
00122 
00123 #endif
00124 
00125 

Generated on Mon May 27 17:47:42 2013 for Geant4 by  doxygen 1.4.7