Changeset 34403 for trunk/psModules/src/objects/pmSourceMasks.h
- Timestamp:
- Sep 5, 2012, 4:16:36 PM (14 years ago)
- Location:
- trunk/psModules
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/objects/pmSourceMasks.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20120805/psModules (added) merged: 34367,34374-34376,34379,34381,34383,34396
- Property svn:mergeinfo changed
-
trunk/psModules/src/objects/pmSourceMasks.h
r32808 r34403 5 5 // When adding to or subtracting from this list, please also modify pmSourceMaskHeader 6 6 typedef enum { 7 PM_SOURCE_MODE_DEFAULT = 0x00000000, ///< Initial value: resets all bits8 PM_SOURCE_MODE_PSFMODEL = 0x00000001, ///< Source fitted with a psf model (linear or non-linear)9 PM_SOURCE_MODE_EXTMODEL = 0x00000002, ///< Source fitted with an extended-source model10 PM_SOURCE_MODE_FITTED = 0x00000004, ///< Source fitted with non-linear model (PSF or EXT; good or bad)11 PM_SOURCE_MODE_FAIL = 0x00000008, ///< Fit (non-linear) failed (non-converge, off-edge, run to zero)12 PM_SOURCE_MODE_POOR = 0x00000010, ///< Fit succeeds, but low-SN, high-Chisq, or large (for PSF -- drop?)13 PM_SOURCE_MODE_PAIR = 0x00000020, ///< Source fitted with a double psf14 PM_SOURCE_MODE_PSFSTAR = 0x00000040, ///< Source used to define PSF model15 PM_SOURCE_MODE_SATSTAR = 0x00000080, ///< Source model peak is above saturation16 PM_SOURCE_MODE_BLEND = 0x00000100, ///< Source is a blend with other sources17 PM_SOURCE_MODE_EXTERNAL = 0x00000200, ///< Source based on supplied input position18 PM_SOURCE_MODE_BADPSF = 0x00000400, ///< Failed to get good estimate of object's PSF19 PM_SOURCE_MODE_DEFECT = 0x00000800, ///< Source is thought to be a defect20 PM_SOURCE_MODE_SATURATED = 0x00001000, ///< Source is thought to be saturated pixels (bleed trail)21 PM_SOURCE_MODE_CR_LIMIT = 0x00002000, ///< Source has crNsigma above limit22 PM_SOURCE_MODE_EXT_LIMIT = 0x00004000, ///< Source has extNsigma above limit23 PM_SOURCE_MODE_MOMENTS_FAILURE = 0x00008000, ///< could not measure the moments24 PM_SOURCE_MODE_SKY_FAILURE = 0x00010000, ///< could not measure the local sky25 PM_SOURCE_MODE_SKYVAR_FAILURE = 0x00020000, ///< could not measure the local sky variance26 PM_SOURCE_MODE_BELOW_MOMENTS_SN = 0x00040000, ///< moments not measured due to low S/N27 PM_SOURCE_MODE_BIG_RADIUS = 0x00100000, ///< poor moments for small radius, try large radius28 PM_SOURCE_MODE_AP_MAGS = 0x00200000, ///< source has an aperture magnitude29 PM_SOURCE_MODE_BLEND_FIT = 0x00400000, ///< source was fitted as a blend30 PM_SOURCE_MODE_EXTENDED_FIT = 0x00800000, ///< full extended fit was used31 PM_SOURCE_MODE_EXTENDED_STATS = 0x01000000, ///< extended aperture stats calculated32 PM_SOURCE_MODE_LINEAR_FIT = 0x02000000, ///< source fitted with the linear fit33 PM_SOURCE_MODE_NONLINEAR_FIT = 0x04000000, ///< source fitted with the non-linear fit34 PM_SOURCE_MODE_RADIAL_FLUX = 0x08000000, ///< radial flux measurements calculated35 PM_SOURCE_MODE_SIZE_SKIPPED = 0x10000000, ///< size could not be determined36 PM_SOURCE_MODE_ON_SPIKE = 0x20000000, ///< peak lands on diffraction spike37 PM_SOURCE_MODE_ON_GHOST = 0x40000000, ///< peak lands on ghost or glint38 PM_SOURCE_MODE_OFF_CHIP = 0x80000000, ///< peak lands off edge of chip7 PM_SOURCE_MODE_DEFAULT = 0x00000000, ///< Initial value: resets all bits 8 PM_SOURCE_MODE_PSFMODEL = 0x00000001, ///< Source fitted with a psf model (linear or non-linear) 9 PM_SOURCE_MODE_EXTMODEL = 0x00000002, ///< Source fitted with an extended-source model 10 PM_SOURCE_MODE_FITTED = 0x00000004, ///< Source fitted with non-linear model (PSF or EXT; good or bad) 11 PM_SOURCE_MODE_FAIL = 0x00000008, ///< Fit (non-linear) failed (non-converge, off-edge, run to zero) 12 PM_SOURCE_MODE_POOR = 0x00000010, ///< Fit succeeds, but low-SN, high-Chisq, or large (for PSF -- drop?) 13 PM_SOURCE_MODE_PAIR = 0x00000020, ///< Source fitted with a double psf 14 PM_SOURCE_MODE_PSFSTAR = 0x00000040, ///< Source used to define PSF model 15 PM_SOURCE_MODE_SATSTAR = 0x00000080, ///< Source model peak is above saturation 16 PM_SOURCE_MODE_BLEND = 0x00000100, ///< Source is a blend with other sources 17 PM_SOURCE_MODE_EXTERNAL = 0x00000200, ///< Source based on supplied input position 18 PM_SOURCE_MODE_BADPSF = 0x00000400, ///< Failed to get good estimate of object's PSF 19 PM_SOURCE_MODE_DEFECT = 0x00000800, ///< Source is thought to be a defect 20 PM_SOURCE_MODE_SATURATED = 0x00001000, ///< Source is thought to be saturated pixels (bleed trail) 21 PM_SOURCE_MODE_CR_LIMIT = 0x00002000, ///< Source has crNsigma above limit 22 PM_SOURCE_MODE_EXT_LIMIT = 0x00004000, ///< Source has extNsigma above limit 23 PM_SOURCE_MODE_MOMENTS_FAILURE = 0x00008000, ///< could not measure the moments 24 PM_SOURCE_MODE_SKY_FAILURE = 0x00010000, ///< could not measure the local sky 25 PM_SOURCE_MODE_SKYVAR_FAILURE = 0x00020000, ///< could not measure the local sky variance 26 PM_SOURCE_MODE_BELOW_MOMENTS_SN = 0x00040000, ///< moments not measured due to low S/N 27 PM_SOURCE_MODE_BIG_RADIUS = 0x00100000, ///< poor moments for small radius, try large radius 28 PM_SOURCE_MODE_AP_MAGS = 0x00200000, ///< source has an aperture magnitude 29 PM_SOURCE_MODE_BLEND_FIT = 0x00400000, ///< source was fitted as a blend 30 PM_SOURCE_MODE_EXTENDED_FIT = 0x00800000, ///< full extended fit was used 31 PM_SOURCE_MODE_EXTENDED_STATS = 0x01000000, ///< extended aperture stats calculated 32 PM_SOURCE_MODE_LINEAR_FIT = 0x02000000, ///< source fitted with the linear fit 33 PM_SOURCE_MODE_NONLINEAR_FIT = 0x04000000, ///< source fitted with the non-linear fit 34 PM_SOURCE_MODE_RADIAL_FLUX = 0x08000000, ///< radial flux measurements calculated 35 PM_SOURCE_MODE_SIZE_SKIPPED = 0x10000000, ///< size could not be determined 36 PM_SOURCE_MODE_ON_SPIKE = 0x20000000, ///< peak lands on diffraction spike 37 PM_SOURCE_MODE_ON_GHOST = 0x40000000, ///< peak lands on ghost or glint 38 PM_SOURCE_MODE_OFF_CHIP = 0x80000000, ///< peak lands off edge of chip 39 39 } pmSourceMode; 40 40 … … 42 42 // When adding to or subtracting from this list, please also modify pmSourceMaskHeader 43 43 typedef enum { 44 PM_SOURCE_MODE2_DEFAULT = 0x00000000, ///< Initial value: resets all bits 45 PM_SOURCE_MODE2_DIFF_WITH_SINGLE = 0x00000001, ///< diff source matched to a single positive detection 46 PM_SOURCE_MODE2_DIFF_WITH_DOUBLE = 0x00000002, ///< diff source matched to positive detections in both images 47 PM_SOURCE_MODE2_MATCHED = 0x00000004, ///< diff source matched to positive detections in both images 48 PM_SOURCE_MODE2_DIFF_SELF_MATCH = 0x00000800, ///< positive detection match is probably this source 49 50 PM_SOURCE_MODE2_ON_SPIKE = 0x00000008, ///< > 25% of (PSF-weighted) pixels land on diffraction spike 51 PM_SOURCE_MODE2_ON_STARCORE = 0x00000010, ///< > 25% of (PSF-weighted) pixels land on starcore 52 PM_SOURCE_MODE2_ON_BURNTOOL = 0x00000020, ///< > 25% of (PSF-weighted) pixels land on burntool 53 PM_SOURCE_MODE2_ON_CONVPOOR = 0x00000040, ///< > 25% of (PSF-weighted) pixels land on convpoor 54 55 PM_SOURCE_MODE2_PASS1_SRC = 0x00000080, ///< source detected in first pass analysis 56 44 PM_SOURCE_MODE2_DEFAULT = 0x00000000, ///< Initial value: resets all bits 45 PM_SOURCE_MODE2_DIFF_WITH_SINGLE = 0x00000001, ///< diff source matched to a single positive detection 46 PM_SOURCE_MODE2_DIFF_WITH_DOUBLE = 0x00000002, ///< diff source matched to positive detections in both images 47 PM_SOURCE_MODE2_MATCHED = 0x00000004, ///< diff source matched to positive detections in both images 48 PM_SOURCE_MODE2_ON_SPIKE = 0x00000008, ///< > 25% of (PSF-weighted) pixels land on diffraction spike 49 PM_SOURCE_MODE2_ON_STARCORE = 0x00000010, ///< > 25% of (PSF-weighted) pixels land on starcore 50 PM_SOURCE_MODE2_ON_BURNTOOL = 0x00000020, ///< > 25% of (PSF-weighted) pixels land on burntool 51 PM_SOURCE_MODE2_ON_CONVPOOR = 0x00000040, ///< > 25% of (PSF-weighted) pixels land on convpoor 52 PM_SOURCE_MODE2_PASS1_SRC = 0x00000080, ///< source detected in first pass analysis 57 53 PM_SOURCE_MODE2_HAS_BRIGHTER_NEIGHBOR = 0x00000100, ///< peak is not the brightest in its footprint 58 54 PM_SOURCE_MODE2_BRIGHT_NEIGHBOR_1 = 0x00000200, ///< flux_n / (r^2 flux_p) > 1 59 55 PM_SOURCE_MODE2_BRIGHT_NEIGHBOR_10 = 0x00000400, ///< flux_n / (r^2 flux_p) > 10 56 PM_SOURCE_MODE2_DIFF_SELF_MATCH = 0x00000800, ///< positive detection match is probably this source 57 PM_SOURCE_MODE2_SATSTAR_PROFILE = 0x00001000, ///< saturated source is modeled with a radial profile 60 58 } pmSourceMode2; 61 59
Note:
See TracChangeset
for help on using the changeset viewer.
