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
c5e909d4
"platforms/cuda/tests/TestCudaCustomIntegrator.cpp" did not exist on "806232c3cccc34797b9a8baeb63da3a210c92a52"
Commit
c5e909d4
authored
Aug 04, 2011
by
Mark Friedrichs
Browse files
Missing parameter
parent
eafdce76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
plugins/freeEnergy/serialization/src/FreeEnergyNonbondedSoftcoreForceProxy.cpp
...rialization/src/FreeEnergyNonbondedSoftcoreForceProxy.cpp
+1
-1
No files found.
plugins/freeEnergy/serialization/src/FreeEnergyNonbondedSoftcoreForceProxy.cpp
View file @
c5e909d4
...
...
@@ -58,7 +58,7 @@ void NonbondedSoftcoreForceProxy::serialize(const void* object, SerializationNod
for
(
int
i
=
0
;
i
<
force
.
getNumExceptions
();
i
++
)
{
int
particle1
,
particle2
;
double
chargeProd
,
sigma
,
epsilon
,
softcoreLJLambda
;
force
.
getExceptionParameters
(
i
,
particle1
,
particle2
,
chargeProd
,
sigma
,
epsilon
);
force
.
getExceptionParameters
(
i
,
particle1
,
particle2
,
chargeProd
,
sigma
,
epsilon
,
softcoreLJLambda
);
exceptions
.
createChildNode
(
"Exception"
).
setIntProperty
(
"p1"
,
particle1
).
setIntProperty
(
"p2"
,
particle2
).
setDoubleProperty
(
"q"
,
chargeProd
).
setDoubleProperty
(
"sig"
,
sigma
).
setDoubleProperty
(
"eps"
,
epsilon
).
setDoubleProperty
(
"lambda"
,
softcoreLJLambda
);
}
}
...
...
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