41 if (crossSection < 0.0)
43 G4Exception(
"G4InteractionLawPhysical::SetPhysicalCrossSection(..)",
45 "Cross-section value passed is negative. It is set to zero !");
48 fCrossSectionDefined =
true;
49 fCrossSection = crossSection;
55 if (!fCrossSectionDefined)
57 G4Exception(
"G4InteractionLawPhysical::ComputeEffectiveCrossSection(..)",
59 "Cross-section value requested, but has not been defined yet. Assumes 0 !");
67 if (!fCrossSectionDefined)
69 G4Exception(
"G4InteractionLawPhysical::ComputeNonInteractionProbability(..)",
71 "Non interaction probabitlity value requested, but cross section has not been defined yet. Assumes it to be 0 !");
74 if ( fCrossSection == 0.0 )
return 1.0;
75 else return std::exp(-fCrossSection*stepLength);
80 if ( !fCrossSectionDefined || fCrossSection < 0.0 )
84 "Trying to sample while cross-section is not defined or < 0 !");
86 if ( fCrossSection == 0.0 )
return DBL_MAX;
89 return fNumberOfInteractionLength/fCrossSection;
95 fNumberOfInteractionLength -= truePathLength*fCrossSection;
97 if ( fNumberOfInteractionLength < 0 )
100 ed <<
" Negative number of interaction length for `" <<
GetName()
101 <<
"' " << fNumberOfInteractionLength <<
", set it to zero !" <<
G4endl;
102 G4Exception(
"G4InteractionLawPhysical::UpdateInteractionLengthForStep(...)",
104 fNumberOfInteractionLength = 0.;
106 return fNumberOfInteractionLength/fCrossSection;
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
virtual G4double SampleInteractionLength()
virtual G4double UpdateInteractionLengthForStep(G4double truePathLength)
void SetPhysicalCrossSection(G4double crossSection)
virtual ~G4InteractionLawPhysical()
virtual G4double ComputeNonInteractionProbabilityAt(G4double length) const
G4InteractionLawPhysical(const G4String &name="exponentialLaw")
virtual G4double ComputeEffectiveCrossSectionAt(G4double length) const
const G4String & GetName() const
G4VBiasingInteractionLaw(const G4String &name)