source: flair-src/tags/latest/lib/FlairFilter/src/ButterworthLowPass.cpp

Last change on this file was 214, checked in by Sanahuja Guillaume, 6 years ago

matrix

File size: 1.8 KB
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5// created: 2013/12/10
6// filename: ButterworthLowPass.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Class defining a Butterworth low pass filter
14//
15//
16/*********************************************************************/
17
18#include "ButterworthLowPass.h"
19#include "ButterworthLowPass_impl.h"
20#include <Matrix.h>
21#include <Layout.h>
22#include <LayoutPosition.h>
23
24using std::string;
25using namespace flair::core;
26using namespace flair::gui;
27
28namespace flair {
29namespace filter {
30
31ButterworthLowPass::ButterworthLowPass(const IODevice *parent,
32 const LayoutPosition *position,
33 string name, uint32_t order,uint32_t nbRow,uint32_t nbCol)
34 : IODevice(parent, name) {
35 pimpl_ = new ButterworthLowPass_impl(this, position, name, order,nbRow,nbCol);
36 AddDataToLog(pimpl_->output);
37
38 SetIsReady(true);
39}
40
41ButterworthLowPass::ButterworthLowPass(const gui::LayoutPosition *position,
42 string name, uint32_t order,uint32_t nbRow,uint32_t nbCol)
43 : IODevice(position->getLayout(), name) {
44 pimpl_ = new ButterworthLowPass_impl(this, position, name, order,nbRow,nbCol);
45 AddDataToLog(pimpl_->output);
46}
47
48ButterworthLowPass::~ButterworthLowPass() { delete pimpl_; }
49
50Matrix *ButterworthLowPass::GetMatrix(void) const { return pimpl_->output; }
51
52float ButterworthLowPass::Output(void) const {
53 return pimpl_->output->Value(0, 0);
54}
55
56void ButterworthLowPass::UpdateFrom(const io_data *data) {
57 pimpl_->UpdateFrom(data);
58 ProcessUpdate(pimpl_->output);
59}
60
61} // end namespace filter
62} // end namespace flair
Note: See TracBrowser for help on using the repository browser.