Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / filter / gr_pfb_synthesis_filterbank_ccf.h @ a27f67c7

History | View | Annotate | Download (3.1 kB)

1
/* -*- c++ -*- */
2
/*
3
 * Copyright 2010 Free Software Foundation, Inc.
4
 * 
5
 * This file is part of GNU Radio
6
 * 
7
 * GNU Radio is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 3, or (at your option)
10
 * any later version.
11
 * 
12
 * GNU Radio is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 * 
17
 * You should have received a copy of the GNU General Public License
18
 * along with GNU Radio; see the file COPYING.  If not, write to
19
 * the Free Software Foundation, Inc., 51 Franklin Street,
20
 * Boston, MA 02110-1301, USA.
21
 */
22
23
24
#ifndef INCLUDED_GR_PFB_SYNTHESIS_FILTERBANK_CCF_H
25
#define        INCLUDED_GR_PFB_SYNTHESIS_FILTERBANK_CCF_H
26
27
#include <gr_sync_interpolator.h>
28
#include <gri_fir_filter_with_buffer_ccf.h>
29
30
class gr_pfb_synthesis_filterbank_ccf;
31
typedef boost::shared_ptr<gr_pfb_synthesis_filterbank_ccf> gr_pfb_synthesis_filterbank_ccf_sptr;
32
gr_pfb_synthesis_filterbank_ccf_sptr gr_make_pfb_synthesis_filterbank_ccf 
33
    (unsigned int numchans, const std::vector<float> &taps);
34
35
class gri_fft_complex;
36
37
38
/*!
39
 * \class gr_pfb_synthesis_filterbank_ccf
40
 *
41
 * \brief Polyphase synthesis filterbank with 
42
 *        gr_complex input, gr_complex output and float taps
43
 *
44
 * \ingroup filter_blk
45
 * \ingroup pfb_blk
46
 */
47
48
class gr_pfb_synthesis_filterbank_ccf : public gr_sync_interpolator
49
{
50
 private:
51
  /*!
52
   * Build the polyphase synthesis filterbank.
53
   * \param numchans (unsigned integer) Specifies the number of 
54
                     channels <EM>M</EM>
55
   * \param taps    (vector/list of floats) The prototype filter to
56
                    populate the filterbank.
57
   */
58
  friend gr_pfb_synthesis_filterbank_ccf_sptr gr_make_pfb_synthesis_filterbank_ccf 
59
      (unsigned int numchans, const std::vector<float> &taps);
60
61
  bool                           d_updated;
62
  unsigned int             d_numchans;
63
  unsigned int             d_taps_per_filter;
64
  gri_fft_complex         *d_fft;
65
  std::vector< gri_fir_filter_with_buffer_ccf*> d_filters;
66
  std::vector< std::vector<float> > d_taps;
67
68
69
  /*!
70
   * Build the polyphase synthesis filterbank.
71
   * \param numchans (unsigned integer) Specifies the number of
72
                     channels <EM>M</EM>
73
   * \param taps    (vector/list of floats) The prototype filter
74
                    to populate the filterbank.
75
   */
76
  gr_pfb_synthesis_filterbank_ccf (unsigned int numchans, 
77
                                   const std::vector<float> &taps);
78
  
79
public:
80
  ~gr_pfb_synthesis_filterbank_ccf ();
81
  
82
  /*!
83
   * Resets the filterbank's filter taps with the new prototype filter
84
   * \param taps    (vector/list of floats) The prototype filter to
85
                    populate the filterbank.
86
   */
87
  void set_taps (const std::vector<float> &taps);
88
89
  /*!
90
   * Print all of the filterbank taps to screen.
91
   */
92
  void print_taps();
93
  
94
  int work (int noutput_items,
95
            gr_vector_const_void_star &input_items,
96
            gr_vector_void_star &output_items);
97
};
98
99
#endif