#include <G4INCLNDFParis.hh>
Inheritance diagram for G4INCL::NuclearDensityFunctions::ParisR:
Public Member Functions | |
ParisR () | |
G4double | operator() (const G4double r) const |
Compute the value of the function. |
Definition at line 56 of file G4INCLNDFParis.hh.
G4INCL::NuclearDensityFunctions::ParisR::ParisR | ( | ) | [inline] |
Definition at line 58 of file G4INCLNDFParis.hh.
00058 : // there are no free parameters in the Paris potential 00059 // We let the function go up to 17.42 fm 00060 IFunction1D(0., 17.42) 00061 {};
G4double G4INCL::NuclearDensityFunctions::ParisR::operator() | ( | const G4double | r | ) | const [inline, virtual] |
Compute the value of the function.
Implements G4INCL::IFunction1D.
Definition at line 63 of file G4INCLNDFParis.hh.
References G4INCL::DeuteronDensity::densityR().
00063 { 00064 return DeuteronDensity::densityR(r); 00065 }