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
returnsTrue
for all time steps greater thantimestep
: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
:- __eq__(other)¶
Test for equivalent triggers.
- __str__()¶
Human readable representation of the trigger as a string.