X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Ffilter.h;h=19266a0edbce9e909d39bb127436f7de8a86fa68;hp=5512bf890fb4596abfffcee223a795de58ef9048;hb=00bead9fe7ab835c1584eac4ab586cc56742eaf3;hpb=153fc8adf687148dca8aac8e04dd47e9f90887e6 diff --git a/include/filter.h b/include/filter.h index 5512bf8..19266a0 100644 --- a/include/filter.h +++ b/include/filter.h @@ -1,7 +1,33 @@ +/***************************************************************************** +** FILE IDENTIFICATION +** +** Name: filter.h +** Purpose: Signal filter header file +** Programmer: Kevin Rosenberg +** Date Started: June 2000 +** +** This is part of the CTSim program +** Copyright (C) 1983-2000 Kevin Rosenberg +** +** $Id: filter.h,v 1.5 2000/06/30 02:03:27 kevin Exp $ +** +** This program is free software; you can redistribute it and/or modify +** it under the terms of the GNU General Public License (version 2) as +** published by the Free Software Foundation. +** +** This program is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +** GNU General Public License for more details. +** +** You should have received a copy of the GNU General Public License +** along with this program; if not, write to the Free Software +** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +******************************************************************************/ + #ifndef FILTER_H #define FILTER_H - class SignalFilter { public: @@ -31,7 +57,7 @@ class SignalFilter { typedef enum { DOMAIN_INVALID, - DOMAIN_FREQ, + DOMAIN_FREQUENCY, DOMAIN_SPATIAL } DomainID; @@ -53,7 +79,7 @@ class SignalFilter { static const char FILTER_METHOD_FFT_ZEROPAD_4_STR[]="fft_zeropad4"; static const char FILTER_METHOD_FFT_ZEROPAD_6_STR[]="fft_zeropad6"; - static const char DOMAIN_FREQ_STR[]= "freq"; + static const char DOMAIN_FREQUENCY_STR[]= "frequency"; static const char DOMAIN_SPATIAL_STR[]= "spatial";