Package org.hipparchus.ode.events
Class EventState.EventOccurrence
- java.lang.Object
-
- org.hipparchus.ode.events.EventState.EventOccurrence
-
- Enclosing class:
- EventState
public static class EventState.EventOccurrence extends Object
Class to hold the data related to an event occurrence that is needed to decide how to modify integration.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Action
getAction()
Get the user requested action.ODEState
getNewState()
Get the new state for a reset action.double
getStopTime()
Get the new time for a stop action.
-
-
-
Method Detail
-
getAction
public Action getAction()
Get the user requested action.- Returns:
- the action.
-
getNewState
public ODEState getNewState()
Get the new state for a reset action.- Returns:
- the new state.
-
getStopTime
public double getStopTime()
Get the new time for a stop action.- Returns:
- when to stop propagation.
-
-