Merging trondeau/pfb r11249:11581 into trunk. This adds a few polyphase filterbank...
[debian/gnuradio] / gnuradio-core / src / python / gnuradio / blks2impl / pfb_channelizer.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2009 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 from gnuradio import gr
24
25 class pfb_channelizer_ccf(gr.hier_block2):
26     '''
27     Make a Polyphase Filter channelizer (complex in, complex out, floating-point taps)
28
29     This simplifies the interface by allowing a single input stream to connect to this block.
30     It will then output a stream for each channel.
31     '''
32     def __init__(self, numchans, taps):
33         gr.hier_block2.__init__(self, "pfb_channelizer_ccf",
34                                 gr.io_signature(1, 1, gr.sizeof_gr_complex), # Input signature
35                                 gr.io_signature(numchans, numchans, gr.sizeof_gr_complex)) # Output signature
36
37         self._numchans = numchans
38         self._taps = taps
39
40         self.s2ss = gr.stream_to_streams(gr.sizeof_gr_complex, self._numchans)
41         self.pfb = gr.pfb_channelizer_ccf(self._numchans, self._taps)
42         self.v2s = gr.vector_to_streams(gr.sizeof_gr_complex, self._numchans)
43
44         self.connect(self, self.s2ss)
45
46         for i in xrange(self._numchans):
47             self.connect((self.s2ss,i), (self.pfb,i))
48
49         # Get independent streams from the filterbank and send them out
50         self.connect(self.pfb, self.v2s)
51
52         for i in xrange(self._numchans):
53             self.connect((self.v2s,i), (self,i))
54
55         
56         
57