After

class hoomd.trigger.After(timestep)

Bases: Trigger

Trigger on all steps after a given step.

Parameters:

timestep (int) – The step before the trigger will start.

After returns True for all time steps greater than timestep:

return t > timestep

Example:

trigger = hoomd.trigger.After(1000)

Members inherited from Trigger:

__call__()

Evaluate the trigger. Read more...

compute()

Evaluate the trigger. Read more...


Members defined in After:

timestep

The step before the trigger will start.

Type:

int

__eq__(other)

Test for equivalent triggers.

__str__()

Human readable representation of the trigger as a string.