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

42 lines
927 B
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
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_OBS_CONF_H
#define GNSS_SDR_OBS_CONF_H
#include <cstdint>
#include <string>
class Obs_Conf
{
public:
Obs_Conf();
std::string dump_filename;
int32_t smoothing_factor;
uint32_t nchannels_in;
uint32_t nchannels_out;
bool enable_carrier_smoothing;
bool dump;
bool dump_mat;
};
#endif