GNU Radio Radar Toolbox
 All Classes Namespaces Files Functions Variables Typedefs Macros
estimator_ofdm_impl.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2014 Communications Engineering Lab, KIT.
4  *
5  * This is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3, or (at your option)
8  * any later version.
9  *
10  * This software is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this software; see the file COPYING. If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #ifndef INCLUDED_RADAR_ESTIMATOR_OFDM_IMPL_H
22 #define INCLUDED_RADAR_ESTIMATOR_OFDM_IMPL_H
23 
24 #include <radar/estimator_ofdm.h>
25 
26 namespace gr {
27  namespace radar {
28 
30  {
31  private:
32  // Nothing to declare in this block.
33 
34  public:
35  estimator_ofdm_impl(std::string symbol_x, int len_x, std::vector<float> axis_x, std::string symbol_y, int len_y, std::vector<float> axis_y, bool merge_consecutive);
37  void handle_msg(pmt::pmt_t msg);
38 
40  std::string d_symbol_x, d_symbol_y;
41  std::vector<float> d_axis_x, d_axis_y;
43 
46  std::vector<float> d_val_power, d_val_x, d_val_y, d_map_x, d_map_y;
48  };
49 
50  } // namespace radar
51 } // namespace gr
52 
53 #endif /* INCLUDED_RADAR_ESTIMATOR_OFDM_IMPL_H */
54 
pmt::pmt_t d_x_key
Definition: estimator_ofdm_impl.h:47
pmt::pmt_t d_ptimestamp
Definition: estimator_ofdm_impl.h:47
bool d_merge_consecutive
Definition: estimator_ofdm_impl.h:42
pmt::pmt_t d_paxis_y
Definition: estimator_ofdm_impl.h:45
pmt::pmt_t d_y_pack
Definition: estimator_ofdm_impl.h:47
pmt::pmt_t d_y_value
Definition: estimator_ofdm_impl.h:47
void handle_msg(pmt::pmt_t msg)
std::string d_symbol_x
Definition: estimator_ofdm_impl.h:40
int d_len_x
Definition: estimator_ofdm_impl.h:39
pmt::pmt_t d_value
Definition: estimator_ofdm_impl.h:47
std::vector< float > d_val_power
Definition: estimator_ofdm_impl.h:46
This block evaluates the peaks given from a OFDM matrix. Input are the bins of the peaks with the ide...
Definition: estimator_ofdm.h:45
pmt::pmt_t d_y_key
Definition: estimator_ofdm_impl.h:47
std::vector< float > d_val_x
Definition: estimator_ofdm_impl.h:46
pmt::pmt_t d_port_id_out
Definition: estimator_ofdm_impl.h:44
int d_len_y
Definition: estimator_ofdm_impl.h:39
pmt::pmt_t d_paxis_x
Definition: estimator_ofdm_impl.h:45
estimator_ofdm_impl(std::string symbol_x, int len_x, std::vector< float > axis_x, std::string symbol_y, int len_y, std::vector< float > axis_y, bool merge_consecutive)
pmt::pmt_t d_x_pack
Definition: estimator_ofdm_impl.h:47
std::vector< float > d_axis_y
Definition: estimator_ofdm_impl.h:41
pmt::pmt_t d_x_value
Definition: estimator_ofdm_impl.h:47
std::string d_symbol_y
Definition: estimator_ofdm_impl.h:40
Definition: estimator_ofdm_impl.h:29
std::vector< float > d_val_y
Definition: estimator_ofdm_impl.h:46
std::vector< float > d_map_x
Definition: estimator_ofdm_impl.h:46
std::vector< float > d_map_y
Definition: estimator_ofdm_impl.h:46
pmt::pmt_t d_port_id_in
Definition: estimator_ofdm_impl.h:44
pmt::pmt_t d_ppower
Definition: estimator_ofdm_impl.h:45
std::vector< float > d_axis_x
Definition: estimator_ofdm_impl.h:41