mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Imported Healpix, cfitsio, cosmotool. Added cmake tool to build dependencies (cfitsio, hdf5, netcdf, boost, healpix, gsl, ..). Adjusted CMakeLists.txt
This commit is contained in:
parent
4bfb62f177
commit
51f6798f88
241 changed files with 243806 additions and 0 deletions
163
external/cfitsio/eval_defs.h
vendored
Normal file
163
external/cfitsio/eval_defs.h
vendored
Normal file
|
@ -0,0 +1,163 @@
|
|||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#if defined(__sgi) || defined(__hpux)
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
#ifdef sparc
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "fitsio2.h"
|
||||
|
||||
#define MAXDIMS 5
|
||||
#define MAXSUBS 10
|
||||
#define MAXVARNAME 80
|
||||
#define CONST_OP -1000
|
||||
#define pERROR -1
|
||||
#define MAX_STRLEN 256
|
||||
#define MAX_STRLEN_S "255"
|
||||
|
||||
#ifndef FFBISON
|
||||
#include "eval_tab.h"
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct {
|
||||
char name[MAXVARNAME+1];
|
||||
int type;
|
||||
long nelem;
|
||||
int naxis;
|
||||
long naxes[MAXDIMS];
|
||||
char *undef;
|
||||
void *data;
|
||||
} DataInfo;
|
||||
|
||||
typedef struct {
|
||||
long nelem;
|
||||
int naxis;
|
||||
long naxes[MAXDIMS];
|
||||
char *undef;
|
||||
union {
|
||||
double dbl;
|
||||
long lng;
|
||||
char log;
|
||||
char str[MAX_STRLEN];
|
||||
double *dblptr;
|
||||
long *lngptr;
|
||||
char *logptr;
|
||||
char **strptr;
|
||||
void *ptr;
|
||||
} data;
|
||||
} lval;
|
||||
|
||||
typedef struct Node {
|
||||
int operation;
|
||||
void (*DoOp)(struct Node *this);
|
||||
int nSubNodes;
|
||||
int SubNodes[MAXSUBS];
|
||||
int type;
|
||||
lval value;
|
||||
} Node;
|
||||
|
||||
typedef struct {
|
||||
fitsfile *def_fptr;
|
||||
int (*getData)( char *dataName, void *dataValue );
|
||||
int (*loadData)( int varNum, long fRow, long nRows,
|
||||
void *data, char *undef );
|
||||
|
||||
int compressed;
|
||||
int timeCol;
|
||||
int parCol;
|
||||
int valCol;
|
||||
|
||||
char *expr;
|
||||
int index;
|
||||
int is_eobuf;
|
||||
|
||||
Node *Nodes;
|
||||
int nNodes;
|
||||
int nNodesAlloc;
|
||||
int resultNode;
|
||||
|
||||
long firstRow;
|
||||
long nRows;
|
||||
|
||||
int nCols;
|
||||
iteratorCol *colData;
|
||||
DataInfo *varData;
|
||||
PixelFilter *pixFilter;
|
||||
|
||||
long firstDataRow;
|
||||
long nDataRows;
|
||||
long totalRows;
|
||||
|
||||
int datatype;
|
||||
int hdutype;
|
||||
|
||||
int status;
|
||||
} ParseData;
|
||||
|
||||
typedef enum {
|
||||
rnd_fct = 1001,
|
||||
sum_fct,
|
||||
nelem_fct,
|
||||
sin_fct,
|
||||
cos_fct,
|
||||
tan_fct,
|
||||
asin_fct,
|
||||
acos_fct,
|
||||
atan_fct,
|
||||
sinh_fct,
|
||||
cosh_fct,
|
||||
tanh_fct,
|
||||
exp_fct,
|
||||
log_fct,
|
||||
log10_fct,
|
||||
sqrt_fct,
|
||||
abs_fct,
|
||||
atan2_fct,
|
||||
ceil_fct,
|
||||
floor_fct,
|
||||
round_fct,
|
||||
min1_fct,
|
||||
min2_fct,
|
||||
max1_fct,
|
||||
max2_fct,
|
||||
near_fct,
|
||||
circle_fct,
|
||||
box_fct,
|
||||
elps_fct,
|
||||
isnull_fct,
|
||||
defnull_fct,
|
||||
gtifilt_fct,
|
||||
regfilt_fct,
|
||||
ifthenelse_fct,
|
||||
row_fct,
|
||||
null_fct,
|
||||
median_fct,
|
||||
average_fct,
|
||||
stddev_fct,
|
||||
nonnull_fct,
|
||||
angsep_fct,
|
||||
gasrnd_fct,
|
||||
poirnd_fct,
|
||||
strmid_fct,
|
||||
strpos_fct
|
||||
} funcOp;
|
||||
|
||||
extern ParseData gParse;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int ffparse(void);
|
||||
int fflex(void);
|
||||
void ffrestart(FILE*);
|
||||
|
||||
void Evaluate_Parser( long firstRow, long nRows );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue