1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 12:10:34 +00:00
gnss-sdr/src/tests/unit-tests/signal-processing-blocks/libs/tracking_dump_reader.h

94 lines
2.4 KiB
C
Raw Normal View History

2017-02-02 19:05:15 +00:00
/*!
* \file tracking_dump_reader.h
* \brief Helper file for unit testing
* \author Javier Arribas, 2017. jarribas(at)cttc.es
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
2017-02-02 19:05:15 +00:00
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GNSS-SDR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
2017-02-02 19:05:15 +00:00
*
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_TRACKING_DUMP_READER_H_
#define GNSS_SDR_TRACKING_DUMP_READER_H_
#include <cstdint>
#include <fstream>
#include <string>
#include <vector>
class Tracking_Dump_Reader
{
public:
~Tracking_Dump_Reader();
bool read_binary_obs();
bool restart();
int64_t num_epochs();
bool open_obs_file(std::string out_file);
// tracking dump variables
2018-03-20 13:44:34 +00:00
// VEPLVL
float abs_VE;
float abs_E;
float abs_P;
float abs_L;
2018-03-20 13:44:34 +00:00
float abs_VL;
// PROMPT I and Q (to analyze navigation symbols)
float prompt_I;
float prompt_Q;
// PRN start sample stamp
uint64_t PRN_start_sample_count;
// accumulated carrier phase
2018-03-20 13:44:34 +00:00
float acc_carrier_phase_rad;
// carrier and code frequency
2018-03-20 13:44:34 +00:00
float carrier_doppler_hz;
float carrier_doppler_rate_hz_s;
2018-03-20 13:44:34 +00:00
float code_freq_chips;
2018-09-10 19:29:44 +00:00
float code_freq_rate_chips;
// PLL commands
2018-03-20 13:44:34 +00:00
float carr_error_hz;
float carr_error_filt_hz;
// DLL commands
2018-03-20 13:44:34 +00:00
float code_error_chips;
float code_error_filt_chips;
// CN0 and carrier lock test
2018-03-20 13:44:34 +00:00
float CN0_SNV_dB_Hz;
float carrier_lock_test;
// AUX vars (for debug purposes)
2018-03-20 13:44:34 +00:00
float aux1;
double aux2;
unsigned int PRN;
private:
std::string d_dump_filename;
std::ifstream d_dump_file;
};
#endif // GNSS_SDR_TRACKING_DUMP_READER_H_