- Timestamp:
- Dec 6, 2012, 6:32:19 PM (14 years ago)
- Location:
- branches/czw_branch/20120906/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/libdvo/include/dvo.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20120906/Ohana
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20120905/Ohana (added) merged: 34423-34428,34468,34490,34494-34495,34508,34517-34526,34529,34562-34563,34569,34572-34573,34575,34616-34619
- Property svn:mergeinfo changed
-
branches/czw_branch/20120906/Ohana/src/libdvo/include/dvo.h
r34405 r34772 131 131 ID_MEAS_UNDEF_5 = 0x00004000, // unused 132 132 ID_MEAS_PHOTOM_UBERCAL = 0x00008000, // externally-supplied zero point from ubercal analysis 133 ID_MEAS_STACK_PRIMARY = 0x00010000, // this stack measurement is in the primary skycell 134 ID_MEAS_STACK_PHOT_SRC = 0x00020000, // this measurement supplied the stack photometry 133 135 } DVOMeasureFlags; 134 136 … … 149 151 /* Average.flags values -- these values are 32 bit (as of PS1_V1) */ 150 152 typedef enum { 151 ID_STAR_FEW = 0x00000001, // used within relphot: skip star 152 ID_STAR_POOR = 0x00000002, // used within relphot: skip star 153 ID_PROPER = 0x00000400, // star with large proper motion 154 ID_TRANSIENT = 0x00001000, // is this mutually exclusive with USNO? 155 ID_VARIABLE = 0x00002000, // not currently set? 156 ID_ASTEROID = 0x00002000, // identified with an asteroid 157 ID_BAD_OBJECT = 0x00004000, // if all measurements are bad, set this bit 158 ID_MOVING = 0x00008000, // is a moving object 159 ID_ROCK = 0x0000a000, // 0x8000 + 0x2000 160 ID_GHOST = 0x0000c001, // 0x8000 + 0x4000 + 0x0001 161 ID_TRAIL = 0x0000c002, // 0x8000 + 0x4000 + 0x0002 162 ID_BLEED = 0x0000c003, // 0x8000 + 0x4000 + 0x0003 163 ID_COSMIC = 0x0000c004, // 0x8000 + 0x4000 + 0x0004 164 ID_STAR_FIT_AVE = 0x00010000, // average position fitted 165 ID_STAR_FIT_PM = 0x00020000, // proper motion fitted 166 ID_STAR_FIT_PAR = 0x00040000, // parallax fitted 167 ID_STAR_USE_AVE = 0x00080000, // average position used (not PM or PAR) 168 ID_STAR_USE_PM = 0x00100000, // proper motion used (not AVE or PAR) 169 ID_STAR_USE_PAR = 0x00200000, // parallax used (not AVE or PM) 170 ID_OBJ_EXT = 0x01000000, // extended in our data (eg, PS) 171 ID_OBJ_EXT_ALT = 0x02000000, // extended in external data (eg, 2MASS) 172 ID_OBJ_GOOD = 0x04000000, // good-quality measurement in our data (eg,PS) 173 ID_OBJ_GOOD_ALT = 0x08000000, // good-quality measurement in external data (eg, 2MASS) 153 ID_STAR_FEW = 0x00000001, // used within relphot: skip star 154 ID_STAR_POOR = 0x00000002, // used within relphot: skip star 155 ID_PROPER = 0x00000400, // star with large proper motion 156 ID_TRANSIENT = 0x00001000, // is this mutually exclusive with USNO? 157 ID_VARIABLE = 0x00002000, // not currently set? 158 ID_ASTEROID = 0x00002000, // identified with an asteroid 159 ID_BAD_OBJECT = 0x00004000, // if all measurements are bad, set this bit 160 ID_MOVING = 0x00008000, // is a moving object 161 ID_ROCK = 0x0000a000, // 0x8000 + 0x2000 162 ID_GHOST = 0x0000c001, // 0x8000 + 0x4000 + 0x0001 163 ID_TRAIL = 0x0000c002, // 0x8000 + 0x4000 + 0x0002 164 ID_BLEED = 0x0000c003, // 0x8000 + 0x4000 + 0x0003 165 ID_COSMIC = 0x0000c004, // 0x8000 + 0x4000 + 0x0004 166 ID_STAR_FIT_AVE = 0x00010000, // average position fitted 167 ID_STAR_FIT_PM = 0x00020000, // proper motion fitted 168 ID_STAR_FIT_PAR = 0x00040000, // parallax fitted 169 ID_STAR_USE_AVE = 0x00080000, // average position used (not PM or PAR) 170 ID_STAR_USE_PM = 0x00100000, // proper motion used (not AVE or PAR) 171 ID_STAR_USE_PAR = 0x00200000, // parallax used (not AVE or PM) 172 ID_STAR_NO_ASTROM = 0x00400000, // mean astrometry could not be measured 173 ID_OBJ_EXT = 0x01000000, // extended in our data (eg, PS) 174 ID_OBJ_EXT_ALT = 0x02000000, // extended in external data (eg, 2MASS) 175 ID_OBJ_GOOD = 0x04000000, // good-quality measurement in our data (eg,PS) 176 ID_OBJ_GOOD_ALT = 0x08000000, // good-quality measurement in external data (eg, 2MASS) 177 ID_OBJ_GOOD_STACK = 0x10000000, // good-quality object in the stack (> 1 good stack) 178 ID_OBJ_SUSPECT_STACK = 0x20000000, // suspect object in the stack (> 1 good or suspect stack, < 2 good) 179 ID_OBJ_BAD_STACK = 0x40000000, // good-quality object in the stack (> 1 good stack) 174 180 } DVOAverageFlags; 175 181 … … 180 186 ID_SECF_USE_SYNTH = 0x00000004, // synthetic photometry used in average measurement 181 187 ID_SECF_USE_UBERCAL = 0x00000008, // synthetic photometry used in average measurement 188 ID_SECF_HAS_PS1 = 0x00000010, // PS1 photometry used in average measurement 189 ID_SECF_HAS_STACK = 0x00000020, // PS1 stack photometry exists 182 190 ID_PHOTOM_PASS_0 = 0x00000100, // average magnitude calculated in 0th pass 183 191 ID_PHOTOM_PASS_1 = 0x00000200, // average magnitude calculated in 1th pass … … 185 193 ID_PHOTOM_PASS_3 = 0x00000800, // average magnitude calculated in 3th pass 186 194 ID_PHOTOM_PASS_4 = 0x00001000, // average magnitude calculated in 4th pass 195 ID_PSPS_OBJ_EXT = 0x00002000, // In PSPS ID_SECF_OBJ_EXT is moved here so it fits within 16 bits 187 196 ID_SECF_OBJ_EXT = 0x01000000, // extended in this band 188 197 } DVOSecfiltFlags;
Note:
See TracChangeset
for help on using the changeset viewer.
