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 // GEANT4 Class file 00031 // 00032 // 00033 // File name: G4NeutronHPBGGNucleonInelasticXS 00034 // 00035 // Author: KOI, Tatsumi 00036 // 00037 // Creation date: 22.03.2012 00038 // Modifications: 00039 // 00040 // 00041 // ------------------------------------------------------------------- 00042 // 00043 00044 #include "G4NeutronHPBGGNucleonInelasticXS.hh" 00045 #include "G4SystemOfUnits.hh" 00046 /* 00047 #include "G4GlauberGribovCrossSection.hh" 00048 #include "G4NucleonNuclearCrossSection.hh" 00049 #include "G4HadronNucleonXsc.hh" 00050 */ 00051 #include "G4HadronInelasticDataSet.hh" 00052 /* 00053 #include "G4Proton.hh" 00054 #include "G4Neutron.hh" 00055 #include "G4NistManager.hh" 00056 #include "G4Material.hh" 00057 #include "G4Element.hh" 00058 #include "G4Isotope.hh" 00059 */ 00060 00061 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 00062 00063 G4NeutronHPBGGNucleonInelasticXS::G4NeutronHPBGGNucleonInelasticXS(const G4ParticleDefinition* p) 00064 : G4BGGNucleonInelasticXS( p ) 00065 { 00066 fLowEnergyLimitForHPN = 20*MeV; 00067 } 00068 00069 00070 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 00071 00072 G4NeutronHPBGGNucleonInelasticXS::~G4NeutronHPBGGNucleonInelasticXS() 00073 { 00074 } 00075 00076 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 00077 00078 G4bool G4NeutronHPBGGNucleonInelasticXS::IsElementApplicable(const G4DynamicParticle* dp, 00079 G4int Z, 00080 const G4Material*) 00081 { 00082 if ( dp->GetKineticEnergy() < fLowEnergyLimitForHPN ) return false; 00083 return (1 < Z); 00084 } 00085 00086 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 00087 00088 G4bool G4NeutronHPBGGNucleonInelasticXS::IsIsoApplicable(const G4DynamicParticle* dp, 00089 G4int Z, G4int A, 00090 const G4Element*, 00091 const G4Material*) 00092 { 00093 if ( dp->GetKineticEnergy() < fLowEnergyLimitForHPN ) return false; 00094 return (1 == Z && 2 >= A); 00095 } 00096 00097 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......