Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
6c15e603
Commit
6c15e603
authored
Jun 24, 2011
by
Mark Friedrichs
Browse files
Added Born radii switching for GBVI
parent
47e03b07
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
392 additions
and
12 deletions
+392
-12
platforms/reference/src/ReferenceKernels.cpp
platforms/reference/src/ReferenceKernels.cpp
+3
-0
platforms/reference/src/gbsa/CpuGBVI.cpp
platforms/reference/src/gbsa/CpuGBVI.cpp
+184
-8
platforms/reference/src/gbsa/CpuGBVI.h
platforms/reference/src/gbsa/CpuGBVI.h
+44
-0
platforms/reference/src/gbsa/GBVIParameters.cpp
platforms/reference/src/gbsa/GBVIParameters.cpp
+80
-4
platforms/reference/src/gbsa/GBVIParameters.h
platforms/reference/src/gbsa/GBVIParameters.h
+81
-0
No files found.
platforms/reference/src/ReferenceKernels.cpp
View file @
6c15e603
...
@@ -877,6 +877,9 @@ void ReferenceCalcGBVIForceKernel::initialize(const System& system, const GBVIFo
...
@@ -877,6 +877,9 @@ void ReferenceCalcGBVIForceKernel::initialize(const System& system, const GBVIFo
gBVIParameters
->
setScaledRadii
(
scaledRadii
);
gBVIParameters
->
setScaledRadii
(
scaledRadii
);
gBVIParameters
->
setSolventDielectric
(
static_cast
<
RealOpenMM
>
(
force
.
getSolventDielectric
()));
gBVIParameters
->
setSolventDielectric
(
static_cast
<
RealOpenMM
>
(
force
.
getSolventDielectric
()));
gBVIParameters
->
setSoluteDielectric
(
static_cast
<
RealOpenMM
>
(
force
.
getSoluteDielectric
()));
gBVIParameters
->
setSoluteDielectric
(
static_cast
<
RealOpenMM
>
(
force
.
getSoluteDielectric
()));
gBVIParameters
->
setBornRadiusScalingMethod
(
force
.
getBornRadiusScalingMethod
());
gBVIParameters
->
setQuinticUpperBornRadiusLimit
(
static_cast
<
RealOpenMM
>
(
force
.
getQuinticUpperBornRadiusLimit
()));
gBVIParameters
->
setQuinticLowerLimitFactor
(
static_cast
<
RealOpenMM
>
(
force
.
getQuinticLowerLimitFactor
()));
if
(
force
.
getNonbondedMethod
()
!=
GBVIForce
::
NoCutoff
)
if
(
force
.
getNonbondedMethod
()
!=
GBVIForce
::
NoCutoff
)
gBVIParameters
->
setUseCutoff
(
static_cast
<
RealOpenMM
>
(
force
.
getCutoffDistance
()));
gBVIParameters
->
setUseCutoff
(
static_cast
<
RealOpenMM
>
(
force
.
getCutoffDistance
()));
isPeriodic
=
(
force
.
getNonbondedMethod
()
==
GBVIForce
::
CutoffPeriodic
);
isPeriodic
=
(
force
.
getNonbondedMethod
()
==
GBVIForce
::
CutoffPeriodic
);
...
...
platforms/reference/src/gbsa/CpuGBVI.cpp
View file @
6c15e603
...
@@ -130,6 +130,166 @@ void CpuGBVI::setGBVIParameters( GBVIParameters* gbviParameters ){
...
@@ -130,6 +130,166 @@ void CpuGBVI::setGBVIParameters( GBVIParameters* gbviParameters ){
// ---------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
_gbviParameters
=
gbviParameters
;
_gbviParameters
=
gbviParameters
;
if
(
_switchDeriviative
.
size
()
<=
0
){
_switchDeriviative
.
resize
(
_gbviParameters
->
getNumberOfAtoms
());
}
}
/**---------------------------------------------------------------------------------------
Return OBC chain derivative: size = _obcParameters->getNumberOfAtoms()
On first call, memory for array is allocated if not set
@return array
--------------------------------------------------------------------------------------- */
std
::
vector
<
RealOpenMM
>&
CpuGBVI
::
getSwitchDeriviative
(
void
){
// ---------------------------------------------------------------------------------------
// static const char* methodName = "\nCpuGBVI::getSwitchDeriviative";
// ---------------------------------------------------------------------------------------
if
(
_switchDeriviative
.
size
()
<=
0
){
_switchDeriviative
.
resize
(
_gbviParameters
->
getNumberOfAtoms
());
}
return
_switchDeriviative
;
}
/**---------------------------------------------------------------------------------------
Return switching function derivative
@return array
--------------------------------------------------------------------------------------- */
/*
std::vector<RealOpenMM> CpuGBVI::getSwitchDeriviativeConst( void ) const {
return _switchDeriviative;
}
*/
/**---------------------------------------------------------------------------------------
Compute quintic spline value and associated derviative
@param x value to compute spline at
@param rl lower cutoff value
@param ru upper cutoff value
@param outValue value of spline at x
@param outDerivative value of derivative of spline at x
--------------------------------------------------------------------------------------- */
#define GBVIDebug 0
void
CpuGBVI
::
quinticSpline
(
RealOpenMM
x
,
RealOpenMM
rl
,
RealOpenMM
ru
,
RealOpenMM
*
outValue
,
RealOpenMM
*
outDerivative
){
// ---------------------------------------------------------------------------------------
static
const
RealOpenMM
one
=
(
RealOpenMM
)
1.0
;
static
const
RealOpenMM
minusSix
=
(
RealOpenMM
)
-
6.0
;
static
const
RealOpenMM
minusTen
=
(
RealOpenMM
)
-
10.0
;
static
const
RealOpenMM
minusThirty
=
(
RealOpenMM
)
-
30.0
;
static
const
RealOpenMM
fifteen
=
(
RealOpenMM
)
15.0
;
static
const
RealOpenMM
sixty
=
(
RealOpenMM
)
60.0
;
// static const char* methodName = "CpuGBVI::quinticSpline";
// ---------------------------------------------------------------------------------------
RealOpenMM
numerator
=
x
-
rl
;
RealOpenMM
denominator
=
ru
-
rl
;
RealOpenMM
ratio
=
numerator
/
denominator
;
RealOpenMM
ratio2
=
ratio
*
ratio
;
RealOpenMM
ratio3
=
ratio2
*
ratio
;
*
outValue
=
one
+
ratio3
*
(
minusTen
+
fifteen
*
ratio
+
minusSix
*
ratio2
);
*
outDerivative
=
ratio2
*
(
minusThirty
+
sixty
*
ratio
+
minusThirty
*
ratio2
)
/
denominator
;
}
/**---------------------------------------------------------------------------------------
Compute Born radii based on Eq. 3 of Labute paper [JCC 29 p. 1693-1698 2008])
and quintic splice switching function
@param atomicRadius3 atomic radius cubed
@param bornSum Born sum (volume integral)
@param gbviParameters Gbvi parameters (parameters used in spline
QuinticLowerLimitFactor & QuinticUpperBornRadiusLimit)
@param bornRadius output Born radius
@param switchDeriviative output switching function deriviative
--------------------------------------------------------------------------------------- */
#define GBVIDebug 0
void
CpuGBVI
::
computeBornRadiiUsingQuinticSpline
(
RealOpenMM
atomicRadius3
,
RealOpenMM
bornSum
,
GBVIParameters
*
gbviParameters
,
RealOpenMM
*
bornRadius
,
RealOpenMM
*
switchDeriviative
){
// ---------------------------------------------------------------------------------------
static
const
RealOpenMM
zero
=
(
RealOpenMM
)
0.0
;
static
const
RealOpenMM
one
=
(
RealOpenMM
)
1.0
;
static
const
RealOpenMM
minusOne
=
(
RealOpenMM
)
-
1.0
;
static
const
RealOpenMM
minusThree
=
(
RealOpenMM
)
-
3.0
;
static
const
RealOpenMM
oneEighth
=
(
RealOpenMM
)
0.125
;
static
const
RealOpenMM
minusOneThird
=
(
RealOpenMM
)
(
-
1.0
/
3.0
);
static
const
RealOpenMM
three
=
(
RealOpenMM
)
3.0
;
static
const
char
*
methodName
=
"CpuGBVI::computeBornRadiiUsingQuinticSpline"
;
// ---------------------------------------------------------------------------------------
#if( GBVIDebug == 1 )
FILE
*
logFile
=
stderr
;
#endif
// R = [ S(V)*(A - V) ]**(-1/3)
// S(V) = 1 V < L
// S(V) = qSpline + U/(A-V) L < V < A
// S(V) = U/(A-V) U < V
// dR/dr = (-1/3)*[ S(V)*(A - V) ]**(-4/3)*[ d{ S(V)*(A-V) }/dr
// d{ S(V)*(A-V) }/dr = (dV/dr)*[ (A-V)*dS/dV - S(V) ]
// (A - V)*dS/dV - S(V) = 0 - 1 V < L
// (A - V)*dS/dV - S(V) = (A-V)*d(qSpline) + (A-V)*U/(A-V)**2 - qSpline - U/(A-V)
// = (A-V)*d(qSpline) - qSpline L < V < A**(-3)
// (A - V)*dS/dV - S(V) = (A-V)*U*/(A-V)**2 - U/(A-V) = 0 U < V
RealOpenMM
splineL
=
gbviParameters
->
getQuinticLowerLimitFactor
()
*
atomicRadius3
;
RealOpenMM
sum
;
if
(
bornSum
>
splineL
){
if
(
bornSum
<
atomicRadius3
){
RealOpenMM
splineValue
,
splineDerivative
;
quinticSpline
(
bornSum
,
splineL
,
atomicRadius3
,
&
splineValue
,
&
splineDerivative
);
sum
=
(
atomicRadius3
-
bornSum
)
*
splineValue
+
gbviParameters
->
getQuinticUpperBornRadiusLimit
();
*
switchDeriviative
=
splineValue
-
(
atomicRadius3
-
bornSum
)
*
splineDerivative
;
#if( GBVIDebug == 1 )
(
void
)
fprintf
(
logFile
,
" Qv=%14.6e splnDrvtv=%14.6e spline[%10.3e %10.3e] "
,
splineValue
,
splineDerivative
,
splineL
,
gbviParameters
->
getQuinticUpperBornRadiusLimit
()
);
#endif
}
else
{
sum
=
gbviParameters
->
getQuinticUpperBornRadiusLimit
();
*
switchDeriviative
=
zero
;
}
}
else
{
sum
=
atomicRadius3
-
bornSum
;
*
switchDeriviative
=
one
;
}
*
bornRadius
=
POW
(
sum
,
minusOneThird
);
}
}
/**---------------------------------------------------------------------------------------
/**---------------------------------------------------------------------------------------
...
@@ -164,11 +324,14 @@ void CpuGBVI::computeBornRadii( vector<RealVec>& atomCoordinates, vector<RealOpe
...
@@ -164,11 +324,14 @@ void CpuGBVI::computeBornRadii( vector<RealVec>& atomCoordinates, vector<RealOpe
RealOpenMM
*
atomicRadii
=
gbviParameters
->
getAtomicRadii
();
RealOpenMM
*
atomicRadii
=
gbviParameters
->
getAtomicRadii
();
const
RealOpenMM
*
scaledRadii
=
gbviParameters
->
getScaledRadii
();
const
RealOpenMM
*
scaledRadii
=
gbviParameters
->
getScaledRadii
();
std
::
vector
<
RealOpenMM
>&
switchDeriviatives
=
getSwitchDeriviative
();
// ---------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
#if( GBVIDebug == 1 )
#if( GBVIDebug == 1 )
FILE
*
logFile
=
stderr
;
FILE
*
logFile
=
stderr
;
(
void
)
fprintf
(
logFile
,
"
\n
%s
\n
"
,
methodName
);
(
void
)
fprintf
(
logFile
,
"
\n
%s scalingMethdd=%d
\n
"
,
methodName
,
_gbviParameters
->
getBornRadiusScalingMethod
()
);
(
void
)
fprintf
(
logFile
,
"Lower=%14.6e Upper=%10.3e
\n
"
,
gbviParameters
->
getQuinticLowerLimitFactor
(),
gbviParameters
->
getQuinticUpperBornRadiusLimit
()
);
#endif
#endif
// calculate Born radii
// calculate Born radii
...
@@ -208,13 +371,25 @@ if( atomI == 1568 || atomJ == 1568 ){
...
@@ -208,13 +371,25 @@ if( atomI == 1568 || atomJ == 1568 ){
}
}
#if( GBVIDebug == 1 )
#if( GBVIDebug == 1 )
(
void
)
fprintf
(
logFile
,
"%d Born radius sum=%14.6e %14.6e %14.6e "
,
atomI
,
sum
,
POW
(
radiusI
,
minusThree
),
(
POW
(
radiusI
,
minusThree
)
-
sum
)
);
(
void
)
fprintf
(
logFile
,
"%d Born radius sum=%14.6e %14.6e %14.6e q=%d "
,
atomI
,
sum
,
POW
(
radiusI
,
minusThree
),
(
POW
(
radiusI
,
minusThree
)
-
sum
),
GBVIParameters
::
QuinticSpline
);
#endif
#endif
sum
=
POW
(
radiusI
,
minusThree
)
-
sum
;
bornRadii
[
atomI
]
=
POW
(
sum
,
minusOneThird
);
RealOpenMM
atomicRadius3
=
POW
(
radiusI
,
minusThree
);
if
(
_gbviParameters
->
getBornRadiusScalingMethod
()
==
GBVIParameters
::
QuinticSpline
){
sum
=
atomicRadius3
-
sum
;
bornRadii
[
atomI
]
=
POW
(
sum
,
minusOneThird
);
switchDeriviatives
[
atomI
]
=
one
;
}
else
{
RealOpenMM
bornRadius
,
switchDeriviative
;
computeBornRadiiUsingQuinticSpline
(
atomicRadius3
,
sum
,
gbviParameters
,
&
bornRadius
,
&
switchDeriviative
);
bornRadii
[
atomI
]
=
bornRadius
;
switchDeriviatives
[
atomI
]
=
switchDeriviative
;
}
#if( GBVIDebug == 1 )
#if( GBVIDebug == 1 )
(
void
)
fprintf
(
logFile
,
"br=%14.6e
\n
"
,
atomI
,
bornRadii
[
atomI
]
);
(
void
)
fprintf
(
logFile
,
"
br=%14.6e
swDeriv=%14.6e
\n
"
,
atomI
,
bornRadii
[
atomI
]
,
switchDeriviatives
[
atomI
]
);
#endif
#endif
}
}
...
@@ -718,8 +893,9 @@ if( atomI == 0 ){
...
@@ -718,8 +893,9 @@ if( atomI == 0 ){
(void) fflush( logFile );
(void) fflush( logFile );
#endif
#endif
const
RealOpenMM
*
scaledRadii
=
gbviParameters
->
getScaledRadii
();
const
RealOpenMM
*
scaledRadii
=
gbviParameters
->
getScaledRadii
();
RealOpenMM
stupidFactor
=
three
;
std
::
vector
<
RealOpenMM
>&
switchDeriviative
=
getSwitchDeriviative
();
RealOpenMM
stupidFactor
=
three
;
for
(
int
atomI
=
0
;
atomI
<
numberOfAtoms
;
atomI
++
){
for
(
int
atomI
=
0
;
atomI
<
numberOfAtoms
;
atomI
++
){
RealOpenMM
R
=
atomicRadii
[
atomI
];
RealOpenMM
R
=
atomicRadii
[
atomI
];
...
@@ -730,7 +906,7 @@ if( atomI == 0 ){
...
@@ -730,7 +906,7 @@ if( atomI == 0 ){
bornForces
[
atomI
]
+=
(
stupidFactor
*
gammaParameters
[
atomI
]
*
ratio
*
ratio
*
ratio
)
/
bornRadii
[
atomI
];
bornForces
[
atomI
]
+=
(
stupidFactor
*
gammaParameters
[
atomI
]
*
ratio
*
ratio
*
ratio
)
/
bornRadii
[
atomI
];
RealOpenMM
b2
=
bornRadii
[
atomI
]
*
bornRadii
[
atomI
];
RealOpenMM
b2
=
bornRadii
[
atomI
]
*
bornRadii
[
atomI
];
bornForces
[
atomI
]
*=
oneThird
*
b2
*
b2
;
bornForces
[
atomI
]
*=
switchDeriviative
[
atomI
]
*
oneThird
*
b2
*
b2
;
for
(
int
atomJ
=
0
;
atomJ
<
numberOfAtoms
;
atomJ
++
){
for
(
int
atomJ
=
0
;
atomJ
<
numberOfAtoms
;
atomJ
++
){
...
...
platforms/reference/src/gbsa/CpuGBVI.h
View file @
6c15e603
...
@@ -39,6 +39,7 @@ class CpuGBVI : public CpuImplicitSolvent {
...
@@ -39,6 +39,7 @@ class CpuGBVI : public CpuImplicitSolvent {
// GB/VI parameters
// GB/VI parameters
GBVIParameters
*
_gbviParameters
;
GBVIParameters
*
_gbviParameters
;
std
::
vector
<
RealOpenMM
>
_switchDeriviative
;
// initialize data members (more than
// initialize data members (more than
// one constructor, so centralize intialization here)
// one constructor, so centralize intialization here)
...
@@ -295,6 +296,49 @@ class CpuGBVI : public CpuImplicitSolvent {
...
@@ -295,6 +296,49 @@ class CpuGBVI : public CpuImplicitSolvent {
static
double
dL_dxD
(
double
r
,
double
x
,
double
S
);
static
double
dL_dxD
(
double
r
,
double
x
,
double
S
);
/**---------------------------------------------------------------------------------------
Return OBC chain derivative: size = _obcParameters->getNumberOfAtoms()
On first call, memory for array is allocated if not set
@return array
--------------------------------------------------------------------------------------- */
std
::
vector
<
RealOpenMM
>&
getSwitchDeriviative
(
void
);
/**---------------------------------------------------------------------------------------
Compute quintic spline value and associated derviative
@param x value to compute spline at
@param rl lower cutoff value
@param ru upper cutoff value
@param outValue value of spline at x
@param outDerivative value of derivative of spline at x
--------------------------------------------------------------------------------------- */
void
quinticSpline
(
RealOpenMM
x
,
RealOpenMM
rl
,
RealOpenMM
ru
,
RealOpenMM
*
outValue
,
RealOpenMM
*
outDerivative
);
/**---------------------------------------------------------------------------------------
Compute Born radii based on Eq. 3 of Labute paper [JCC 29 p. 1693-1698 2008])
and quintic splice switching function
@param atomicRadius3 atomic radius cubed
@param bornSum Born sum (volume integral)
@param gbviParameters Gbvi parameters (parameters used in spline
QuinticLowerLimitFactor & QuinticUpperBornRadiusLimit)
@param bornRadius output Born radius
@param switchDeriviative output switching function deriviative
--------------------------------------------------------------------------------------- */
void
computeBornRadiiUsingQuinticSpline
(
RealOpenMM
atomicRadius3
,
RealOpenMM
bornSum
,
GBVIParameters
*
gbviParameters
,
RealOpenMM
*
bornRadius
,
RealOpenMM
*
switchDeriviative
);
};
};
// ---------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
...
...
platforms/reference/src/gbsa/GBVIParameters.cpp
View file @
6c15e603
...
@@ -104,10 +104,13 @@ GBVIParameters::GBVIParameters( int numberOfAtoms ) : ImplicitSolventParameters(
...
@@ -104,10 +104,13 @@ GBVIParameters::GBVIParameters( int numberOfAtoms ) : ImplicitSolventParameters(
// ---------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------
_ownScaledRadii
=
0
;
_ownScaledRadii
=
0
;
_scaledRadii
=
NULL
;
_scaledRadii
=
NULL
;
_ownGammaParameters
=
0
;
_ownGammaParameters
=
0
;
_gammaParameters
=
NULL
;
_gammaParameters
=
NULL
;
_bornRadiusScalingMethod
=
0
;
_quinticLowerLimitFactor
=
0.8
f
;
_quinticUpperBornRadiusLimit
=
5.0
f
;
}
}
...
@@ -537,3 +540,76 @@ RealOpenMM GBVIParameters::getTau( void ) const {
...
@@ -537,3 +540,76 @@ RealOpenMM GBVIParameters::getTau( void ) const {
return
tau
;
return
tau
;
}
}
/**---------------------------------------------------------------------------------------
Get bornRadiusScalingMethod
@return bornRadiusScalingMethod
--------------------------------------------------------------------------------------- */
int
GBVIParameters
::
getBornRadiusScalingMethod
(
void
)
const
{
return
_bornRadiusScalingMethod
;
}
/**---------------------------------------------------------------------------------------
Set bornRadiusScalingMethod
@param bornRadiusScalingMethod bornRadiusScalingMethod
--------------------------------------------------------------------------------------- */
void
GBVIParameters
::
setBornRadiusScalingMethod
(
int
bornRadiusScalingMethod
){
_bornRadiusScalingMethod
=
bornRadiusScalingMethod
;
}
/**---------------------------------------------------------------------------------------
Get quinticLowerLimitFactor
@return quinticLowerLimitFactor
--------------------------------------------------------------------------------------- */
RealOpenMM
GBVIParameters
::
getQuinticLowerLimitFactor
(
void
)
const
{
return
_quinticLowerLimitFactor
;
}
/**---------------------------------------------------------------------------------------
Set quinticLowerLimitFactor
@param quinticLowerLimitFactor quinticLowerLimitFactor
--------------------------------------------------------------------------------------- */
void
GBVIParameters
::
setQuinticLowerLimitFactor
(
RealOpenMM
quinticLowerLimitFactor
){
_quinticLowerLimitFactor
=
quinticLowerLimitFactor
;
}
/**---------------------------------------------------------------------------------------
Get quinticUpperBornRadiusLimit
@return quinticUpperBornRadiusLimit
--------------------------------------------------------------------------------------- */
RealOpenMM
GBVIParameters
::
getQuinticUpperBornRadiusLimit
(
void
)
const
{
return
_quinticUpperBornRadiusLimit
;
}
/**---------------------------------------------------------------------------------------
Set quinticUpperBornRadiusLimit
@param quinticUpperBornRadiusLimit quinticUpperBornRadiusLimit
--------------------------------------------------------------------------------------- */
void
GBVIParameters
::
setQuinticUpperBornRadiusLimit
(
RealOpenMM
quinticUpperBornRadiusLimit
){
_quinticUpperBornRadiusLimit
=
quinticUpperBornRadiusLimit
;
}
platforms/reference/src/gbsa/GBVIParameters.h
View file @
6c15e603
...
@@ -36,6 +36,24 @@ class GBVIParameters : public ImplicitSolventParameters {
...
@@ -36,6 +36,24 @@ class GBVIParameters : public ImplicitSolventParameters {
static
const
std
::
string
ParameterFileName
;
static
const
std
::
string
ParameterFileName
;
/**
* This is an enumeration of the different methods that may be used for scaling of the Born radii.
*/
enum
BornRadiusScalingMethod
{
/**
* No scaling method is applied.
*/
NoScaling
=
0
,
/**
* Use the method outlined in Proteins 55, 383-394 (2004), Eq. 6
*/
Tanh
=
2
,
/**
* Use quintic spline scaling function
*/
QuinticSpline
=
1
};
private:
private:
// scaled radii
// scaled radii
...
@@ -54,6 +72,10 @@ class GBVIParameters : public ImplicitSolventParameters {
...
@@ -54,6 +72,10 @@ class GBVIParameters : public ImplicitSolventParameters {
RealOpenMM
periodicBoxSize
[
3
];
RealOpenMM
periodicBoxSize
[
3
];
RealOpenMM
cutoffDistance
;
RealOpenMM
cutoffDistance
;
int
_bornRadiusScalingMethod
;
RealOpenMM
_quinticLowerLimitFactor
;
RealOpenMM
_quinticUpperBornRadiusLimit
;
public:
public:
/**---------------------------------------------------------------------------------------
/**---------------------------------------------------------------------------------------
...
@@ -253,6 +275,65 @@ class GBVIParameters : public ImplicitSolventParameters {
...
@@ -253,6 +275,65 @@ class GBVIParameters : public ImplicitSolventParameters {
RealOpenMM
getTau
(
void
)
const
;
RealOpenMM
getTau
(
void
)
const
;
/**---------------------------------------------------------------------------------------
Get bornRadiusScalingMethod
@return bornRadiusScalingMethod
--------------------------------------------------------------------------------------- */
int
getBornRadiusScalingMethod
(
void
)
const
;
/**---------------------------------------------------------------------------------------
Set bornRadiusScalingMethod
@param bornRadiusScalingMethod bornRadiusScalingMethod
--------------------------------------------------------------------------------------- */
void
setBornRadiusScalingMethod
(
int
bornRadiusScalingMethod
);
/**---------------------------------------------------------------------------------------
Get quinticLowerLimitFactor
@return quinticLowerLimitFactor
--------------------------------------------------------------------------------------- */
RealOpenMM
getQuinticLowerLimitFactor
(
void
)
const
;
/**---------------------------------------------------------------------------------------
Set quinticLowerLimitFactor
@param quinticLowerLimitFactor quinticLowerLimitFactor
--------------------------------------------------------------------------------------- */
void
setQuinticLowerLimitFactor
(
RealOpenMM
quinticLowerLimitFactor
);
/**---------------------------------------------------------------------------------------
Get quinticUpperBornRadiusLimit
@return quinticUpperBornRadiusLimit
--------------------------------------------------------------------------------------- */
RealOpenMM
getQuinticUpperBornRadiusLimit
(
void
)
const
;
/**---------------------------------------------------------------------------------------
Set quinticUpperBornRadiusLimit
@param quinticUpperBornRadiusLimit quinticUpperBornRadiusLimit
--------------------------------------------------------------------------------------- */
void
setQuinticUpperBornRadiusLimit
(
RealOpenMM
quinticUpperSplineLimit
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment