IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 24, 2010, 11:22:25 AM (16 years ago)
Author:
eugene
Message:

large update merging in changes for Ohana to support large files

Location:
trunk/Ohana
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/imregister/detrend/output.c

    r14590 r27435  
    55extern double drand48();
    66
    7 int OutputSubset (DetReg *image, int Nimage, Match *match, int Nmatch) {
     7int OutputSubset (DetReg *image, off_t Nimage, Match *match, off_t Nmatch) {
    88
    99  if (output.table != (char *) NULL) {
     
    1919
    2020/* write out complete binary FITS table in format of db */
    21 int DumpFitsBintable (char *filename, DetReg *image, Match *match, int Nmatch) {
    22 
    23   int i, j;
     21int DumpFitsBintable (char *filename, DetReg *image, Match *match, off_t Nmatch) {
     22
     23  off_t i, j;
    2424  FILE *f;
    2525  Header header;
     
    6060}
    6161
    62 int DumpFitsTable (char *filename, DetReg *detdata, Match *match, int Nmatch) {
     62int DumpFitsTable (char *filename, DetReg *detdata, Match *match, off_t Nmatch) {
    6363 
    6464  Header header, theader;
     
    6969  char *startstr, *stopstr, *regstr, *line, key[33], ccdinfo[16];
    7070  char *filtstr, *typestr, *modestr, *ccdstr, *datestr, *p;
    71   int i;
     71  off_t i;
    7272  time_t tsecond;
    7373
     
    191191
    192192/* Select, TimeMode are global */
    193 int PrintSubset (DetReg *detdata, Match *match, int Nmatch) {
     193int PrintSubset (DetReg *detdata, Match *match, off_t Nmatch) {
    194194 
    195195  char *dBPath, *Path, *typestr, *filtstr, filename[128];
    196196  char *timestr, *modestr, *ccdstr, ccdinfo[16], ccdformat[16];
    197   int i, j, Nc;
     197  off_t i, j;
     198  int Nc;
    198199  struct timeval now;
    199200  long A;
Note: See TracChangeset for help on using the changeset viewer.