"vscode:/vscode.git/clone" did not exist on "8e7c434673c9e91035450a641f39df372c0b578e"
Commit c5e909d4 authored by Mark Friedrichs's avatar Mark Friedrichs
Browse files

Missing parameter

parent eafdce76
......@@ -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);
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment