diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-05 18:05:27 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-05 18:05:27 -0500 |
commit | 4a3aef3f7236d2b3267aead61f11c587c6f4bddb (patch) | |
tree | bea89287f8cf6290fc230fb82fb11b3b9a5c6e0f /include/fusebuf.h | |
parent | 9166f1762976cb64acfd8c9ecc067132ffefa615 (diff) | |
download | calfuse-4a3aef3f7236d2b3267aead61f11c587c6f4bddb.tar.gz |
Further improvements
Diffstat (limited to 'include/fusebuf.h')
-rw-r--r-- | include/fusebuf.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/include/fusebuf.h b/include/fusebuf.h deleted file mode 100644 index 954a979..0000000 --- a/include/fusebuf.h +++ /dev/null @@ -1,34 +0,0 @@ -/******************************************************************************* - * Johns Hopkins University - * Center For Astrophysical Sciences - * FUSE - ******************************************************************************* - * - * Synopsis: #include "fusebuf.h" - * - * Description: Structure definitions and routine prototyping for multi-line - * file buffering as handled by fusebuf.c. - * - * History: 08/17/98 gak Begin work - * 08/18/98 gak Tested and working - * (as called by cf_make_ff) - * - ******************************************************************************/ - -typedef struct { - fitsfile *fits; /* Pointer to open FITS structure. */ - int hdu; /* HDU containing image to buffer. */ - int nx, ny; /* X and Y dimensions of the image. */ - float **buf, /* Array of pointers to buffered lines. */ - **y; /* Pointers to buffered lines in y order. */ - int nl, /* Number of lines buffered. */ - yfirst, ylast, /* Row numbers of buffered lines */ - znext; /* Ordinal of next line ptr to use. */ -} imgbuf; - -int cf_openextn(fitsfile *, int, imgbuf *, int, int *); - -int cf_closeextn(imgbuf *, int *); - -float getpixf(imgbuf *, int, int); - |