Before¶
- class hoomd.trigger.Before(timestep)¶
Bases:
Trigger
Trigger on all steps before a given step.
- Parameters:
timestep (int) – The step after the trigger ends.
Before
evaluatesTrue
for all time steps less than thetimestep
:return t < timestep
Example:
trigger = hoomd.trigger.Before(5000)
Members inherited from
Trigger
:- __call__()¶
Evaluate the trigger.
Read more...
- compute()¶
Evaluate the trigger.
Read more...
Members defined in
Before
:- __eq__(other)¶
Test for equivalent triggers.
- __str__()¶
Human readable representation of the trigger as a string.