~ubuntu-branches/ubuntu/wily/eso-midas/wily-proposed

« back to all changes in this revision

Viewing changes to stdred/feros/incl/rebin.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)rebin.h  19.1 (ESO-IPG) 02/25/03 14:21:12 */
 
2
/*
 
3
  rebin.h              Thomas Szeifert  -   LSW Heidelberg 080797
 
4
 
 
5
 
 
6
 
 
7
------------------------------------------------------------*/
 
8
 
 
9
#define MAXINTENS   99999.0
 
10
#define MININTENS  -99999.0 
 
11
 
 
12
#define LINEAR    0
 
13
#define QUADRATIC 1
 
14
#define SPLINE    2
 
15
 
 
16
#define NINT(x)       ((x) + ( ((x) < 0.0) ? -0.5: 0.5))
 
17
 
 
18
extern void rebin
 
19
 
20
#ifdef __STDC__
 
21
 double *, double *, float *, float *, 
 
22
 int , int , double, int, char
 
23
#endif
 
24
 );
 
25
 
 
26
extern void closest_index
 
27
 
28
#ifdef __STDC__
 
29
 double, double *, double *, int, 
 
30
 int, double *, int * ,double, char
 
31
#endif
 
32
 );
 
33
 
 
34
 
 
35
 
 
36
 
 
37