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

#include <G4ILawCommonTruncatedExp.hh>

+ Inheritance diagram for G4ILawCommonTruncatedExp:

Public Member Functions

 G4ILawCommonTruncatedExp (const G4String &name="expSharedForceInteractionLaw")
 
virtual ~G4ILawCommonTruncatedExp ()
 
virtual G4bool IsSingular () const
 
virtual G4bool IsEffectiveCrossSectionInfinite () const
 
virtual G4double ComputeEffectiveCrossSectionAt (G4double length) const
 
virtual G4double ComputeNonInteractionProbabilityAt (G4double length) const
 
void SetForceCrossSection (G4double xs)
 
void SetSelectedProcessXSfraction (G4double fXS)
 
G4double SetSelectedProcessXSfraction () const
 
void SetMaximumDistance (G4double d)
 
G4double GetMaximumDistance () const
 
G4double GetInteractionDistance () const
 
- Public Member Functions inherited from G4VBiasingInteractionLaw
 G4VBiasingInteractionLaw (const G4String &name)
 
virtual ~G4VBiasingInteractionLaw ()=default
 
const G4StringGetName () const
 
G4double Sample ()
 
G4double UpdateForStep (G4double truePathLength)
 
G4double GetSampledInteractionLength () const
 

Detailed Description

Definition at line 44 of file G4ILawCommonTruncatedExp.hh.

Constructor & Destructor Documentation

◆ G4ILawCommonTruncatedExp()

G4ILawCommonTruncatedExp::G4ILawCommonTruncatedExp ( const G4String & name = "expSharedForceInteractionLaw")

Definition at line 36 of file G4ILawCommonTruncatedExp.cc.

38 fExpInteractionLaw("expLawFor"+name)
39{}
G4VBiasingInteractionLaw(const G4String &name)

◆ ~G4ILawCommonTruncatedExp()

G4ILawCommonTruncatedExp::~G4ILawCommonTruncatedExp ( )
virtual

Definition at line 41 of file G4ILawCommonTruncatedExp.cc.

42{}

Member Function Documentation

◆ ComputeEffectiveCrossSectionAt()

G4double G4ILawCommonTruncatedExp::ComputeEffectiveCrossSectionAt ( G4double length) const
virtual

Implements G4VBiasingInteractionLaw.

Definition at line 44 of file G4ILawCommonTruncatedExp.cc.

45{
46 return fExpInteractionLaw.ComputeEffectiveCrossSectionAt( distance ) * fSelectedProcessXSfraction;
47}

◆ ComputeNonInteractionProbabilityAt()

G4double G4ILawCommonTruncatedExp::ComputeNonInteractionProbabilityAt ( G4double length) const
virtual

Implements G4VBiasingInteractionLaw.

Definition at line 49 of file G4ILawCommonTruncatedExp.cc.

50{
51 G4double niProba = fExpInteractionLaw.ComputeNonInteractionProbabilityAt( distance );
52
53 if ( niProba <= 0.0 )
54 {
56 ed << " Negative probability for `" << GetName() << "' p = " << niProba << " distance = " << distance << " !!! " << G4endl;
57 G4Exception(" G4ILawCommonTruncatedExp::ComputeNonInteractionProbabilityAt(...)",
58 "BIAS.GEN.08", JustWarning, ed);
59 }
60
61 return niProba;
62}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
double G4double
Definition G4Types.hh:83
#define G4endl
Definition G4ios.hh:67
const G4String & GetName() const

◆ GetInteractionDistance()

G4double G4ILawCommonTruncatedExp::GetInteractionDistance ( ) const
inline

Definition at line 69 of file G4ILawCommonTruncatedExp.hh.

70 { return fExpInteractionLaw.GetInteractionDistance(); }

◆ GetMaximumDistance()

G4double G4ILawCommonTruncatedExp::GetMaximumDistance ( ) const
inline

Definition at line 67 of file G4ILawCommonTruncatedExp.hh.

68 { return fExpInteractionLaw.GetMaximumDistance(); }

◆ IsEffectiveCrossSectionInfinite()

virtual G4bool G4ILawCommonTruncatedExp::IsEffectiveCrossSectionInfinite ( ) const
inlinevirtual

Reimplemented from G4VBiasingInteractionLaw.

Definition at line 53 of file G4ILawCommonTruncatedExp.hh.

54 { return fExpInteractionLaw.IsEffectiveCrossSectionInfinite(); }

◆ IsSingular()

virtual G4bool G4ILawCommonTruncatedExp::IsSingular ( ) const
inlinevirtual

Reimplemented from G4VBiasingInteractionLaw.

Definition at line 51 of file G4ILawCommonTruncatedExp.hh.

52 { return fExpInteractionLaw.IsSingular(); }

◆ SetForceCrossSection()

void G4ILawCommonTruncatedExp::SetForceCrossSection ( G4double xs)
inline

Definition at line 59 of file G4ILawCommonTruncatedExp.hh.

60 { fExpInteractionLaw.SetForceCrossSection( xs ); }

◆ SetMaximumDistance()

void G4ILawCommonTruncatedExp::SetMaximumDistance ( G4double d)
inline

Definition at line 65 of file G4ILawCommonTruncatedExp.hh.

66 { fExpInteractionLaw.SetMaximumDistance(d); }

◆ SetSelectedProcessXSfraction() [1/2]

G4double G4ILawCommonTruncatedExp::SetSelectedProcessXSfraction ( ) const
inline

Definition at line 63 of file G4ILawCommonTruncatedExp.hh.

64 { return fSelectedProcessXSfraction; }

◆ SetSelectedProcessXSfraction() [2/2]

void G4ILawCommonTruncatedExp::SetSelectedProcessXSfraction ( G4double fXS)
inline

Definition at line 61 of file G4ILawCommonTruncatedExp.hh.

62 { fSelectedProcessXSfraction = fXS; }

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