G4KokoulinMuonNuclearXS.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:      D.H. Wright (SLAC)
00029 // Date:        1 February 2011
00030 //
00031 // Modified:
00032 //
00033 // 19 Aug 2011, V.Ivanchenko move to new design and make x-section per element
00034 //
00035 
00036 //
00037 // Description: use Kokoulin's parameterized calculation of virtual 
00038 //              photon production cross section and conversion to
00039 //              real photons.
00040 
00041 #ifndef G4KokoulinMuonNuclearXS_h
00042 #define G4KokoulinMuonNuclearXS_h 1
00043 
00044 #include "G4VCrossSectionDataSet.hh"
00045 #include "G4DynamicParticle.hh"
00046 #include "G4Element.hh"
00047 #include "G4MuonMinus.hh"
00048 #include "G4MuonPlus.hh"
00049 #include "G4NucleiProperties.hh"
00050 #include <vector>
00051 
00052 
00053 class G4PhysicsTable;
00054 
00055 class G4KokoulinMuonNuclearXS : public G4VCrossSectionDataSet
00056 {
00057 public:
00058 
00059   G4KokoulinMuonNuclearXS();
00060   virtual ~G4KokoulinMuonNuclearXS();
00061 
00062 
00063   G4bool IsElementApplicable(const G4DynamicParticle* particle, 
00064                              G4int Z, const G4Material*);
00065 
00066   G4double GetElementCrossSection(const G4DynamicParticle* particle,
00067                                   G4int Z, const G4Material*);
00068 
00069   void BuildCrossSectionTable();
00070 
00071   G4double
00072   ComputeDDMicroscopicCrossSection(G4double incidentKE, G4double,
00073                                    G4double AtomicWeight, G4double epsilon);
00074 
00075 private:
00076 
00077   G4double
00078   ComputeMicroscopicCrossSection(G4double incidentKE,
00079                                  G4double AtomicNumber, G4double AtomicWeight);
00080 
00081   G4KokoulinMuonNuclearXS & operator=(const G4KokoulinMuonNuclearXS &right);
00082   G4KokoulinMuonNuclearXS(const G4KokoulinMuonNuclearXS&);
00083 
00084   G4PhysicsTable* theCrossSectionTable;
00085 
00086   G4double LowestKineticEnergy;
00087   G4double HighestKineticEnergy;
00088   G4int TotBin;
00089   G4double CutFixed;
00090 
00091   std::map<G4int,G4int> zelMap;
00092 };
00093 
00094 #endif

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