1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-18 21:23:02 +00:00

Reorder members definition

This commit is contained in:
Carles Fernandez 2021-02-22 14:09:54 +01:00
parent 48b914927f
commit 927b91096d
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -35,7 +35,8 @@
class Gps_Iono
{
public:
bool valid{}; //!< Valid flag
Gps_Iono() = default; //!< Default constructor
// Ionospheric parameters
double alpha0{}; //!< Coefficient 0 of a cubic equation representing the amplitude of the vertical delay [s]
double alpha1{}; //!< Coefficient 1 of a cubic equation representing the amplitude of the vertical delay [s/semi-circle]
@ -46,7 +47,7 @@ public:
double beta2{}; //!< Coefficient 2 of a cubic equation representing the period of the model [s(semi-circle)^2]
double beta3{}; //!< Coefficient 3 of a cubic equation representing the period of the model [s(semi-circle)^3]
Gps_Iono() = default; //!< Default constructor
bool valid{}; //!< Valid flag
template <class Archive>