mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-07-06 12:02:55 +00:00
24 lines
712 B
C++
24 lines
712 B
C++
/*!
|
|
* \file obs_conf.cc
|
|
* \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
|
|
*
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "obs_conf.h"
|
|
#include "gnss_sdr_flags.h"
|
|
|
|
Obs_Conf::Obs_Conf() : smoothing_factor(FLAGS_carrier_smoothing_factor)
|
|
{
|
|
}
|