Commit c885f3d7 authored by Jason Swails's avatar Jason Swails
Browse files

Get rid of superfluous method.

parent a6eccd99
......@@ -91,18 +91,6 @@ class PDBxReporter(PDBReporter):
To use it, create a PDBxReporter, then add it to the Simulation's list of reporters.
"""
def describeNextReport(self, simulation):
"""Get information about the next report this object will generate.
Parameters:
- simulation (Simulation) The Simulation to generate a report for
Returns: A five element tuple. The first element is the number of steps until the
next report. The remaining elements specify whether that report will require
positions, velocities, forces, and energies respectively.
"""
steps = self._reportInterval - simulation.currentStep%self._reportInterval
return (steps, True, False, False, False)
def report(self, simulation, state):
"""Generate a report.
......
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