G4empCrossSection.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 //         
00029 //
00030 // History:
00031 // -----------
00032 //  21 Apr 2009   ALF  1st implementation
00033 //  15 Mar 2011   ALF introduced the usage of G4AtomicShellEnumerator
00034 //  09 Mar 2012   LP   changed signature of methods
00035 //
00036 // -------------------------------------------------------------------
00037 
00038 // Class description:
00039 
00040 // -------------------------------------------------------------------
00041 
00042 
00043 #ifndef G4EMPCROSSSECTION_HH
00044 #define G4EMPCROSSSECTION_HH 1
00045 
00046 #include "globals.hh"
00047 #include "G4VhShellCrossSection.hh"
00048 #include "G4PaulKxsModel.hh"
00049 #include "G4OrlicLiXsModel.hh"
00050 
00051 class G4empCrossSection : public G4VhShellCrossSection 
00052 {
00053 public:
00054 
00055   G4empCrossSection(const G4String& nam = "");
00056 
00057   virtual ~G4empCrossSection();
00058                              
00059   std::vector<G4double> GetCrossSection(G4int Z,
00060                                         G4double incidentEnergy,
00061                                         G4double mass,
00062                                         G4double deltaEnergy,
00063                                         const G4Material* mat);
00064 
00065   G4double CrossSection(G4int Z, G4AtomicShellEnumerator shell,
00066                         G4double incidentEnergy,
00067                         G4double mass,
00068                         const G4Material* mat);
00069 
00070   std::vector<G4double> Probabilities(G4int Z,
00071                                       G4double incidentEnergy,
00072                                       G4double mass,
00073                                       G4double deltaEnergy,
00074                                       const G4Material* mat);
00075   
00076   
00077   void SetTotalCS(G4double);
00078   
00079   
00080   
00081 private:
00082   
00083   G4double totalCS;
00084               
00085   G4PaulKxsModel*  paulShellK;
00086   G4OrlicLiXsModel* orlicShellLi;  
00087                                                 
00088   G4empCrossSection(const G4empCrossSection&);
00089   G4empCrossSection & operator = (const G4empCrossSection &right);
00090   
00091 };
00092 
00093 #endif

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