Class ManeuverTriggerDetector<T extends EventDetector>
- java.lang.Object
-
- org.orekit.forces.maneuvers.trigger.ManeuverTriggerDetector<T>
-
- All Implemented Interfaces:
DetectorModifier
,EventDetector
public class ManeuverTriggerDetector<T extends EventDetector> extends Object implements DetectorModifier
Wrapper for event detection triggering maneuvers.- Since:
- 13.0
- Author:
- Romain Serra
- See Also:
AbstractManeuverTriggers
-
-
Constructor Summary
Constructors Constructor Description ManeuverTriggerDetector​(T detector, EventHandler handler)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getDetector()
Get the wrapped detector.EventHandler
getHandler()
Get the handler.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.events.DetectorModifier
finish, g, getDetectionSettings, init, reset
-
Methods inherited from interface org.orekit.propagation.events.EventDetector
getMaxCheckInterval, getMaxIterationCount, getThreshold
-
-
-
-
Constructor Detail
-
ManeuverTriggerDetector
public ManeuverTriggerDetector​(T detector, EventHandler handler)
Constructor.- Parameters:
detector
- prototype detectorhandler
- event handler
-
-
Method Detail
-
getDetector
public T getDetector()
Description copied from interface:DetectorModifier
Get the wrapped detector.- Specified by:
getDetector
in interfaceDetectorModifier
- Returns:
- wrapped detector
-
getHandler
public EventHandler getHandler()
Description copied from interface:DetectorModifier
Get the handler.- Specified by:
getHandler
in interfaceDetectorModifier
- Specified by:
getHandler
in interfaceEventDetector
- Returns:
- event handler to call at event occurrences
-
-