Class RecordAndContinue.Event<T>
- java.lang.Object
-
- org.orekit.propagation.events.handlers.RecordAndContinue.Event<T>
-
- Enclosing class:
- RecordAndContinue<T extends EventDetector>
public static class RecordAndContinue.Event<T> extends Object
A single event detected during propagation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getDetector()
Get the detector.SpacecraftState
getState()
Get the spacecraft's state at the event.boolean
isIncreasing()
Is the g() function increasing?
-
-
-
Method Detail
-
getDetector
public T getDetector()
Get the detector.- Returns:
- the detector that found the event.
- See Also:
EventHandler.eventOccurred(SpacecraftState, EventDetector, boolean)
-
isIncreasing
public boolean isIncreasing()
Is the g() function increasing?- Returns:
- if the sign of the derivative of the g function is positive (true) or negative (false).
- See Also:
EventHandler.eventOccurred(SpacecraftState, EventDetector, boolean)
-
getState
public SpacecraftState getState()
Get the spacecraft's state at the event.- Returns:
- the satellite's state when the event was triggered.
- See Also:
EventHandler.eventOccurred(SpacecraftState, EventDetector, boolean)
-
-