Commit 7b6ca364 authored by Peter Eastman's avatar Peter Eastman
Browse files

Bug fix: an argument was being processed incorrectly

parent 622e066c
...@@ -2794,7 +2794,7 @@ class AmoebaVdwGenerator: ...@@ -2794,7 +2794,7 @@ class AmoebaVdwGenerator:
# cutoff # cutoff
if ('vdwCutoff' in args): if ('vdwCutoff' in args):
force.setCutoff(float(args['vdwCutoff'])) force.setCutoff(args['vdwCutoff'])
else: else:
force.setCutoff(nonbondedCutoff) force.setCutoff(nonbondedCutoff)
......
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