All Classes Functions
PEGDirectAscentStd.h
1 #ifndef PEGDIRECTASCENTSTD_H
2 #define PEGDIRECTASCENTSTD_H
3 
4 #include "PEGDirectAscent.h"
5 
6 
8 {
9  public:
10  PEGDirectAscentStd( const VESSEL * v, const ShipVariables & vars );
11  virtual ~PEGDirectAscentStd();
12  double GetTargetT() const;
13  double GetDeltaT() const;
14  double GetCruiseEngineLevel() const;
15 
16  protected:
17  void UpdateClient( MFDDataLaunchMFD * data );
18  virtual Engine GetEngineCapabilities(const VESSEL * v) const;
19  private:
20  double GetFinalTrueLongitudeVessel( const VESSEL * v, const ORBITPARAM & op );
21 
22  double targetT, deltaT;
23  const double cruiseEngineLevel;
24 };
25 
26 #endif // PEGDIRECTASCENTSTD_H