Class FieldStopOnEvent<T extends CalculusFieldElement<T>>
java.lang.Object
org.orekit.propagation.events.handlers.FieldStopOnEvent<T>
- Type Parameters:
T- type of the field element
- All Implemented Interfaces:
FieldEventHandler<T>
public class FieldStopOnEvent<T extends CalculusFieldElement<T>>
extends Object
implements FieldEventHandler<T>
Event handler which will always return
continue as a state.- Author:
- Hank Grabowski
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioneventOccurred(FieldSpacecraftState<T> s, FieldEventDetector<T> detector, boolean increasing) Specific implementation of the eventOccurred interface.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.propagation.events.handlers.FieldEventHandler
finish, init, resetState
-
Constructor Details
-
FieldStopOnEvent
public FieldStopOnEvent()Empty constructor.This constructor is not strictly necessary, but it prevents spurious javadoc warnings with JDK 18 and later.
- Since:
- 12.0
-
-
Method Details
-
eventOccurred
public Action eventOccurred(FieldSpacecraftState<T> s, FieldEventDetector<T> detector, boolean increasing) Specific implementation of the eventOccurred interface.- Specified by:
eventOccurredin interfaceFieldEventHandler<T extends CalculusFieldElement<T>>- Parameters:
s- SpaceCraft state to be used in the evaluationdetector- object with appropriate type that can be used in determining correct return stateincreasing- with the event occurred in an "increasing" or "decreasing" slope direction- Returns:
stopunder all circumstances
-