blob: 82dd43c7f959c09a86754bb15617ea252d4cf184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* -*- c++ -*- */
/*
* Copyright 2008,2012 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_GR_PROBE_DENSITY_B_IMPL_H
#define INCLUDED_GR_PROBE_DENSITY_B_IMPL_H
#include <gnuradio/digital/probe_density_b.h>
namespace gr {
namespace digital {
class probe_density_b_impl : public probe_density_b
{
private:
double d_alpha;
double d_beta;
double d_density;
public:
probe_density_b_impl(double alpha);
~probe_density_b_impl();
/*!
* \brief Returns the current density value
*/
double density() const { return d_density; }
/*!
* \brief Set the average filter constant
*/
void set_alpha(double alpha);
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} /* namespace digital */
} /* namespace gr */
#endif /* INCLUDED_GR_PROBE_DENSITY_B_IMPL_H */
|