00001 /*************************************************************************** 00002 lucy_kernel.h - description 00003 ------------------- 00004 begin : Sun Mar 2 2003 00005 copyright : (C) 2003 by Moritz Franosch 00006 email : mail@Franosch.org 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef LUCY_KERNEL_H 00019 #define LUCY_KERNEL_H 00020 00021 #include "kernel.h" 00022 00023 00029 class Lucy_Kernel : public Kernel { 00030 00031 public: 00032 00035 Lucy_Kernel(const int d, const double h); 00036 00039 virtual double w(const double x) const; 00040 00043 virtual double dw(const double x) const; 00044 00045 }; 00046 00047 00048 #endif // LUCY_KERNEL_H