G4PenelopeIonisationCrossSection.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 // $Id$
00027 //
00028 // Author: Luciano Pandola
00029 //
00030 // History:
00031 // -----------
00032 // 14 Mar 2012   L. Pandola   1st implementation. 
00033 //
00034 // -------------------------------------------------------------------
00035 //
00043 // -------------------------------------------------------------------
00044 
00045 #ifndef G4PENELOPEIONISATIONCROSSSECTION_HH
00046 #define G4PENELOPEIONISATIONCROSSSECTION_HH 1
00047 
00048 #include "globals.hh"
00049 #include "G4VhShellCrossSection.hh"
00050 #include <map>
00051 
00052 class G4AtomicTransitionManager;
00053 class G4PenelopeOscillatorManager;
00054 class G4PenelopeOscillator;
00055 class G4PenelopeCrossSection;
00056 class G4PenelopeIonisationXSHandler;
00057 
00058 class G4PenelopeIonisationCrossSection : public G4VhShellCrossSection
00059 {
00060 public:  
00062   G4PenelopeIonisationCrossSection();
00063   
00065   ~G4PenelopeIonisationCrossSection();
00066 
00070   std::vector<G4double> GetCrossSection(G4int Z,
00071                                         G4double incidentEnergy,
00072                                         G4double mass,
00073                                         G4double deltaEnergy,
00074                                         const G4Material* mat);
00075   
00079   G4double CrossSection(G4int Z,
00080                         G4AtomicShellEnumerator shell,
00081                         G4double incidentEnergy,
00082                         G4double mass,
00083                         const G4Material* mat);
00084 
00088   std::vector<G4double> Probabilities(G4int Z,
00089                                       G4double incidentEnergy,
00090                                       G4double mass,
00091                                       G4double deltaEnergy,
00092                                       const G4Material* mat) ;
00094   void SetVerbosityLevel(G4int vl){verboseLevel = vl;};
00095   G4int GetVerbosityLevel(){return verboseLevel;};
00096 
00097 private:  
00098   G4PenelopeIonisationCrossSection & operator=(const G4PenelopeIonisationCrossSection &right);
00099   G4PenelopeIonisationCrossSection(const G4PenelopeIonisationCrossSection&);
00100 
00101   //Oscillator manager
00102   G4PenelopeOscillatorManager* oscManager;
00103 
00104   G4int verboseLevel;
00105 
00110   G4int FindShellIDIndex(const G4Material* mat,G4int Z,G4AtomicShellEnumerator shell);
00111   std::map< std::pair<const G4Material*,G4int>, G4DataVector*> *shellIDTable;
00112 
00113   G4int nMaxLevels;
00114 
00115   G4double fLowEnergyLimit;
00116   G4double fHighEnergyLimit;
00117 
00118   G4PenelopeIonisationXSHandler* theCrossSectionHandler;
00119   const G4AtomicTransitionManager* transitionManager;
00120 };
00121 
00122 #endif
00123 

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