IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 7, 2014, 6:33:11 AM (12 years ago)
Author:
eugene
Message:

merge changes from eam_branches/ipp-20140423: add dcr-color option, ref_color, bad detection clipping to relastro; fix RA,DEC for mosaics in imextract; allow photdbc to restrict images to output region; change PHOTCODE_SKIP_LIST to PHOTCODE_KEEP_LIST in photdbc; add -reset-to-photcode option to relastro; ensure relastro child processes get the complete set of options; allow relastro region hosts to continue after load-object clients are done, but before the data is loaded; invalidate extreme proper motion; limit relastro catalog density on a grid; require more detections for higher order fits; option to delete duplicate images based on exp time/date and photcode; have kapa use XSync instead of XFlush to avoid flashing; handle some cases to avoid crashing kapa; extend kapa connection timeout; allow kapa to handle > 2GB images; ensure dvomerge works even if incoming db has no images; add dvo fuctions coordmosaic & psastro_model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/photdbc/include/photdbc.h

    r33963 r36833  
    2020  int    Nmeas;
    2121} StatType;
     22
     23typedef struct {
     24  double Xc[5];
     25  double Yc[5];
     26  double Rc;
     27  double Dc;
     28} SkyRegionCoords;
     29
     30# define MARKTIME(MSG,...) {                    \
     31    gettimeofday (&stopTimer, (void *) NULL);   \
     32    float dtime = DTIME (stopTimer, startTimer);        \
     33    fprintf (stderr, MSG, __VA_ARGS__); }
     34
     35# define INITTIME \
     36  struct timeval startTimer, stopTimer; \
     37  gettimeofday (&startTimer, (void *) NULL);
    2238
    2339int    PARALLEL;
     
    8096PhotCodeData photcodes;
    8197
    82 char          *PHOTCODE_DROP_LIST, *PHOTCODE_SKIP_LIST;
    83 int           NphotcodesDrop,      NphotcodesSkip;
    84 PhotCode     **photcodesDrop,     **photcodesSkip;
     98char          *PHOTCODE_DROP_LIST, *PHOTCODE_KEEP_LIST;
     99int           NphotcodesDrop,      NphotcodesKeep;
     100PhotCode     **photcodesDrop,     **photcodesKeep;
    85101
    86102# define FLAG_AREA            0X0001
     
    131147void SetProtect (int mode);
    132148int SetSignals (void);
    133 int copy_images (char *outdir);
     149int copy_images (char *outdir, SkyList *skylist);
    134150void usage();
     151
     152void dsortindex (double *X, off_t *Y, int N);
     153off_t getRegionStartByRA (double R, double *Rref, off_t Nregions);
     154
     155Image *select_images (SkyList *skylist, Image *timage, off_t Ntimage, off_t **LineNumber, off_t *Nimage, int UseFullOverlap);
    135156
    136157int photdbc_catalogs (char *outroot, SkyList *skylist, int hostID);
Note: See TracChangeset for help on using the changeset viewer.