GNU Radio Radar Toolbox
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
25
26namespace gr {
27namespace radar {
28
30{
31private:
32 // Nothing to declare in this block.
33
34public:
35 estimator_ofdm_impl(std::string symbol_x,
36 int len_x,
37 std::vector<float> axis_x,
38 std::string symbol_y,
39 int len_y,
40 std::vector<float> axis_y,
41 bool merge_consecutive);
43 void handle_msg(pmt::pmt_t msg);
44
46 std::string d_symbol_x, d_symbol_y;
47 std::vector<float> d_axis_x, d_axis_y;
49
52 std::vector<float> d_val_power, d_val_x, d_val_y, d_map_x, d_map_y;
55};
56
57} // namespace radar
58} // namespace gr
59
60#endif /* INCLUDED_RADAR_ESTIMATOR_OFDM_IMPL_H */
Definition estimator_ofdm_impl.h:30
int d_len_x
Definition estimator_ofdm_impl.h:45
pmt::pmt_t d_y_value
Definition estimator_ofdm_impl.h:53
pmt::pmt_t d_x_key
Definition estimator_ofdm_impl.h:53
bool d_merge_consecutive
Definition estimator_ofdm_impl.h:48
std::vector< float > d_map_y
Definition estimator_ofdm_impl.h:52
std::vector< float > d_val_x
Definition estimator_ofdm_impl.h:52
pmt::pmt_t d_y_key
Definition estimator_ofdm_impl.h:53
std::string d_symbol_x
Definition estimator_ofdm_impl.h:46
pmt::pmt_t d_x_value
Definition estimator_ofdm_impl.h:53
pmt::pmt_t d_ptimestamp
Definition estimator_ofdm_impl.h:54
pmt::pmt_t d_y_pack
Definition estimator_ofdm_impl.h:53
pmt::pmt_t d_paxis_x
Definition estimator_ofdm_impl.h:51
void handle_msg(pmt::pmt_t msg)
pmt::pmt_t d_paxis_y
Definition estimator_ofdm_impl.h:51
std::vector< float > d_axis_y
Definition estimator_ofdm_impl.h:47
int d_len_y
Definition estimator_ofdm_impl.h:45
std::vector< float > d_axis_x
Definition estimator_ofdm_impl.h:47
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)
std::string d_symbol_y
Definition estimator_ofdm_impl.h:46
pmt::pmt_t d_port_id_out
Definition estimator_ofdm_impl.h:50
pmt::pmt_t d_x_pack
Definition estimator_ofdm_impl.h:53
pmt::pmt_t d_ppower
Definition estimator_ofdm_impl.h:51
std::vector< float > d_val_y
Definition estimator_ofdm_impl.h:52
std::vector< float > d_map_x
Definition estimator_ofdm_impl.h:52
pmt::pmt_t d_port_id_in
Definition estimator_ofdm_impl.h:50
std::vector< float > d_val_power
Definition estimator_ofdm_impl.h:52
pmt::pmt_t d_value
Definition estimator_ofdm_impl.h:53
This block evaluates the peaks given from a OFDM matrix. Input are the bins of the peaks with the ide...
Definition estimator_ofdm.h:55
Definition crop_matrix_vcvc.h:28