Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / hier / gr_channel_model.i @ c1c68974

History | View | Annotate | Download (1.6 kB)

1
/* -*- c++ -*- */
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
GR_SWIG_BLOCK_MAGIC(gr,channel_model)
24
25
gr_channel_model_sptr gr_make_channel_model(double noise_voltage=0.0,
26
					    double frequency_offset=0.0,
27
					    double epsilon=1.0,
28
					    const std::vector<gr_complex> &taps=std::vector<gr_complex>(1, 1),
29
					    double noise_seed=3021);
30
31
class gr_channel_model : public gr_hier_block2
32
{
33
 private:
34
  gr_channel_model(double noise_voltage,
35
		   double frequency_offset,
36
		   double epsilon,
37
		   const std::vector<gr_complex> &taps,
38
		   double noise_seed);
39
  
40
 public:
41
  void set_noise_voltage(double noise_voltage);
42
  void set_frequency_offset(double frequency_offset);
43
  void set_taps(const std::vector<gr_complex> &taps);
44
  void set_timing_offset(double epsilon);
45
46
  double noise_voltage() const;
47
  double frequency_offset() const;
48
  std::vector<gr_complex> taps() const;
49
  double timing_offset() const;
50
};