~albertog/libpspio/trunk

« back to all changes in this revision

Viewing changes to src/interpolation.c

  • Committer: Micael Oliveira
  • Date: 2015-09-14 07:39:04 UTC
  • Revision ID: mjt.oliveira@ulg.ac.be-20150914073904-yzhqy0n23i7s1vfo
Hidding contents of interpolation and jb_spline structures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
 
35
35
/**********************************************************************
 
36
 * Data structures                                                    *
 
37
 **********************************************************************/
 
38
 
 
39
struct interpolation {
 
40
  int method; /**< Interpolation method */
 
41
 
 
42
#ifdef HAVE_GSL
 
43
  /* Objects to the used with GSL interpolation */
 
44
  gsl_spline *gsl_spl;       /**< gsl spline structure */
 
45
  gsl_interp_accel *gsl_acc; /**< gsl accelerator for interpolation lookups */
 
46
#endif
 
47
 
 
48
  /* Objects to be used with jb_spline */
 
49
  jb_spline_t *jb_spl;       /**< JB spline structure */
 
50
};
 
51
 
 
52
/**********************************************************************
36
53
 * Global routines                                                    *
37
54
 **********************************************************************/
38
55