| | 77 | Currently DVOFLAGS is the value of FLAGS in the DVO Images table. The bits are |
| | 78 | |
| | 79 | |
| | 80 | {{{ |
| | 81 | typedef enum { |
| | 82 | ID_IMAGE_NEW = 0x00000000, /* no calibrations yet attempted */ |
| | 83 | ID_IMAGE_PHOTOM_NOCAL = 0x00000001, /* user-set value used within relphot: ignore */ |
| | 84 | ID_IMAGE_PHOTOM_POOR = 0x00000002, /* relphot says image is bad (dMcal > limit) */ |
| | 85 | ID_IMAGE_PHOTOM_SKIP = 0x00000004, /* user-set value: assert that this image has bad photometry */ |
| | 86 | ID_IMAGE_PHOTOM_FEW = 0x00000008, /* currently too few measurements for photometry */ |
| | 87 | ID_IMAGE_ASTROM_NOCAL = 0x00000010, /* user-set value used within relastro: ignore */ |
| | 88 | ID_IMAGE_ASTROM_POOR = 0x00000020, /* relastro says image is bad (dR,dD > limit) */ |
| | 89 | ID_IMAGE_ASTROM_FAIL = 0x00000040, /* relastro fit diverged, fit not applied */ |
| | 90 | ID_IMAGE_ASTROM_SKIP = 0x00000080, /* user-set value: assert that this image has bad astrometry */ |
| | 91 | ID_IMAGE_ASTROM_FEW = 0x00000100, /* currently too few measurements for astrometry */ |
| | 92 | ID_IMAGE_PHOTOM_UBERCAL = 0x00000200, /* externally-supplied photometry zero point from ubercal analysis */ |
| | 93 | }}} |
| | 94 | |