|
#define | VERSION "1.x" |
|
#define | DATE "2007-06-04" |
|
#define | THREADS_NMAX 16 /* max. number of threads */ |
|
#define | BANNER "LDACtoASC" |
|
#define | MYVERSION VERSION |
|
#define | COPYRIGHT "Emmanuel BERTIN <bertin@iap.fr>" |
|
#define | WEBSITE "http://astromatic.net/software/sextractor/" |
|
#define | INSTITUTE "IAP http://www.iap.fr" |
|
#define | PI 3.1415926535898 |
|
#define | BIG 1e+30 /* a huge number */ |
|
#define | TINY (1.0/BIG) /* a small number */ |
|
#define | OUTPUT stdout /* where all msgs are sent */ |
|
#define | MAXCHAR 512 /* max. number of characters */ |
|
#define | MAXFILE 32768 /* max number of input files */ |
|
#define | SEEK_SET 0 |
|
#define | SEEK_CUR 1 |
|
#define | EXIT_SUCCESS 0 |
|
#define | EXIT_FAILURE -1 |
|
#define | RETURN_OK 0 |
|
#define | RETURN_ERROR (-1) |
|
#define | RETURN_FATAL_ERROR (-2) |
|
#define | DEXP(x) exp(2.30258509299*(x)) /* 10^x */ |
|
#define | QFREAD(ptr, size, afile, fname) |
|
#define | QFWRITE(ptr, size, afile, fname) |
|
#define | QFSEEK(afile, offset, pos, fname) |
|
#define | QFTELL(pos, afile, fname) |
|
#define | QCALLOC(ptr, typ, nel) |
|
#define | QMALLOC(ptr, typ, nel) |
|
#define | QREALLOC(ptr, typ, nel) |
|
#define | QMEMCPY(ptrin, ptrout, typ, nel) |
|
#define | QPOPEN(file, cmdline, flag) |
|
#define | RINT(x) (int)(floor(x+0.5)) |
|
#define | NPRINTF if (prefs.verbose_type == NORM) fprintf |
|
#define | NFPRINTF(w, x) |
|
#define | FPRINTF if (prefs.verbose_type == FULL) fprintf |
|
#define | QPRINTF if (prefs.verbose_type != QUIET) fprintf |
|
#define | QIPRINTF(w, x) |
|
#define | QBPRINTF(w, x) |
|