1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-07-14 16:03:00 +00:00
Carles Fernandez 287284261c
Make use of Doxygen grouping feature
Improve Modules page in generated HTML documentation
2020-11-01 13:37:19 +01:00

84 lines
1.8 KiB
C++

/*!
* \file notch_filter.h
* \brief Adapter of a multistate Notch filter
* \author Antonio Ramos, 2017. antonio.ramosdet(at)gmail.com
*
*
* -----------------------------------------------------------------------------
*
* 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_NOTCH_FILTER_H
#define GNSS_SDR_NOTCH_FILTER_H
#include "gnss_block_interface.h"
#include "notch_cc.h"
#include <gnuradio/blocks/file_sink.h>
#include <string>
#include <vector>
/** \addtogroup Input_Filter
* \{ */
/** \addtogroup Input_filter_adapters
* \{ */
class ConfigurationInterface;
class NotchFilter : public GNSSBlockInterface
{
public:
NotchFilter(const ConfigurationInterface* configuration,
const std::string& role, unsigned int in_streams,
unsigned int out_streams);
~NotchFilter() = default;
std::string role()
{
return role_;
}
//! Returns "Notch_Filter"
std::string implementation()
{
return "Notch_Filter";
}
size_t item_size()
{
return item_size_;
}
void connect(gr::top_block_sptr top_block);
void disconnect(gr::top_block_sptr top_block);
gr::basic_block_sptr get_left_block();
gr::basic_block_sptr get_right_block();
private:
notch_sptr notch_filter_;
gr::blocks::file_sink::sptr file_sink_;
std::string dump_filename_;
std::string role_;
std::string item_type_;
size_t item_size_;
unsigned int in_streams_;
unsigned int out_streams_;
bool dump_;
};
/** \} */
/** \} */
#endif // GNSS_SDR_NOTCH_FILTER_H