SinglePointStoppablePropagatorResults Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SinglePointStoppablePropagatorResults(
StoppingConditionEvent stoppingEvent,
IList<StoppingConditionEvent> detectedEvents,
DateMotionCollection<Cartesian> ephemeris,
IList<ITimeBasedState> propagatedStates,
bool aborted
)
Public Sub New (
stoppingEvent As StoppingConditionEvent,
detectedEvents As IList(Of StoppingConditionEvent),
ephemeris As DateMotionCollection(Of Cartesian),
propagatedStates As IList(Of ITimeBasedState),
aborted As Boolean
)
public:
SinglePointStoppablePropagatorResults(
StoppingConditionEvent^ stoppingEvent,
IList<StoppingConditionEvent^>^ detectedEvents,
DateMotionCollection<Cartesian>^ ephemeris,
IList<ITimeBasedState^>^ propagatedStates,
bool aborted
)
new :
stoppingEvent : StoppingConditionEvent *
detectedEvents : IList<StoppingConditionEvent> *
ephemeris : DateMotionCollection<Cartesian> *
propagatedStates : IList<ITimeBasedState> *
aborted : bool -> SinglePointStoppablePropagatorResults
Parameters
- stoppingEvent
- Type: AGI.Foundation.StoppingConditionsStoppingConditionEvent
The actual final event that stopped propagation. - detectedEvents
- Type: System.Collections.GenericIListStoppingConditionEvent
All of the events detected by the propagator. - ephemeris
- Type: AGI.FoundationDateMotionCollectionCartesian
The ephemeris as computed by the SinglePointStoppablePropagator. - propagatedStates
- Type: System.Collections.GenericIListITimeBasedState
The states computed and saved from the propagation. - aborted
- Type: SystemBoolean
A boolean indicated if the function run was aborted.
See Also