IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 23, 2014, 9:36:11 AM (12 years ago)
Author:
eugene
Message:

add option to delete duplicate images based on their obstime/photcode values (ignoring externID)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140423/Ohana/src/delstar/include/delstar.h

    r35837 r36767  
    22# include <dvo.h>
    33# include <signal.h>
     4
     5# define MARKTIME(MSG,...) {                    \
     6    gettimeofday (&stopTimer, (void *) NULL);   \
     7    float dtime = DTIME (stopTimer, startTimer);        \
     8    fprintf (stderr, MSG, __VA_ARGS__); }
     9
     10# define INITTIME \
     11  struct timeval startTimer, stopTimer; \
     12  gettimeofday (&startTimer, (void *) NULL);
    413
    514// options for generating the IndexArray used to select images for deletion (delete_duplicate_images.c)
     
    6776int    UPDATE;
    6877int    IMAGE_DETAILS;
     78int    IMAGE_DUPLICATES_BY_OBSTIME;
    6979int    IMAGE_ONLY;
    7080int    ORPHAN;
Note: See TracChangeset for help on using the changeset viewer.