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/relastro/include/relastro.h

    r36630 r36833  
    8383  double L, M;  /* Focal Plane   - pixels  */
    8484  double X, Y;  /* Chip Coords   - pixels  */
    85   double Mag;
    86   double dMag;
    87   double dPos;
     85  float Mag;
     86  float Color;
     87  float dMag;
     88  float dPos;
    8889  int mask;
    8990  int Nmeas;
     
    207208double MaxDensityValue;
    208209
    209 char          *PHOTCODE_KEEP_LIST, *PHOTCODE_SKIP_LIST;
    210 int           NphotcodesKeep,      NphotcodesSkip;
    211 PhotCode     **photcodesKeep,     **photcodesSkip;
     210char          *PHOTCODE_KEEP_LIST, *PHOTCODE_SKIP_LIST, *PHOTCODE_RESET_LIST;
     211int           NphotcodesKeep,      NphotcodesSkip,      NphotcodesReset;
     212PhotCode     **photcodesKeep,     **photcodesSkip,     **photcodesReset;
    212213
    213214char          *PHOTCODE_A_LIST,  *PHOTCODE_B_LIST;
     
    217218SkyRegionSelection SELECTION;
    218219
     220char         *DCR_COLOR_POS,    *DCR_COLOR_NEG;
     221PhotCode     *DCR_PHOTCODE_POS, *DCR_PHOTCODE_NEG;
     222int           DCR_NSEC_POS,      DCR_NSEC_NEG;
     223
    219224int ImagSelect;
    220225double ImagMin, ImagMax;
     
    233238int    CLIP_THRESH;
    234239int USE_BASIC_CHECK;
     240
     241int ExcludeBogus;
     242double ExcludeBogusRadius;
    235243
    236244FitMode FIT_MODE;
     
    307315int           liststats           PROTO((double *value, double *dvalue, int N, StatType *stats));
    308316int           liststats_pos       PROTO((double *value, double *dvalue, int N, StatType *stats, int XVERB));
    309 Catalog      *load_catalogs       PROTO((SkyList *skylist, int *Ncatalog, int subselect, int hostID, char *hostpath));
     317Catalog      *load_catalogs       PROTO((SkyList *skylist, int *Ncatalog, int subselect, int hostID, char *hostpath, char *syncfile));
    310318int           load_images         PROTO((FITS_DB *db, SkyList *skylist, int UseFullOverlap));
    311319Image        *select_images       PROTO((SkyList *skylist, Image *timage, off_t Ntimage, off_t **LineNumber, off_t *Nimage, int UseFullOverlap));
     
    417425int setMeanR (double ra_fit, MeasureTiny *measure, Average *average, SecFilt *secfilt);
    418426int setMeanD (double dec_fit, MeasureTiny *measure, Average *average, SecFilt *secfilt);
     427double getMeanR_Big (Measure *measure, Average *average, SecFilt *secfilt);
     428double getMeanD_Big (Measure *measure, Average *average, SecFilt *secfilt);
    419429int setMeanR_Big (double ra_fit, Measure *measure, Average *average, SecFilt *secfilt);
    420430int setMeanD_Big (double dec_fit, Measure *measure, Average *average, SecFilt *secfilt);
     
    521531int ImageTableSave (char *filename, Image *images, off_t Nimages);
    522532int select_mosaics_hostregion (RegionHostTable *regionHosts, Image *image, off_t Nimage);
     533
     534float getColor (off_t meas, int cat);
     535
     536int strextend (char *input, char *format,...);
     537
     538int areImagesLoaded ();
     539int areImagesMatched ();
Note: See TracChangeset for help on using the changeset viewer.