IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 28, 2008, 3:24:23 PM (18 years ago)
Author:
eugene
Message:

adding Photom,Astrom Poor,Bad Mask fields to photcode; split measure flags into astrom and photom measure flags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libdvo/include/dvo.h

    r16981 r17190  
    9898
    9999/* Measure.flags values */
    100 # define ID_MEAS_NOCAL        0x0001
    101 # define ID_MEAS_POOR         0x0002
    102 # define ID_MEAS_SKIP         0x0004
    103 # define ID_MEAS_AREA         0x0008
    104 # define BLEND_IMAGE          0x0100
    105 # define BLEND_CATALOG        0x0200
    106 # define BLEND_IMAGE_NEIGHBOR 0x1000
    107 # define ID_MEAS_TRAIL        0x2000
    108 # define ID_MEAS_GHOST        0x4000
     100// XXX replace the # defines with typedef enum
     101# define ID_MEAS_NOCAL        0x0001  /* detection ignored for this analysis (photcode, time range) -- internal only */
     102# define ID_MEAS_POOR_PHOTOM  0x0002  /* detection is photometry outlier                                             */   
     103# define ID_MEAS_SKIP_PHOTOM  0x0004  /* detection was ignored for photometry measurement                            */   
     104# define ID_MEAS_AREA         0x0008  /* detection near image edge                                                   */
     105# define ID_MEAS_POOR_ASTROM  0x0010  /* detection is astrometry outlier                                             */   
     106# define ID_MEAS_SKIP_ASTROM  0x0020  /* detection was ignored for astrometry measurement                            */   
     107# define ID_MEAS_UNDEF_1      0x0040  /* unused                                                                      */
     108# define ID_MEAS_UNDEF_2      0x0080  /* unused                                                                      */
     109# define ID_MEAS_BLEND_MEAS   0x0100  /* detection is within radius of multiple objects                              */
     110# define ID_MEAS_BLEND_OBJ    0x0200  /* multiple detections within radius of object                                 */
     111# define ID_MEAS_UNDEF_3      0x0400  /* unused                                                                      */
     112# define ID_MEAS_UNDEF_4      0x0800  /* unused                                                                      */
     113# define ID_MEAS_BLEND_MEAS_X 0x1000  /* detection is within radius of multiple objects across catalogs              */
     114# define ID_MEAS_ARTIFACT     0x2000  /* detection is thought to be non-astronomical                                 */
     115# define ID_MEAS_UNDEF_5      0x4000  /* unused                                                                      */
     116# define ID_MEAS_UNDEF_6      0x8000  /* unused                                                                      */
     117
     118// XXX we used these names previously in markstar: replace with ID_MEAS_ARTIFACT
     119// # define ID_MEAS_TRAIL        0x2000
     120// # define ID_MEAS_GHOST        0x4000
    109121
    110122/* some subtle distinctions between the blend flags:
Note: See TracChangeset for help on using the changeset viewer.