2009-12-07 15:46:59 +01:00
|
|
|
#ifndef __CTOOL_INTERPOLATE_HPP
|
|
|
|
#define __CTOOL_INTERPOLATE_HPP
|
2009-01-08 16:18:03 +01:00
|
|
|
|
|
|
|
#include "config.hpp"
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <gsl/gsl_interp.h>
|
|
|
|
#include <gsl/gsl_spline.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace CosmoTool
|
|
|
|
{
|
|
|
|
|
|
|
|
class Interpolate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Interpolate() : spline(0), accel_interp(0) { }
|
2009-02-24 18:46:18 +01:00
|
|
|
Interpolate(double *xs, double *values, uint32_t N, bool autofree = false,
|
|
|
|
bool logx = false, bool logy = false);
|
2009-01-08 16:18:03 +01:00
|
|
|
~Interpolate();
|
|
|
|
|
|
|
|
double compute(double x)
|
|
|
|
throw (InvalidRangeException);
|
|
|
|
const Interpolate& operator=(const Interpolate& a);
|
|
|
|
|
|
|
|
uint32_t getNumPoints() const;
|
|
|
|
void fillWithXY(double *x, double *y) const;
|
|
|
|
double getMaxX() const;
|
2010-04-27 13:36:17 +02:00
|
|
|
double getXi(int i) const { return spline->x[i]; }
|
2009-01-08 16:18:03 +01:00
|
|
|
protected:
|
|
|
|
gsl_interp_accel *accel_interp;
|
|
|
|
gsl_spline *spline;
|
|
|
|
bool autoFree;
|
2009-02-24 18:46:18 +01:00
|
|
|
bool logx, logy;
|
2009-01-08 16:18:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector< std::pair<double,double> > InterpolatePairs;
|
|
|
|
|
|
|
|
Interpolate buildInterpolateFromFile(const char *fname)
|
|
|
|
throw (NoSuchFileException);
|
2009-02-24 18:46:18 +01:00
|
|
|
Interpolate buildInterpolateFromColumns(const char *fname, uint32_t col1, uint32_t col2, bool logx = false, bool logy = false)
|
2009-01-08 16:18:03 +01:00
|
|
|
throw (NoSuchFileException,InvalidRangeException);
|
|
|
|
Interpolate buildFromVector(const InterpolatePairs& v);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|