Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4InteractionLawPhysical Class Reference

#include <G4InteractionLawPhysical.hh>

+ Inheritance diagram for G4InteractionLawPhysical:

Public Member Functions

 G4InteractionLawPhysical (const G4String &name="exponentialLaw")
 
virtual ~G4InteractionLawPhysical ()
 
void SetPhysicalCrossSection (G4double crossSection)
 
G4double GetPhysicalCrossSection () const
 
virtual G4double ComputeEffectiveCrossSectionAt (G4double length) const
 
virtual G4double ComputeNonInteractionProbabilityAt (G4double length) const
 
virtual G4double SampleInteractionLength ()
 
virtual G4double UpdateInteractionLengthForStep (G4double truePathLength)
 
- Public Member Functions inherited from G4VBiasingInteractionLaw
 G4VBiasingInteractionLaw (const G4String &name)
 
virtual ~G4VBiasingInteractionLaw ()=default
 
const G4StringGetName () const
 
virtual G4bool IsSingular () const
 
virtual G4bool IsEffectiveCrossSectionInfinite () const
 
G4double Sample ()
 
G4double UpdateForStep (G4double truePathLength)
 
G4double GetSampledInteractionLength () const
 

Detailed Description

Definition at line 40 of file G4InteractionLawPhysical.hh.

Constructor & Destructor Documentation

◆ G4InteractionLawPhysical()

G4InteractionLawPhysical::G4InteractionLawPhysical ( const G4String & name = "exponentialLaw")

Definition at line 32 of file G4InteractionLawPhysical.cc.

34{}
G4VBiasingInteractionLaw(const G4String &name)

◆ ~G4InteractionLawPhysical()

G4InteractionLawPhysical::~G4InteractionLawPhysical ( )
virtual

Definition at line 36 of file G4InteractionLawPhysical.cc.

37{}

Member Function Documentation

◆ ComputeEffectiveCrossSectionAt()

G4double G4InteractionLawPhysical::ComputeEffectiveCrossSectionAt ( G4double length) const
virtual

Implements G4VBiasingInteractionLaw.

Definition at line 52 of file G4InteractionLawPhysical.cc.

54{
55 if (!fCrossSectionDefined)
56 {
57 G4Exception("G4InteractionLawPhysical::ComputeEffectiveCrossSection(..)",
58 "BIAS.GEN.15", JustWarning,
59 "Cross-section value requested, but has not been defined yet. Assumes 0 !");
60 }
61 return fCrossSection;
62}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ ComputeNonInteractionProbabilityAt()

G4double G4InteractionLawPhysical::ComputeNonInteractionProbabilityAt ( G4double length) const
virtual

Implements G4VBiasingInteractionLaw.

Definition at line 64 of file G4InteractionLawPhysical.cc.

66{
67 if (!fCrossSectionDefined)
68 {
69 G4Exception("G4InteractionLawPhysical::ComputeNonInteractionProbability(..)",
70 "BIAS.GEN.16", JustWarning,
71 "Non interaction probabitlity value requested, but cross section has not been defined yet. Assumes it to be 0 !");
72 }
73 // -- allows zero cross-section case, by convention:
74 if ( fCrossSection == 0.0 ) return 1.0;
75 else return std::exp(-fCrossSection*stepLength);
76}

◆ GetPhysicalCrossSection()

G4double G4InteractionLawPhysical::GetPhysicalCrossSection ( ) const
inline

Definition at line 48 of file G4InteractionLawPhysical.hh.

48{ return fCrossSection; }

◆ SampleInteractionLength()

G4double G4InteractionLawPhysical::SampleInteractionLength ( )
virtual

Implements G4VBiasingInteractionLaw.

Definition at line 78 of file G4InteractionLawPhysical.cc.

79{
80 if ( !fCrossSectionDefined || fCrossSection < 0.0 )
81 {
82 G4Exception("G4InteractionLawPhysical::Sample(..)",
83 "BIAS.GEN.17", FatalException,
84 "Trying to sample while cross-section is not defined or < 0 !");
85 }
86 if ( fCrossSection == 0.0 ) return DBL_MAX;
87
88 fNumberOfInteractionLength = -std::log( G4UniformRand() );
89 return fNumberOfInteractionLength/fCrossSection;
90}
@ FatalException
#define G4UniformRand()
Definition Randomize.hh:52
#define DBL_MAX
Definition templates.hh:62

◆ SetPhysicalCrossSection()

void G4InteractionLawPhysical::SetPhysicalCrossSection ( G4double crossSection)

Definition at line 39 of file G4InteractionLawPhysical.cc.

40{
41 if (crossSection < 0.0)
42 {
43 G4Exception("G4InteractionLawPhysical::SetPhysicalCrossSection(..)",
44 "BIAS.GEN.14", JustWarning,
45 "Cross-section value passed is negative. It is set to zero !");
46 crossSection = 0.0;
47 }
48 fCrossSectionDefined = true;
49 fCrossSection = crossSection;
50}

◆ UpdateInteractionLengthForStep()

G4double G4InteractionLawPhysical::UpdateInteractionLengthForStep ( G4double truePathLength)
virtual

Reimplemented from G4VBiasingInteractionLaw.

Definition at line 92 of file G4InteractionLawPhysical.cc.

94{
95 fNumberOfInteractionLength -= truePathLength*fCrossSection;
96
97 if ( fNumberOfInteractionLength < 0 )
98 {
100 ed << " Negative number of interaction length for `" << GetName()
101 << "' " << fNumberOfInteractionLength << ", set it to zero !" << G4endl;
102 G4Exception("G4InteractionLawPhysical::UpdateInteractionLengthForStep(...)",
103 "BIAS.GEN.13", JustWarning, ed);
104 fNumberOfInteractionLength = 0.;
105 }
106 return fNumberOfInteractionLength/fCrossSection;
107}
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67
const G4String & GetName() const

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