Commit 689fd4d4 authored by Peter Eastman's avatar Peter Eastman
Browse files

All options for StateDataReporter default to False

parent 5b5e2cb6
...@@ -43,7 +43,7 @@ class StateDataReporter(object): ...@@ -43,7 +43,7 @@ class StateDataReporter(object):
written in comma-separated-value (CSV) format, but you can specify a different separator to use. written in comma-separated-value (CSV) format, but you can specify a different separator to use.
""" """
def __init__(self, file, reportInterval, step=True, time=True, potentialEnergy=False, kineticEnergy=False, totalEnergy=False, temperature=False, volume=False, density=False, separator=','): def __init__(self, file, reportInterval, step=False, time=False, potentialEnergy=False, kineticEnergy=False, totalEnergy=False, temperature=False, volume=False, density=False, separator=','):
"""Create a StateDataReporter. """Create a StateDataReporter.
Parameters: Parameters:
......
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