Code: Select all
class ForceReporter(object):
...
def describeNextReport(self, simulation):
steps = self._reportInterval - simulation.currentStep%self._reportInterval
return (steps, False, False, True, False)
...
A related question to center-of-mass forces: The `CustomCentroidBondForce::usesPeriodicBoundaryConditions()` function returns false. Does this mean that the `distance()` function does not return the minimum image distance?