🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
StopCondition.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "EventDetector.hpp"
25
26AST_NAMESPACE_BEGIN
27
28/*
29GMAT的StopCondition 和 orekit的EventDetector有什么区别?
30*/
31
34class AST_CORE_API StopCondition : public EventDetector
35{
36public:
37 StopCondition() = default;
38 virtual ~StopCondition() = default;
39};
40
41
42
43AST_NAMESPACE_END
事件检测基类 事件检测基类,用于检测事件是否发生。 参考orekit的EventDetector类
定义 EventDetector.hpp:38
停止条件检测基类 参考GMAT的StopCondition类
定义 StopCondition.hpp:35