mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-09 18:41:42 +02:00
Fix ground station allocator and trace mac drops
This commit is contained in:
parent
8d5cbfe8fe
commit
998b7fe2f2
15 changed files with 222 additions and 80 deletions
|
@ -27,17 +27,28 @@ public:
|
|||
virtual Vector GetNext (void) const;
|
||||
virtual int64_t AssignStreams (int64_t stream);
|
||||
|
||||
double GetLatStart () const;
|
||||
double GetLonStart () const;
|
||||
double GetLatStop () const;
|
||||
double GetLonStop () const;
|
||||
|
||||
private:
|
||||
double m_latStart;
|
||||
double m_lonStart;
|
||||
|
||||
double m_latEnd;
|
||||
double m_lonEnd;
|
||||
double m_latStop;
|
||||
double m_lonStop;
|
||||
|
||||
double m_step;
|
||||
uint32_t m_latNum;
|
||||
uint32_t m_lonNum;
|
||||
|
||||
mutable double m_lat;
|
||||
mutable double m_lon;
|
||||
mutable uint32_t m_lat;
|
||||
mutable uint32_t m_lon;
|
||||
|
||||
void SetLatStart (double lat);
|
||||
void SetLonStart (double lon);
|
||||
void SetLatStop (double lat);
|
||||
void SetLonStop (double lon);
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue