IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28257


Ignore:
Timestamp:
Jun 8, 2010, 2:17:55 PM (16 years ago)
Author:
rhenders
Message:

Using decimals rather than hex to save me changing code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/config/init/data.xml

    r28226 r28257  
    101466101466
    101467101467 <table name="ImageFlags">
    101468    <row name="NEW" value="0x0000" description="no relphot / relastro attempted" />
    101469    <row name="NOCAL" value="0x0001" description="used within relphot to mean 'don't apply fit'" />
    101470    <row name="POOR" value="0x0002" description="relphot says image is bad" />
    101471    <row name="SKIP" value="0x0004" description="external information image is bad" />
    101472    <row name="FEW" value="0x0008" description="currently too few measurements for good value" />
     101468   <row name="NEW" value="0" description="no relphot / relastro attempted" />
     101469   <row name="NOCAL" value="1" description="used within relphot to mean 'don't apply fit'" />
     101470   <row name="POOR" value="2" description="relphot says image is bad" />
     101471   <row name="SKIP" value="4" description="external information image is bad" />
     101472   <row name="FEW" value="8" description="currently too few measurements for good value" />
    101473101473 </table>
    101474101474
    101475101475 <table name="DetectionFlags">
    101476    <row name="DEFAULT" value="0x00000000" description="Initial value: resets all bits" />
    101477    <row name="PSFMODEL" value="0x00000001" description="Source fitted with a psf model (linear or non-linear)" />
    101478    <row name="EXTMODEL" value="0x00000002" description="Source fitted with an extended-source model" />
    101479    <row name="FITTED" value="0x00000004" description="Source fitted with non-linear model (PSF or EXT; good or bad)" />
    101480    <row name="FITFAIL" value="0x00000008" description="Fit (non-linear) failed (non-converge, off-edge, run to zero)" />
    101481    <row name="POORFIT" value="0x00000010" description="Fit succeeds, but low-SN, high-Chisq, or large (for PSF -- drop?)" />
    101482    <row name="PAIR" value="0x00000020" description="Source fitted with a double psf" />
    101483    <row name="PSFSTAR" value="0x00000040" description="Source used to define PSF model" />
    101484    <row name="SATSTAR" value="0x00000080" description="Source model peak is above saturation" />
    101485    <row name="BLEND" value="0x00000100" description="Source is a blend with other sourcers" />
    101486    <row name="EXTERNALPOS" value="0x00000200" description="Source based on supplied input position" />
    101487    <row name="BADPSF" value="0x00000400" description="Failed to get good estimate of object's PSF" />
    101488    <row name="DEFECT" value="0x00000800" description="Source is thought to be a defect" />
    101489    <row name="SATURATED" value="0x00001000" description="Source is thought to be saturated pixels (bleed trail)" />
    101490    <row name="CR_LIMIT" value="0x00002000" description="Source has crNsigma above limit" />
    101491    <row name="EXT_LIMIT" value="0x00004000" description="Source has extNsigma above limit" />
    101492    <row name="MOMENTS_FAILURE" value="0x00008000" description="could not measure the moments" />
    101493    <row name="SKY_FAILURE" value="0x00010000" description="could not measure the local sky" />
    101494    <row name="SKYVAR_FAILURE" value="0x00020000" description="could not measure the local sky variance" />
    101495    <row name="MOMENTS_SN" value="0x00040000" description="moments not measured due to low S/N" />
    101496    <row name="BIG_RADIUS" value="0x00100000" description="poor moments for small radius, try large radius" />
    101497    <row name="AP_MAGS" value="0x00200000" description="source has an aperture magnitude" />
    101498    <row name="BLEND_FIT" value="0x00400000" description="source was fitted as a blend" />
    101499    <row name="EXTENDED_FIT" value="0x00800000" description="full extended fit was used" />
    101500    <row name="EXTENDED_STATS" value="0x01000000" description="extended aperture stats calculated" />
    101501    <row name="LINEAR_FIT" value="0x02000000" description="source fitted with the linear fit" />
    101502    <row name="NONLINEAR_FIT" value="0x04000000" description="source fitted with the non-linear fit" />
    101503    <row name="RADIAL_FLUX" value="0x08000000" description="radial flux measurements calculated" />
    101504    <row name="SIZE_SKIPPED" value="0x10000000" description="size could not be determined" />
    101505    <row name="ON_SPIKE" value="0x20000000" description="peak lands on diffraction spike" />
    101506    <row name="ON_GHOST" value="0x40000000" description="peak lands on ghost or glint" />
    101507    <row name="OFF_CHIP" value="0x80000000" description="peak lands off edge of chip" />
    101508    <row name="NOCAL" value="0x000100000000" description="detection ignored for this analysis (photcode, time range) -- internal only" />
    101509    <row name="POOR_PHOTOM" value="0x000200000000" description="detection is photometry outlier" />
    101510    <row name="SKIP_PHOTOM" value="0x000400000000" description="detection was ignored for photometry measurement" />
    101511    <row name="MEAS_AREA" value="0x000800000000" description="detection near image edge" />
    101512    <row name="POOR_ASTROM" value="0x001000000000" description="detection is astrometry outlier" />
    101513    <row name="SKIP_ASTROM" value="0x002000000000" description="detection was ignored for astrometry measurement" />
    101514    <row name="USED_OBJ" value="0x004000000000" description="detection was used during opdate objects" />
    101515    <row name="USED_CHIP" value="0x008000000000" description="detection was used during update chips" />
    101516    <row name="BLEND_MEAS" value="0x010000000000" description="detection is within radius of multiple objects" />
    101517    <row name="BLEND_OBJ" value="0x020000000000" description="multiple detections within radius of object" />
    101518    <row name="BLEND_MEAS_X" value="0x100000000000" description="detection is within radius of multiple objects across catalogs" />
    101519    <row name="ARTIFACT" value="0x200000000000" description="detection is thought to be non-astronomical" />
     101476   <row name="DEFAULT" value="0" description="Initial value: resets all bits" />
     101477   <row name="PSFMODEL" value="1" description="Source fitted with a psf model (linear or non-linear)" />
     101478   <row name="EXTMODEL" value="2" description="Source fitted with an extended-source model" />
     101479   <row name="FITTED" value="4" description="Source fitted with non-linear model (PSF or EXT; good or bad)" />
     101480   <row name="FITFAIL" value="8" description="Fit (non-linear) failed (non-converge, off-edge, run to zero)" />
     101481   <row name="POORFIT" value="16" description="Fit succeeds, but low-SN, high-Chisq, or large (for PSF -- drop?)" />
     101482   <row name="PAIR" value="32" description="Source fitted with a double psf" />
     101483   <row name="PSFSTAR" value="64" description="Source used to define PSF model" />
     101484   <row name="SATSTAR" value="128" description="Source model peak is above saturation" />
     101485   <row name="BLEND" value="256" description="Source is a blend with other sourcers" />
     101486   <row name="EXTERNALPOS" value="512" description="Source based on supplied input position" />
     101487   <row name="BADPSF" value="1024" description="Failed to get good estimate of object's PSF" />
     101488   <row name="DEFECT" value="2048" description="Source is thought to be a defect" />
     101489   <row name="SATURATED" value="4096" description="Source is thought to be saturated pixels (bleed trail)" />
     101490   <row name="CR_LIMIT" value="8192" description="Source has crNsigma above limit" />
     101491   <row name="EXT_LIMIT" value="16384" description="Source has extNsigma above limit" />
     101492   <row name="MOMENTS_FAILURE" value="32768" description="could not measure the moments" />
     101493   <row name="SKY_FAILURE" value="65536" description="could not measure the local sky" />
     101494   <row name="SKYVAR_FAILURE" value="131072" description="could not measure the local sky variance" />
     101495   <row name="MOMENTS_SN" value="262144" description="moments not measured due to low S/N" />
     101496   <row name="BIG_RADIUS" value="1048576" description="poor moments for small radius, try large radius" />
     101497   <row name="AP_MAGS" value="2097152" description="source has an aperture magnitude" />
     101498   <row name="BLEND_FIT" value="4194304" description="source was fitted as a blend" />
     101499   <row name="EXTENDED_FIT" value="8388608" description="full extended fit was used" />
     101500   <row name="EXTENDED_STATS" value="16777216" description="extended aperture stats calculated" />
     101501   <row name="LINEAR_FIT" value="33554432" description="source fitted with the linear fit" />
     101502   <row name="NONLINEAR_FIT" value="67108864" description="source fitted with the non-linear fit" />
     101503   <row name="RADIAL_FLUX" value="134217728" description="radial flux measurements calculated" />
     101504   <row name="SIZE_SKIPPED" value="268435456" description="size could not be determined" />
     101505   <row name="ON_SPIKE" value="536870912" description="peak lands on diffraction spike" />
     101506   <row name="ON_GHOST" value="1073741824" description="peak lands on ghost or glint" />
     101507   <row name="OFF_CHIP" value="2147483648" description="peak lands off edge of chip" />
     101508   <row name="NOCAL" value="4294967296" description="detection ignored for this analysis (photcode, time range) -- internal only" />
     101509   <row name="POOR_PHOTOM" value="8589934592" description="detection is photometry outlier" />
     101510   <row name="SKIP_PHOTOM" value="17179869184" description="detection was ignored for photometry measurement" />
     101511   <row name="MEAS_AREA" value="34359738368" description="detection near image edge" />
     101512   <row name="POOR_ASTROM" value="68719476736" description="detection is astrometry outlier" />
     101513   <row name="SKIP_ASTROM" value="137438953472" description="detection was ignored for astrometry measurement" />
     101514   <row name="USED_OBJ" value="274877906944" description="detection was used during opdate objects" />
     101515   <row name="USED_CHIP" value="549755813888" description="detection was used during update chips" />
     101516   <row name="BLEND_MEAS" value="1099511627776" description="detection is within radius of multiple objects" />
     101517   <row name="BLEND_OBJ" value="2199023255552" description="multiple detections within radius of object" />
     101518   <row name="BLEND_MEAS_X" value="17592186044416" description="detection is within radius of multiple objects across catalogs" />
     101519   <row name="ARTIFACT" value="35184372088832" description="detection is thought to be non-astronomical" />
    101520101520 </table>
    101521101521
Note: See TracChangeset for help on using the changeset viewer.