- Timestamp:
- Aug 26, 2010, 9:18:39 AM (16 years ago)
- Location:
- branches/sc_branches/trunkTest
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/sc_branches/trunkTest
- Property svn:mergeinfo changed
-
branches/sc_branches/trunkTest/Ohana
- Property svn:mergeinfo deleted
-
branches/sc_branches/trunkTest/Ohana/src/libdvo/include/dvo.h
r28855 r29060 85 85 # define PHOT_MAG 0x06 /* generic magnitude; never stored */ 86 86 87 /* Image.code values. these are codes to note bad images */ 88 # define ID_IMAGE_NEW 0x0000 /* no nrphot attempted */ 89 # define ID_IMAGE_NOCAL 0x0001 /* used within nrphot to mean "don't apply fit" */ 90 # define ID_IMAGE_POOR 0x0002 /* relphot says image is bad */ 91 # define ID_IMAGE_SKIP 0x0004 /* external information image is bad */ 92 # define ID_IMAGE_FEW 0x0008 /* currently too few measurements for good value */ 87 /* Image.code values -- these values are 32 bit (as of PS1_V1) */ 88 typedef enum { 89 ID_IMAGE_NEW = 0x00000000, /* no calibrations yet attempted */ 90 ID_IMAGE_PHOTOM_NOCAL = 0x00000001, /* user-set value used within relphot: ignore */ 91 ID_IMAGE_PHOTOM_POOR = 0x00000002, /* relphot says image is bad (dMcal > limit) */ 92 ID_IMAGE_PHOTOM_SKIP = 0x00000004, /* user-set value: assert that this image has bad photometry */ 93 ID_IMAGE_PHOTOM_FEW = 0x00000008, /* currently too few measurements for photometry */ 94 ID_IMAGE_ASTROM_NOCAL = 0x00000010, /* user-set value used within relastro: ignore */ 95 ID_IMAGE_ASTROM_POOR = 0x00000020, /* relastro says image is bad (dR,dD > limit) */ 96 ID_IMAGE_ASTROM_FAIL = 0x00000040, /* relastro fit diverged, fit not applied */ 97 ID_IMAGE_ASTROM_SKIP = 0x00000080, /* user-set value: assert that this image has bad astrometry */ 98 ID_IMAGE_ASTROM_FEW = 0x00000100, /* currently too few measurements for astrometry */ 99 } DVOImageFlags; 93 100 94 101 /* Measure.flags values -- these values are 32 bit (as of PS1_V1) */ 95 102 typedef enum { 96 ID_MEAS_NOCAL = 0x000 1, // detection ignored for this analysis (photcode, time range) -- internal only97 ID_MEAS_POOR_PHOTOM = 0x000 2, // detection is photometry outlier98 ID_MEAS_SKIP_PHOTOM = 0x000 4, // detection was ignored for photometry measurement99 ID_MEAS_AREA = 0x000 8, // detection near image edge100 ID_MEAS_POOR_ASTROM = 0x00 10, // detection is astrometry outlier101 ID_MEAS_SKIP_ASTROM = 0x00 20, // detection was ignored for astrometry measurement102 ID_MEAS_USED_OBJ = 0x00 40, // detection was used during opdate objects103 ID_MEAS_USED_CHIP = 0x00 80, // detection was used during update chips104 ID_MEAS_BLEND_MEAS = 0x0 100, // detection is within radius of multiple objects105 ID_MEAS_BLEND_OBJ = 0x0 200, // multiple detections within radius of object106 ID_MEAS_UNDEF_3 = 0x0 400, // unused107 ID_MEAS_UNDEF_4 = 0x0 800, // unused108 ID_MEAS_BLEND_MEAS_X = 0x 1000, // detection is within radius of multiple objects across catalogs109 ID_MEAS_ARTIFACT = 0x 2000, // detection is thought to be non-astronomical110 ID_MEAS_UNDEF_5 = 0x 4000, // unused111 ID_MEAS_UNDEF_6 = 0x 8000, // unused103 ID_MEAS_NOCAL = 0x00000001, // detection ignored for this analysis (photcode, time range) -- internal only 104 ID_MEAS_POOR_PHOTOM = 0x00000002, // detection is photometry outlier 105 ID_MEAS_SKIP_PHOTOM = 0x00000004, // detection was ignored for photometry measurement 106 ID_MEAS_AREA = 0x00000008, // detection near image edge 107 ID_MEAS_POOR_ASTROM = 0x00000010, // detection is astrometry outlier 108 ID_MEAS_SKIP_ASTROM = 0x00000020, // detection was ignored for astrometry measurement 109 ID_MEAS_USED_OBJ = 0x00000040, // detection was used during opdate objects 110 ID_MEAS_USED_CHIP = 0x00000080, // detection was used during update chips 111 ID_MEAS_BLEND_MEAS = 0x00000100, // detection is within radius of multiple objects 112 ID_MEAS_BLEND_OBJ = 0x00000200, // multiple detections within radius of object 113 ID_MEAS_UNDEF_3 = 0x00000400, // unused 114 ID_MEAS_UNDEF_4 = 0x00000800, // unused 115 ID_MEAS_BLEND_MEAS_X = 0x00001000, // detection is within radius of multiple objects across catalogs 116 ID_MEAS_ARTIFACT = 0x00002000, // detection is thought to be non-astronomical 117 ID_MEAS_UNDEF_5 = 0x00004000, // unused 118 ID_MEAS_UNDEF_6 = 0x00008000, // unused 112 119 } DVOMeasureFlags; 113 120 … … 147 154 ID_STAR_USE_PM = 0x00100000, // proper motion used (not AVE or PAR) 148 155 ID_STAR_USE_PAR = 0x00200000, // parallax used (not AVE or PM) 156 ID_OBJ_EXT = 0x01000000, // extended in our data (eg, PS) 157 ID_OBJ_EXT_ALT = 0x02000000, // extended in external data (eg, 2MASS) 158 ID_OBJ_GOOD = 0x04000000, // good-quality measurement in our data (eg, PS) 159 ID_OBJ_GOOD_ALT = 0x08000000, // good-quality measurement in external data (eg, 2MASS) 149 160 } DVOAverageFlags; 150 161
Note:
See TracChangeset
for help on using the changeset viewer.
