source: trunk/src/ATrous/HaarFilter.hh @ 1441

Last change on this file since 1441 was 1339, checked in by MatthewWhiting, 10 years ago

Fixing #210, with new Filter classes deriving from Filter that take care of the specific instantiation, as well as a FilterFactory? class to handle the selection. Param::reconFilter is now a
pointer, but the interface to it remains via a reference.

File size: 1.7 KB
Line 
1// -----------------------------------------------------------------------
2// HaarFilter.hh: Defining a Haar filter function for wavelet reconstruction.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28
29#ifndef FILTER_HAAR_H_
30#define FILTER_HAAR_H_
31#include <duchamp/duchamp.hh>
32#include <duchamp/ATrous/filter.hh>
33
34namespace duchamp {
35
36    class HaarFilter: public Filter
37    {
38    public:
39        HaarFilter();
40        HaarFilter(const HaarFilter& other);
41        HaarFilter& operator= (const HaarFilter& other);
42        virtual ~HaarFilter(){};
43
44    };
45
46
47}
48
49
50
51#endif
Note: See TracBrowser for help on using the repository browser.