1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
|
#ifndef _FITSIO2_H
#define _FITSIO2_H
#include "fitsio.h"
#define DBUFFSIZE 28800 /* size of data buffer in bytes */
#define NIOBUF 25 /* number of IO buffers to create */
#define IOBUFLEN 2880 /* size in bytes of each IO buffer */
#define MINDIRECT 8640 /* minimum size for direct reads and writes */
/* MINDIRECT must have a value >= 8640 */
#define NATIVE 0 /* a generic machine that uses IEEE formats */
#define ULTRIX 1
#define ALPHA_OSF 2
#define VAXVMS 3
#define ALPHAVMS 4
#define IBMPC 5
#define CRAY 6
#define GFLOAT 1
#define IEEEFLOAT 2
/* the following are used to determine what type machine we are running on */
/* the following block determines the size of longs on SGI IRIX machines */
#if defined(_MIPS_SZLONG)
# if _MIPS_SZLONG == 32
# define LONGSIZE 32
# elif _MIPS_SZLONG == 64
# define LONGSIZE 64
# else
# error "can't handle long size given by _MIPS_SZLONG"
# endif
#endif
#if defined(vax) && defined(VMS)
#define MACHINE VAXVMS
#define BYTESWAPPED TRUE
#elif defined(__alpha) && defined(__VMS)
#if (__D_FLOAT == TRUE)
/* this float option is the same as for VAX/VMS machines. */
#define MACHINE VAXVMS
#define BYTESWAPPED TRUE
#elif (__G_FLOAT == TRUE)
/* G_FLOAT is the default for ALPHA VMS systems */
#define MACHINE ALPHAVMS
#define BYTESWAPPED TRUE
#define FLOATTYPE GFLOAT
#elif (__IEEE_FLOAT == TRUE)
#define MACHINE ALPHAVMS
#define BYTESWAPPED TRUE
#define FLOATTYPE IEEEFLOAT
#endif
#elif defined(__alpha) && defined(__unix__)
#define MACHINE ALPHA_OSF
#define BYTESWAPPED TRUE
#define LONGSIZE 64
#elif defined(ultrix) && defined(unix)
#define MACHINE ULTRIX
#define BYTESWAPPED TRUE
#elif defined(__i386) || defined(__i386__) || defined(__i486__) || defined(__i586__)
/* IBM PC */
#define MACHINE IBMPC
#define BYTESWAPPED TRUE
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__TURBOC__)
/* IBM PC running DOS or Windows */
#define MACHINE IBMPC
#define BYTESWAPPED TRUE
#elif defined(_NI_mswin_)
/* LabWindows/CVI with Windows 3.x, 95, or NT */
#define MACHINE IBMPC
#define BYTESWAPPED TRUE
#elif defined(__EMX__)
/* IBM PC running OS/2 */
#define MACHINE IBMPC
#define BYTESWAPPED TRUE
#elif defined(__sparcv9)
/* SUN Solaris7 in 64-bit mode */
#define BYTESWAPPED FALSE
#define MACHINE NATIVE
#define LONGSIZE 64
#else
/* assume machine uses the same IEEE formats as used in FITS files */
#define MACHINE NATIVE
#define BYTESWAPPED FALSE
#endif
/* assume longs are 4 bytes long, unless previously set otherwise */
#ifndef LONGSIZE
#define LONGSIZE 32
#endif
#define IGNORE_EOF 1
#define REPORT_EOF 0
#define DATA_UNDEFINED -1
#define NULL_UNDEFINED 1234554321
#define ASCII_NULL_UNDEFINED 1 /* indicate no defined null value */
#define maxvalue(A,B) ((A) > (B) ? (A) : (B))
#define minvalue(A,B) ((A) < (B) ? (A) : (B))
#define FSTRCMP(a,b) ((a)[0]<(b)[0]? -1:(a)[0]>(b)[0]?1:strcmp((a),(b)))
#define FSTRNCMP(a,b,n) ((a)[0]<(b)[0]?-1:(a)[0]>(b)[0]?1:strncmp((a),(b),(n)))
#if defined(__VMS) || defined(VMS)
#define FNANMASK 0xFFFF /* mask all bits */
#define DNANMASK 0xFFFF /* mask all bits */
#else
#define FNANMASK 0x7F80 /* mask bits 1 - 8; all set on NaNs */
/* all 0 on underflow or 0. */
#define DNANMASK 0x7FF0 /* mask bits 1 - 11; all set on NaNs */
/* all 0 on underflow or 0. */
#endif
#if MACHINE == CRAY
/*
Cray machines: the large negative integer corresponds
to the 3 most sig digits set to 1. If these
3 bits are set in a floating point number (64 bits), then it represents
a reserved value (i.e., a NaN)
*/
#define fnan(L) ( (L) >= 0xE000000000000000 ? 1 : 0) )
#else
/* these functions work for both big and little endian machines */
/* that use the IEEE floating point format for internal numbers */
/* These functions tests whether the float value is a reserved IEEE */
/* value such as a Not-a-Number (NaN), or underflow, overflow, or */
/* infinity. The functions returns 1 if the value is a NaN, overflow */
/* or infinity; it returns 2 if the value is an denormalized underflow */
/* value; otherwise it returns 0. fnan tests floats, dnan tests doubles */
#define fnan(L) \
( (L & FNANMASK) == FNANMASK ? 1 : (L & FNANMASK) == 0 ? 2 : 0)
#define dnan(L) \
( (L & DNANMASK) == DNANMASK ? 1 : (L & DNANMASK) == 0 ? 2 : 0)
#endif
#define DUCHAR_MAX 255.49 /* max double value that fits in an unsigned char */
#define DUCHAR_MIN -0.49 /* min double value that fits in an unsigned char */
#define DUSHRT_MAX 65535.49 /* max double value that fits in a unsigned short*/
#define DUSHRT_MIN -0.49 /* min double value that fits in an unsigned short */
#define DSHRT_MAX 32767.49 /* max double value that fits in a short */
#define DSHRT_MIN -32768.49 /* min double value that fits in a short */
#define DULONG_MAX 4294967295.49 /* max double that fits in a unsigned long */
#define DULONG_MIN -0.49 /* min double value that fits in an unsigned long */
#define DLONG_MAX 2147483647.49 /* max double value that fits in a long */
#define DLONG_MIN -2147483648.49 /* min double value that fits in a long */
#define DUINT_MAX 4294967295.49 /* max dbl that fits in a unsigned 4-byte int */
#define DUINT_MIN -0.49 /* min dbl that fits in an unsigned 4-byte int */
#define DINT_MAX 2147483647.49 /* max double value that fits in a 4-byte int */
#define DINT_MIN -2147483648.49 /* min double value that fits in a 4-byte int */
#ifndef UINT32_MAX
#define UINT32_MAX 4294967295U /* max unsigned 32-bit integer */
#endif
#ifndef INT32_MAX
#define INT32_MAX 2147483647 /* max 32-bit integer */
#endif
#ifndef INT32_MIN
#define INT32_MIN -2147483647 /* min 32-bit integer */
#endif
#define COMPRESS_NULL_VALUE -2147483647
int ffmkky(char *keyname, char *keyval, char *comm, char *card, int *status);
int ffgnky(fitsfile *fptr, char *card, int *status);
void ffcfmt(char *tform, char *cform);
void ffcdsp(char *tform, char *cform);
void ffswap2(short *values, long nvalues);
void ffswap4(INT32BIT *values, long nvalues);
void ffswap8(double *values, long nvalues);
int ffi2c(long ival, char *cval, int *status);
int ffl2c(int lval, char *cval, int *status);
int ffs2c(char *instr, char *outstr, int *status);
int ffr2f(float fval, int decim, char *cval, int *status);
int ffr2e(float fval, int decim, char *cval, int *status);
int ffd2f(double dval, int decim, char *cval, int *status);
int ffd2e(double dval, int decim, char *cval, int *status);
int ffc2ii(char *cval, long *ival, int *status);
int ffc2ll(char *cval, int *lval, int *status);
int ffc2rr(char *cval, float *fval, int *status);
int ffc2dd(char *cval, double *dval, int *status);
int ffc2x(char *cval, char *dtype, long *ival, int *lval, char *sval,
double *dval, int *status);
int ffc2s(char *instr, char *outstr, int *status);
int ffc2i(char *cval, long *ival, int *status);
int ffc2r(char *cval, float *fval, int *status);
int ffc2d(char *cval, double *dval, int *status);
int ffc2l(char *cval, int *lval, int *status);
void ffxmsg(int action, char *err_message);
int ffgcnt(fitsfile *fptr, char *value, int *status);
int ffgtkn(fitsfile *fptr, int numkey, char *keyname, long *value, int *status);
int fftkyn(fitsfile *fptr, int numkey, char *keyname, char *value, int *status);
int ffgphd(fitsfile *fptr, int maxdim, int *simple, int *bitpix, int *naxis,
long naxes[], long *pcount, long *gcount, int *extend, double *bscale,
double *bzero, long *blank, int *nspace, int *status);
int ffgttb(fitsfile *fptr, long *rowlen, long *nrows, long *pcount,
long *tfield, int *status);
int ffmkey(fitsfile *fptr, char *card, int *status);
int ffikey(fitsfile *fptr, char *card, int *status);
int ffmbyt(fitsfile *fptr, long bytpos, int ignore_err, int *status);
int ffgbyt(fitsfile *fptr, long nbytes, void *buffer, int *status);
int ffpbyt(fitsfile *fptr, long nbytes, void *buffer, int *status);
int ffgbytoff(fitsfile *fptr, long gsize, long ngroups, long offset,
void *buffer, int *status);
int ffpbytoff(fitsfile *fptr, long gsize, long ngroups, long offset,
void *buffer, int *status);
int ffldrc(fitsfile *fptr, long record, int err_mode, int *status);
int ffwhbf(fitsfile *fptr, int *nbuff);
int ffcurbuf(int nbuff, FITSfile **Fptr);
int ffflsh(fitsfile *fptr, int clearbuf, int *status);
int ffbfeof(fitsfile *fptr, int *status);
int ffbfwt(int nbuff, int *status);
int fits_get_num_files(void);
int ffpxsz(int datatype);
int ffoptplt(fitsfile *fptr, const char *tempname, int *status);
int fits_is_this_a_copy(char *urltype);
int fits_already_open(fitsfile **fptr, char *url,
char *urltype, char *infile, char *extspec, char *rowfilter,
char *binspec, char *colspec, int mode,int *isopen, int *status);
int ffedit_columns(fitsfile **fptr, char *outfile, char *expr, int *status);
int fits_get_col_minmax(fitsfile *fptr, int colnum, float *datamin,
float *datamax, int *status);
int ffwritehisto(long totaln, long offset, long firstn, long nvalues,
int narrays, iteratorCol *imagepars, void *userPointer);
int ffcalchist(long totalrows, long offset, long firstrow, long nrows,
int ncols, iteratorCol *colpars, void *userPointer);
int fits_copy_image_cell(fitsfile **fptr, char *outfile, char *colname,
long rownum, int *status);
int fits_copy_image_keywords(fitsfile *infptr, fitsfile *outfptr, int *status);
int fits_get_section_range(char **ptr,long *secmin,long *secmax,long *incre,
int *status);
int ffrhdu(fitsfile *fptr, int *hdutype, int *status);
int ffpinit(fitsfile *fptr, int *status);
int ffainit(fitsfile *fptr, int *status);
int ffbinit(fitsfile *fptr, int *status);
int ffchdu(fitsfile *fptr, int *status);
int ffwend(fitsfile *fptr, int *status);
int ffpdfl(fitsfile *fptr, int *status);
int ffuptf(fitsfile *fptr, int *status);
int ffdblk(fitsfile *fptr, long nblocks, int *status);
int ffgext(fitsfile *fptr, int moveto, int *exttype, int *status);
int ffgtbc(fitsfile *fptr, long *totalwidth, int *status);
int ffgtbp(fitsfile *fptr, char *name, char *value, int *status);
int ffiblk(fitsfile *fptr, long nblock, int headdata, int *status);
int ffshft(fitsfile *fptr, long firstbyte, long nbytes, long nshift,
int *status);
int ffgcpr(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, int writemode, double *scale, double *zero, char *tform,
long *twidth, int *tcode, int *maxelem, long *startpos,
long *elemnum, long *incre, long *repeat,long *rowlen,
int *hdutype, long *tnull, char *snull, int *status);
int ffflushx(FITSfile *fptr);
int ffseek(FITSfile *fptr, long position);
int ffread(FITSfile *fptr, long nbytes, void *buffer,
int *status);
int ffwrite(FITSfile *fptr, long nbytes, void *buffer,
int *status);
int fftrun(fitsfile *fptr, long filesize, int *status);
int ffgcll(fitsfile *fptr, int colnum, long firstrow, long firstelem, long
nelem, int nultyp, char nulval, char *array, char *nularray,
int *anynul, int *status);
int ffgcls(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, int nultyp, char *nulval,
char **array, char *nularray, int *anynul, int *status);
int ffgcls2(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, int nultyp, char *nulval,
char **array, char *nularray, int *anynul, int *status);
int ffgclb(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, unsigned char nulval,
unsigned char *array, char *nularray, int *anynul, int *status);
int ffgclui(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, unsigned short nulval,
unsigned short *array, char *nularray, int *anynul, int *status);
int ffgcli(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, short nulval,
short *array, char *nularray, int *anynul, int *status);
int ffgcluj(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, unsigned long nulval,
unsigned long *array, char *nularray, int *anynul, int *status);
int ffgclj(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, long nulval, long *array,
char *nularray, int *anynul, int *status);
int ffgcluk(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, unsigned int nulval,
unsigned int *array, char *nularray, int *anynul, int *status);
int ffgclk(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, int nulval, int *array,
char *nularray, int *anynul, int *status);
int ffgcle(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, float nulval, float *array,
char *nularray, int *anynul, int *status);
int ffgcld(fitsfile *fptr, int colnum, long firstrow, long firstelem,
long nelem, long elemincre, int nultyp, double nulval,
double *array, char *nularray, int *anynul, int *status);
int ffpi1b(fitsfile *fptr, long nelem, long incre, unsigned char *buffer,
int *status);
int ffpi2b(fitsfile *fptr, long nelem, long incre, short *buffer, int *status);
int ffpi4b(fitsfile *fptr, long nelem, long incre, INT32BIT *buffer,
int *status);
int ffpr4b(fitsfile *fptr, long nelem, long incre, float *buffer, int *status);
int ffpr8b(fitsfile *fptr, long nelem, long incre, double *buffer, int *status);
int ffgi1b(fitsfile *fptr, long pos, long nelem, long incre,
unsigned char *buffer, int *status);
int ffgi2b(fitsfile *fptr, long pos, long nelem, long incre, short *buffer,
int *status);
int ffgi4b(fitsfile *fptr, long pos, long nelem, long incre, INT32BIT *buffer,
int *status);
int ffgr4b(fitsfile *fptr, long pos, long nelem, long incre, float *buffer,
int *status);
int ffgr8b(fitsfile *fptr, long pos, long nelem, long incre, double *buffer,
int *status);
int ffcins(fitsfile *fptr, long naxis1, long naxis2, long nbytes,
long bytepos, int *status);
int ffcdel(fitsfile *fptr, long naxis1, long naxis2, long nbytes,
long bytepos, int *status);
int ffkshf(fitsfile *fptr, int firstcol, int tfields, int nshift, int *status);
int fffi1i1(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, unsigned char nullval, char
*nullarray, int *anynull, unsigned char *output, int *status);
int fffi2i1(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, unsigned char nullval, char *nullarray,
int *anynull, unsigned char *output, int *status);
int fffi4i1(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, unsigned char nullval, char *nullarray,
int *anynull, unsigned char *output, int *status);
int fffr4i1(float *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char nullval, char *nullarray,
int *anynull, unsigned char *output, int *status);
int fffr8i1(double *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char nullval, char *nullarray,
int *anynull, unsigned char *output, int *status);
int fffstri1(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
unsigned char nullval, char *nullarray, int *anynull,
unsigned char *output, int *status);
int fffi1u2(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, unsigned short nullval,
char *nullarray,
int *anynull, unsigned short *output, int *status);
int fffi2u2(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, unsigned short nullval, char *nullarray,
int *anynull, unsigned short *output, int *status);
int fffi4u2(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, unsigned short nullval, char *nullarray,
int *anynull, unsigned short *output, int *status);
int fffr4u2(float *input, long ntodo, double scale, double zero,
int nullcheck, unsigned short nullval, char *nullarray,
int *anynull, unsigned short *output, int *status);
int fffr8u2(double *input, long ntodo, double scale, double zero,
int nullcheck, unsigned short nullval, char *nullarray,
int *anynull, unsigned short *output, int *status);
int fffstru2(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
unsigned short nullval, char *nullarray, int *anynull,
unsigned short *output, int *status);
int fffi1i2(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, short nullval, char *nullarray,
int *anynull, short *output, int *status);
int fffi2i2(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, short nullval, char *nullarray,
int *anynull, short *output, int *status);
int fffi4i2(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, short nullval, char *nullarray,
int *anynull, short *output, int *status);
int fffr4i2(float *input, long ntodo, double scale, double zero,
int nullcheck, short nullval, char *nullarray,
int *anynull, short *output, int *status);
int fffr8i2(double *input, long ntodo, double scale, double zero,
int nullcheck, short nullval, char *nullarray,
int *anynull, short *output, int *status);
int fffstri2(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
short nullval, char *nullarray, int *anynull, short *output,
int *status);
int fffi1u4(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, unsigned long nullval,
char *nullarray,
int *anynull, unsigned long *output, int *status);
int fffi2u4(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, unsigned long nullval, char *nullarray,
int *anynull, unsigned long *output, int *status);
int fffi4u4(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, unsigned long nullval, char *nullarray,
int *anynull, unsigned long *output, int *status);
int fffr4u4(float *input, long ntodo, double scale, double zero,
int nullcheck, unsigned long nullval, char *nullarray,
int *anynull, unsigned long *output, int *status);
int fffr8u4(double *input, long ntodo, double scale, double zero,
int nullcheck, unsigned long nullval, char *nullarray,
int *anynull, unsigned long *output, int *status);
int fffstru4(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
unsigned long nullval, char *nullarray, int *anynull,
unsigned long *output, int *status);
int fffi1i4(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, long nullval, char *nullarray,
int *anynull, long *output, int *status);
int fffi2i4(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, long nullval, char *nullarray,
int *anynull, long *output, int *status);
int fffi4i4(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, long nullval, char *nullarray,
int *anynull, long *output, int *status);
int fffr4i4(float *input, long ntodo, double scale, double zero,
int nullcheck, long nullval, char *nullarray,
int *anynull, long *output, int *status);
int fffr8i4(double *input, long ntodo, double scale, double zero,
int nullcheck, long nullval, char *nullarray,
int *anynull, long *output, int *status);
int fffstri4(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
long nullval, char *nullarray, int *anynull, long *output,
int *status);
int fffi1int(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, int nullval, char *nullarray,
int *anynull, int *output, int *status);
int fffi2int(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, int nullval, char *nullarray,
int *anynull, int *output, int *status);
int fffi4int(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, int nullval, char *nullarray,
int *anynull, int *output, int *status);
int fffr4int(float *input, long ntodo, double scale, double zero,
int nullcheck, int nullval, char *nullarray,
int *anynull, int *output, int *status);
int fffr8int(double *input, long ntodo, double scale, double zero,
int nullcheck, int nullval, char *nullarray,
int *anynull, int *output, int *status);
int fffstrint(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
int nullval, char *nullarray, int *anynull, int *output,
int *status);
int fffi1uint(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, unsigned int nullval,
char *nullarray, int *anynull, unsigned int *output, int *status);
int fffi2uint(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, unsigned int nullval, char *nullarray,
int *anynull, unsigned int *output, int *status);
int fffi4uint(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, unsigned int nullval, char *nullarray,
int *anynull, unsigned int *output, int *status);
int fffr4uint(float *input, long ntodo, double scale, double zero,
int nullcheck, unsigned int nullval, char *nullarray,
int *anynull, unsigned int *output, int *status);
int fffr8uint(double *input, long ntodo, double scale, double zero,
int nullcheck, unsigned int nullval, char *nullarray,
int *anynull, unsigned int *output, int *status);
int fffstruint(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
unsigned int nullval, char *nullarray, int *anynull,
unsigned int *output, int *status);
int fffi1r4(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, float nullval, char *nullarray,
int *anynull, float *output, int *status);
int fffi2r4(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, float nullval, char *nullarray,
int *anynull, float *output, int *status);
int fffi4r4(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, float nullval, char *nullarray,
int *anynull, float *output, int *status);
int fffr4r4(float *input, long ntodo, double scale, double zero,
int nullcheck, float nullval, char *nullarray,
int *anynull, float *output, int *status);
int fffr8r4(double *input, long ntodo, double scale, double zero,
int nullcheck, float nullval, char *nullarray,
int *anynull, float *output, int *status);
int fffstrr4(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
float nullval, char *nullarray, int *anynull, float *output,
int *status);
int fffi1r8(unsigned char *input, long ntodo, double scale, double zero,
int nullcheck, unsigned char tnull, double nullval, char *nullarray,
int *anynull, double *output, int *status);
int fffi2r8(short *input, long ntodo, double scale, double zero,
int nullcheck, short tnull, double nullval, char *nullarray,
int *anynull, double *output, int *status);
int fffi4r8(INT32BIT *input, long ntodo, double scale, double zero,
int nullcheck, INT32BIT tnull, double nullval, char *nullarray,
int *anynull, double *output, int *status);
int fffr4r8(float *input, long ntodo, double scale, double zero,
int nullcheck, double nullval, char *nullarray,
int *anynull, double *output, int *status);
int fffr8r8(double *input, long ntodo, double scale, double zero,
int nullcheck, double nullval, char *nullarray,
int *anynull, double *output, int *status);
int fffstrr8(char *input, long ntodo, double scale, double zero,
long twidth, double power, int nullcheck, char *snull,
double nullval, char *nullarray, int *anynull, double *output,
int *status);
int ffi1fi1(unsigned char *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffu2fi1(unsigned short *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffi2fi1(short *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffu4fi1(unsigned long *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffi4fi1(long *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffuintfi1(unsigned int *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffintfi1(int *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffr4fi1(float *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffr8fi1(double *array, long ntodo, double scale, double zero,
unsigned char *buffer, int *status);
int ffi1fi2(unsigned char *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffu2fi2(unsigned short *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffi2fi2(short *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffu4fi2(unsigned long *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffi4fi2(long *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffuintfi2(unsigned int *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffintfi2(int *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffr4fi2(float *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffr8fi2(double *array, long ntodo, double scale, double zero,
short *buffer, int *status);
int ffi1fi4(unsigned char *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffu2fi4(unsigned short *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffi2fi4(short *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffu4fi4(unsigned long *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffi4fi4(long *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffuintfi4(unsigned int *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffintfi4(int *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffr4fi4(float *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffr8fi4(double *array, long ntodo, double scale, double zero,
INT32BIT *buffer, int *status);
int ffi1fr4(unsigned char *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffu2fr4(unsigned short *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffi2fr4(short *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffu4fr4(unsigned long *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffi4fr4(long *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffuintfr4(unsigned int *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffintfr4(int *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffr4fr4(float *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffr8fr4(double *array, long ntodo, double scale, double zero,
float *buffer, int *status);
int ffi1fr8(unsigned char *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffu2fr8(unsigned short *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffi2fr8(short *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffu4fr8(unsigned long *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffi4fr8(long *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffuintfr8(unsigned int *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffintfr8(int *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffr4fr8(float *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffr8fr8(double *array, long ntodo, double scale, double zero,
double *buffer, int *status);
int ffi1fstr(unsigned char *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffu2fstr(unsigned short *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffi2fstr(short *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffu4fstr(unsigned long *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffi4fstr(long *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffintfstr(int *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffuintfstr(unsigned int *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffr4fstr(float *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
int ffr8fstr(double *input, long ntodo, double scale, double zero,
char *cform, long twidth, char *output, int *status);
/* the following 4 routines are VMS macros used on VAX or Alpha VMS */
void ieevpd(double *inarray, double *outarray, long *nvals);
void ieevud(double *inarray, double *outarray, long *nvals);
void ieevpr(float *inarray, float *outarray, long *nvals);
void ieevur(float *inarray, float *outarray, long *nvals);
/* routines related to the lexical parser */
int ffselect_table(fitsfile **fptr, char *outfile, char *expr, int *status);
int ffiprs( fitsfile *fptr, int compressed, char *expr, int maxdim,
int *datatype, long *nelem, int *naxis, long *naxes,
int *status );
void ffcprs( void );
int ffcvtn( int inputType, void *input, char *undef, long ntodo,
int outputType, void *nulval, void *output,
int *anynull, int *status );
int parse_data( long totalrows, long offset, long firstrow,
long nrows, int nCols, iteratorCol *colData,
void *userPtr );
int uncompress_hkdata( fitsfile *fptr, long ntimes,
double *times, int *status );
int ffffrw_work( long totalrows, long offset, long firstrow,
long nrows, int nCols, iteratorCol *colData,
void *userPtr );
/* image compression routines */
int imcomp_init_table(fitsfile *outfptr, int compress_type,
int bitpix, int naxis,long *naxes,long *tilesize,
int rice_blocksize,int rice_nbits,int *status);
int imcomp_calc_max_elem (int comptype, int nx, int blocksize);
int imcomp_copy_imheader(fitsfile *infptr, fitsfile *outfptr,
int *status);
int imcomp_compress_image (fitsfile *infptr, fitsfile *outfptr,
int *status);
int imcomp_compress_tile (fitsfile *outfptr, long row,
int datatype, void *tiledata, long tilelen, int *status);
/* image decompression routines */
int fits_read_compressed_img_plane(fitsfile *fptr, int datatype,
int bytesperpixel, long nplane, long *firstcoord, long *lastcoord,
long *inc, long *naxes, int nullcheck, void *nullval,
void *array, char *nullarray, int *anynul, long *nread, int *status);
int imcomp_get_compressed_image_par(fitsfile *infptr, int *status);
int imcomp_decompress_tile (fitsfile *infptr,
int nrow, int tilesize, int datatype, int nullcheck,
void *nulval, void *buffer, char *bnullarray, int *anynul,
int *status);
int imcomp_copy_overlap (char *tile, int datatype, int ndim,
long *tfpixel, long *tlpixel, char *bnullarray, char *image,
long *fpixel, long *lpixel, int nullcheck, char *nullarray,
int *status);
int pl_p2li (int *pxsrc, int xs, short *lldst, int npix);
int pl_l2pi (short *ll_src, int xs, int *px_dst, int npix);
/* general driver routines */
int urltype2driver(char *urltype, int *driver);
int fits_init_cfitsio(void);
int fits_register_driver( char *prefix,
int (*init)(void),
int (*fitsshutdown)(void),
int (*setoptions)(int option),
int (*getoptions)(int *options),
int (*getversion)(int *version),
int (*checkfile) (char *urltype, char *infile, char *outfile),
int (*fitsopen)(char *filename, int rwmode, int *driverhandle),
int (*fitscreate)(char *filename, int *driverhandle),
int (*fitstruncate)(int driverhandle, long filesize),
int (*fitsclose)(int driverhandle),
int (*fremove)(char *filename),
int (*size)(int driverhandle, long *size),
int (*flush)(int driverhandle),
int (*seek)(int driverhandle, long offset),
int (*fitsread) (int driverhandle, void *buffer, long nbytes),
int (*fitswrite)(int driverhandle, void *buffer, long nbytes));
/* file driver I/O routines */
int file_init(void);
int file_setoptions(int options);
int file_getoptions(int *options);
int file_getversion(int *version);
int file_shutdown(void);
int file_checkfile(char *urltype, char *infile, char *outfile);
int file_open(char *filename, int rwmode, int *driverhandle);
int file_compress_open(char *filename, int rwmode, int *hdl);
int file_openfile(char *filename, int rwmode, FILE **diskfile);
int file_create(char *filename, int *driverhandle);
int file_truncate(int driverhandle, long filesize);
int file_size(int driverhandle, long *filesize);
int file_close(int driverhandle);
int file_remove(char *filename);
int file_flush(int driverhandle);
int file_seek(int driverhandle, long offset);
int file_read (int driverhandle, void *buffer, long nbytes);
int file_write(int driverhandle, void *buffer, long nbytes);
int file_is_compressed(char *filename);
/* memory driver I/O routines */
int mem_init(void);
int mem_setoptions(int options);
int mem_getoptions(int *options);
int mem_getversion(int *version);
int mem_shutdown(void);
int mem_create(char *filename, int *handle);
int mem_openmem(void **buffptr, size_t *buffsize, size_t deltasize,
void *(*memrealloc)(void *p, size_t newsize), int *handle);
int mem_createmem(size_t memsize, int *handle);
int stdin_checkfile(char *urltype, char *infile, char *outfile);
int stdin_open(char *filename, int rwmode, int *handle);
int stdin2mem(int hd);
int stdin2file(int hd);
int stdout_close(int handle);
int mem_compress_open(char *filename, int rwmode, int *hdl);
int mem_iraf_open(char *filename, int rwmode, int *hdl);
int mem_size(int handle, long *filesize);
int mem_truncate(int handle, long filesize);
int mem_close_free(int handle);
int mem_close_keep(int handle);
int mem_seek(int handle, long offset);
int mem_read(int hdl, void *buffer, long nbytes);
int mem_write(int hdl, void *buffer, long nbytes);
int mem_uncompress2mem(char *filename, FILE *diskfile, int hdl);
int iraf2mem(char *filename, char **buffptr, size_t *buffsize,
size_t *filesize, int *status);
/* root driver I/O routines */
int root_init(void);
int root_setoptions(int options);
int root_getoptions(int *options);
int root_getversion(int *version);
int root_shutdown(void);
int root_open(char *filename, int rwmode, int *driverhandle);
int root_create(char *filename, int *driverhandle);
int root_close(int driverhandle);
int root_flush(int driverhandle);
int root_seek(int driverhandle, long offset);
int root_read (int driverhandle, void *buffer, long nbytes);
int root_write(int driverhandle, void *buffer, long nbytes);
int root_size(int handle, long *filesize);
/* http driver I/O routines */
int http_checkfile(char *urltype, char *infile, char *outfile);
int http_open(char *filename, int rwmode, int *driverhandle);
int http_file_open(char *filename, int rwmode, int *driverhandle);
int http_compress_open(char *filename, int rwmode, int *driverhandle);
/* ftp driver I/O routines */
int ftp_checkfile(char *urltype, char *infile, char *outfile);
int ftp_open(char *filename, int rwmode, int *driverhandle);
int ftp_file_open(char *filename, int rwmode, int *driverhandle);
int ftp_compress_open(char *filename, int rwmode, int *driverhandle);
int uncompress2mem(char *filename, FILE *diskfile,
char **buffptr, size_t *buffsize,
void *(*mem_realloc)(void *p, size_t newsize),
size_t *filesize, int *status);
int uncompress2mem_from_mem(
char *inmemptr,
size_t inmemsize,
char **buffptr,
size_t *buffsize,
void *(*mem_realloc)(void *p, size_t newsize),
size_t *filesize,
int *status);
int uncompress2file(char *filename,
FILE *indiskfile,
FILE *outdiskfile,
int *status);
int compress2mem_from_mem(
char *inmemptr,
size_t inmemsize,
char **buffptr,
size_t *buffsize,
void *(*mem_realloc)(void *p, size_t newsize),
size_t *filesize,
int *status);
/* ==================== SHARED MEMORY DRIVER SECTION ======================= */
#ifdef HAVE_SHMEM_SERVICES
#include "drvrsmem.h"
#endif
/* ==================== END OF SHARED MEMORY DRIVER SECTION ================ */
#endif
#if defined(vms) || defined(__vms) || defined(WIN32) || defined(__WIN32__) || defined(macintosh)
/* ================================================================== */
/* A hack for nonunix machines, which lack strcasecmp and strncasecmp */
/* ================================================================== */
int strcasecmp (const char *s1, const char *s2 );
int strncasecmp(const char *s1, const char *s2, size_t n);
#endif
|