IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 14, 2010, 4:02:44 PM (16 years ago)
Author:
eugene
Message:

updates to dvorepair; add ability to plot mosaics by photcode (requires FindMosaicForImage to return the mosaic sequence number)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20101103/Ohana/src/dvomerge/include/dvomerge.h

    r29694 r29779  
    1616# include <arpa/inet.h>
    1717# include <glob.h>
     18
     19# define myAbort(MSG) { fprintf (stderr, "%s\n", MSG); abort(); }
     20# define myAssert(LOGIC,MSG) { if (!(LOGIC)) { fprintf (stderr, "%s\n", MSG); abort(); } }
    1821
    1922int    VERBOSE;
     
    8790int        dvo_update_image_IDs   PROTO((IDmapType *IDmap, Catalog *catalog));
    8891
    89 Image *LoadImages (char *filename, off_t *Nimage);
    90 Image *MatchImage (Image *image, off_t Nimage, unsigned int time, short int source, unsigned int imageID);
    91 off_t match_image (Image *image, off_t Nimage, unsigned int T, short int S);
     92// dvorepair prototypes
     93Image     *LoadImages             PROTO((FITS_DB *db, char *filename, off_t *Nimage));
     94Image     *MatchImage             PROTO((Image *image, off_t Nimage, unsigned int time, short int source, unsigned int imageID));
     95off_t      match_image            PROTO((Image *image, off_t Nimage, unsigned int T, short int S));
     96
     97int        SaveImages             PROTO((FITS_DB *oldDB, char *filename, Image *imagesOut, off_t Nout));
     98
     99int        dvorepairFixCPT        PROTO((int argc, char **argv));
     100int        dvorepairImagesVsMeasures PROTO((int argc, char **argv));
     101int        dvorepairDeleteImageList PROTO((int argc, char **argv));
     102int        dvorepairFixImages     PROTO((int argc, char **argv));
     103
     104int       *ReadDeleteList         PROTO((char *filename, int *nindex));
     105int        RepairTableCPT         PROTO((char *cptFilenameSrc, char *cptFilenameTgt, char *cpsFilenameSrc, char *cpsFilenameTgt, Measure *measure, off_t Nmeasure, Image *image, off_t Nimage, char catformat));
     106void       dvorepair_help         PROTO((int argc, char **argv));
Note: See TracChangeset for help on using the changeset viewer.