Line data Source code
1 : /** 2 : * \file TanFilter.h 3 : */ 4 : 5 : #ifndef ATK_TOOLS_TANFILTER_H 6 : #define ATK_TOOLS_TANFILTER_H 7 : 8 : #include <ATK/Core/TypedBaseFilter.h> 9 : #include <ATK/Tools/config.h> 10 : 11 : namespace ATK 12 : { 13 : /// Warps an analog frequency to a numeric one 14 : template<typename DataType_> 15 : class ATK_TOOLS_EXPORT TanFilter final : public TypedBaseFilter<DataType_> 16 : { 17 : protected: 18 : /// Simplify parent calls 19 : using Parent = TypedBaseFilter<DataType_>; 20 : using typename Parent::DataType; 21 : using Parent::converted_inputs; 22 : using Parent::outputs; 23 : using Parent::nb_input_ports; 24 : using Parent::nb_output_ports; 25 : using Parent::input_sampling_rate; 26 : using Parent::output_sampling_rate; 27 : 28 : public: 29 : /*! 30 : * @brief Constructor 31 : * @param nb_channels is the number of input and output channels 32 : */ 33 : explicit TanFilter(gsl::index nb_channels = 1); 34 : /// Destructor 35 1 : ~TanFilter() override = default; 36 : 37 : protected: 38 : void process_impl(gsl::index size) const final; 39 : void setup() final; 40 : private: 41 : double coeff{1}; 42 : }; 43 : } 44 : 45 : #endif