#include <G4INCLNDFParis.hh>
Inheritance diagram for G4INCL::NuclearDensityFunctions::ParisP:
Public Member Functions | |
ParisP () | |
G4double | operator() (const G4double p) const |
Compute the value of the function. |
Definition at line 68 of file G4INCLNDFParis.hh.
G4INCL::NuclearDensityFunctions::ParisP::ParisP | ( | ) | [inline] |
Definition at line 70 of file G4INCLNDFParis.hh.
00070 : // there are no free parameters in the Paris potential 00071 // We let the function go up to 630 MeV/c 00072 IFunction1D(0., 630.) 00073 {};
G4double G4INCL::NuclearDensityFunctions::ParisP::operator() | ( | const G4double | p | ) | const [inline, virtual] |
Compute the value of the function.
Implements G4INCL::IFunction1D.
Definition at line 75 of file G4INCLNDFParis.hh.
References G4INCL::DeuteronDensity::densityP().
00075 { 00076 return DeuteronDensity::densityP(p); 00077 }