r521: no message
[ctsim.git] / include / cubicinterp.h
diff --git a/include/cubicinterp.h b/include/cubicinterp.h
deleted file mode 100644 (file)
index 9e677cd..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*****************************************************************************
-**  This is part of the CTSim program
-**  Copyright (c) 1983-2001 Kevin Rosenberg
-**
-**  $Id: cubicinterp.h,v 1.1 2001/02/09 01:54:20 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
-******************************************************************************/
-
-class CubicInterpolator {
-private:
-  double *m_pdY2;  // second differential of y data
-
-  const double* const m_pdY;
-  const int m_n;
-
-public:
-  CubicInterpolator (const double* const y, int n);
-
-  ~CubicInterpolator ();
-
-  double interpolate (double x);
-};
-