gnss-sdr/src/algorithms/observables/libs/obs_conf.h

50 lines
1.2 KiB
C++

/*!
* \file obs_conf.h
* \brief Class that contains all the configuration parameters for generic
* observables block
* \author Javier Arribas, 2020. jarribas(at)cttc.es
*
* -----------------------------------------------------------------------------
*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR.
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -----------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_OBS_CONF_H
#define GNSS_SDR_OBS_CONF_H
#include <cstdint>
#include <string>
/** \addtogroup Observables
* \{ */
/** \addtogroup Observables_libs observables_libs
* Utilities for GNSS observables configuration.
* \{ */
class Obs_Conf
{
public:
Obs_Conf();
std::string dump_filename{"obs_dump.dat"};
int32_t smoothing_factor{0};
uint32_t nchannels_in{0U};
uint32_t nchannels_out{0U};
uint32_t observable_interval_ms{20U};
bool enable_carrier_smoothing{false};
bool always_output_gs{false};
bool dump{false};
bool dump_mat{false};
bool enable_E6{false};
};
/** \} */
/** \} */
#endif // GNSS_SDR_OBS_CONF_H