Geant4  10.02.p03
G4LENDInelasticCrossSection Class Reference

#include <G4LENDInelasticCrossSection.hh>

Inheritance diagram for G4LENDInelasticCrossSection:
Collaboration diagram for G4LENDInelasticCrossSection:

Public Member Functions

 G4LENDInelasticCrossSection ()
 
 G4LENDInelasticCrossSection (G4ParticleDefinition *pd)
 
 ~G4LENDInelasticCrossSection ()
 
- Public Member Functions inherited from G4LENDCrossSection
 G4LENDCrossSection (const G4String name="")
 
 ~G4LENDCrossSection ()
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int, G4int, const G4Element *, const G4Material *)
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int, G4int, const G4Isotope *, const G4Element *, const G4Material *)
 
void BuildPhysicsTable (const G4ParticleDefinition &)
 
void DumpPhysicsTable (const G4ParticleDefinition &)
 
void ChangeDefaultEvaluation (G4String name_tmp)
 
void AllowNaturalAbundanceTarget ()
 
void AllowAnyCandidateTarget ()
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
virtual G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *mat=0)
 
G4double GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=0)
 
G4double ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=0)
 
virtual G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *mat=0)
 
virtual G4Isotope * SelectIsotope (const G4Element *, G4double kinEnergy)
 
virtual void CrossSectionDescription (std::ostream &) const
 
virtual G4int GetVerboseLevel () const
 
virtual void SetVerboseLevel (G4int value)
 
G4double GetMinKinEnergy () const
 
void SetMinKinEnergy (G4double value)
 
G4double GetMaxKinEnergy () const
 
void SetMaxKinEnergy (G4double value)
 
const G4String & GetName () const
 

Private Member Functions

G4double getLENDCrossSection (G4GIDI_target *, G4double, G4double)
 

Additional Inherited Members

- Protected Member Functions inherited from G4LENDCrossSection
void create_used_target_map ()
 
G4double GetUltraLowEnergyExtrapolatedXS (G4double, G4double, G4double, G4double, G4double)
 
- Protected Member Functions inherited from G4VCrossSectionDataSet
void SetName (const G4String &)
 
- Protected Attributes inherited from G4LENDCrossSection
G4ParticleDefinition * proj
 
- Protected Attributes inherited from G4VCrossSectionDataSet
G4int verboseLevel
 

Detailed Description

Definition at line 45 of file G4LENDInelasticCrossSection.hh.

Constructor & Destructor Documentation

◆ G4LENDInelasticCrossSection() [1/2]

G4LENDInelasticCrossSection::G4LENDInelasticCrossSection ( )
inline

Definition at line 50 of file G4LENDInelasticCrossSection.hh.

51  {;};

◆ G4LENDInelasticCrossSection() [2/2]

G4LENDInelasticCrossSection::G4LENDInelasticCrossSection ( G4ParticleDefinition *  pd)
inline

Definition at line 52 of file G4LENDInelasticCrossSection.hh.

53  :G4LENDCrossSection("LENDEInelasitcCrossSection")
54  {
55  proj = pd;
56  //name = "LEND Inelastic Cross Section for ";
57  //name += proj->GetParticleName();
58  //create_used_target_map();
59  };
G4ParticleDefinition * proj
G4LENDCrossSection(const G4String name="")

◆ ~G4LENDInelasticCrossSection()

G4LENDInelasticCrossSection::~G4LENDInelasticCrossSection ( )
inline

Definition at line 61 of file G4LENDInelasticCrossSection.hh.

61 {;};
Here is the call graph for this function:

Member Function Documentation

◆ getLENDCrossSection()

G4double G4LENDInelasticCrossSection::getLENDCrossSection ( G4GIDI_target *  target,
G4double  ke,
G4double  temperature 
)
privatevirtual

Reimplemented from G4LENDCrossSection.

Definition at line 30 of file G4LENDInelasticCrossSection.cc.

31 {
32  if ( target == NULL ) return 0.0;
33 // 090407
34 // return target->getElasticCrossSection( ke/MeV , temperature )*barn;
35  //return target->getOthersCrossSectionAtE( ke/MeV , temperature )*barn;
36  G4double result = target->getOthersCrossSectionAtE( ke/MeV , temperature )*barn;
37  if ( result == 0.0 && ke/eV < 1.0e-4)
38  {
39  G4double el = 1.0e-4*eV;
40  G4double eh = 2.0e-4*eV;
41  G4double xs_el = target->getOthersCrossSectionAtE( el/MeV , temperature )*barn;
42  G4double xs_eh = target->getOthersCrossSectionAtE( eh/MeV , temperature )*barn;
43  result = GetUltraLowEnergyExtrapolatedXS( el , eh , xs_el , xs_eh , ke );
44  }
45  return result;
46 }
static const double MeV
Definition: G4SIunits.hh:211
G4double GetUltraLowEnergyExtrapolatedXS(G4double, G4double, G4double, G4double, G4double)
double getOthersCrossSectionAtE(double e_in, double temperature)
static const double eV
Definition: G4SIunits.hh:212
static const double barn
Definition: G4SIunits.hh:104
double G4double
Definition: G4Types.hh:76
Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following files: