/* -*- c++ -*- */ /* * Copyright 2015 <+YOU OR YOUR COMPANY+>. * * This 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, or (at your option) * any later version. * * This software 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 this software; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #ifndef INCLUDED_CHANNEL_ESTIMATION_OFDM_CHANEST_MMSE_VCVC_H #define INCLUDED_CHANNEL_ESTIMATION_OFDM_CHANEST_MMSE_VCVC_H #include #include namespace gr { namespace Channel_Estimation { /*! * \brief <+description of block+> * \ingroup Channel_Estimation * */ class CHANNEL_ESTIMATION_API ofdm_chanest_MMSE_vcvc : virtual public gr::block { public: typedef boost::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of Channel_Estimation::ofdm_chanest_MMSE_vcvc. * * To avoid accidental use of raw pointers, Channel_Estimation::ofdm_chanest_MMSE_vcvc's * constructor is in a private implementation * class. Channel_Estimation::ofdm_chanest_MMSE_vcvc::make is the public interface for * creating new instances. */ static sptr make( const std::vector &sync_symbol1, const std::vector &sync_symbol2, int n_data_symbols, int eq_noise_red_len=0, int max_carr_offset=-1, bool force_one_sync_symbol=false, float noise_voltage = 0.0 ); }; } // namespace Channel_Estimation } // namespace gr #endif /* INCLUDED_CHANNEL_ESTIMATION_OFDM_CHANEST_MMSE_VCVC_H */