38 bias.resize(this->satelliteSystems.size());
39 biasStdDev.resize(this->satelliteSystems.size());
40 drift.resize(this->satelliteSystems.size());
72 std::ranges::for_each(
bias, [](
double& v) { v = 0; });
73 std::ranges::for_each(
biasStdDev, [](
double& v) { v = 0; });
74 std::ranges::for_each(
drift, [](
double& v) { v = 0; });
75 std::ranges::for_each(
driftStdDev, [](
double& v) { v = 0; });
83 if (
auto i =
getIdx(satSys)) {
return &
bias.at(*i); }
91 if (
auto i =
getIdx(satSys)) {
return &
bias.at(*i); }
117 if (
auto i =
getIdx(satSys)) {
return &
drift.at(*i); }
125 if (
auto i =
getIdx(satSys)) {
return &
drift.at(*i); }
Utility class for logging to console and file.
Values with an uncertainty (Standard Deviation)
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
Receiver Clock information.
Definition ReceiverClock.hpp:32
std::vector< double > drift
Receiver clock drifts for each satellite system [s/s].
Definition ReceiverClock.hpp:166
double * biasStdDevFor(SatelliteSystem satSys)
Get the bias StdDev for the given satellite system.
Definition ReceiverClock.hpp:106
const double * biasFor(SatelliteSystem satSys) const
Get the bias for the given satellite system.
Definition ReceiverClock.hpp:81
std::vector< double > biasStdDev
StdDev of the receiver clock biases for each satellite system [s].
Definition ReceiverClock.hpp:164
std::vector< double > driftStdDev
StdDev of the receiver clock drifts for each satellite system [s].
Definition ReceiverClock.hpp:168
double * driftFor(SatelliteSystem satSys)
Get the drift for the given satellite system.
Definition ReceiverClock.hpp:123
std::vector< double > bias
Receiver clock biases for each satellite system [s].
Definition ReceiverClock.hpp:162
std::vector< SatelliteSystem > satelliteSystems
Order of satellite systems.
Definition ReceiverClock.hpp:159
const double * biasStdDevFor(SatelliteSystem satSys) const
Get the bias StdDev for the given satellite system.
Definition ReceiverClock.hpp:98
void clear()
Clear all the structures.
Definition ReceiverClock.hpp:60
const double * driftStdDevFor(SatelliteSystem satSys) const
Get the drift StdDev for the given satellite system.
Definition ReceiverClock.hpp:132
std::optional< size_t > getIdx(SatelliteSystem satSys) const
Get the index of the sat system.
Definition ReceiverClock.hpp:149
double * driftStdDevFor(SatelliteSystem satSys)
Get the drift StdDev for the given satellite system.
Definition ReceiverClock.hpp:140
double * biasFor(SatelliteSystem satSys)
Get the bias for the given satellite system.
Definition ReceiverClock.hpp:89
void reset()
Resets all structures to 0 (not removing them)
Definition ReceiverClock.hpp:70
ReceiverClock(std::vector< SatelliteSystem > satelliteSystems)
Constructor.
Definition ReceiverClock.hpp:35
void addSystem(SatelliteSystem satSys)
Add a new system.
Definition ReceiverClock.hpp:46
const double * driftFor(SatelliteSystem satSys) const
Get the drift for the given satellite system.
Definition ReceiverClock.hpp:115
Satellite System type.
Definition SatelliteSystem.hpp:44