Changeset 39131
- Timestamp:
- Nov 13, 2015, 9:27:41 AM (11 years ago)
- Location:
- trunk/ippToPsps/config
- Files:
-
- 6 edited
-
tables.DF.vot (modified) (1 diff)
-
tables.FG.vot (modified) (5 diffs)
-
tables.FW.vot (modified) (1 diff)
-
tables.IN.vot (modified) (3 diffs)
-
tables.P2.vot (modified) (1 diff)
-
tables.ST.vot (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/config/tables.DF.vot
r39091 r39131 336 336 <DESCRIPTION>Error in background sky level.</DESCRIPTION> 337 337 </FIELD> 338 <FIELD name="DinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">338 <FIELD name="DinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 339 339 <DESCRIPTION>Information flag bitmask indicating details of the photometry. Values listed in DetectionFlags.</DESCRIPTION> 340 340 </FIELD> -
trunk/ippToPsps/config/tables.FG.vot
r39130 r39131 59 59 </FIELD> 60 60 <FIELD name="gGalFlags" arraysize="1" datatype="short" unit="dimensionless" default="-999"> 61 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (g filter measurement ).</DESCRIPTION>61 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (g filter measurement, values defined in ForcedGalaxyShapeFlags).</DESCRIPTION> 62 62 </FIELD> 63 63 <FIELD name="gGalChisq" arraysize="1" datatype="float" unit="dimensionless" default="-999"> … … 96 96 </FIELD> 97 97 <FIELD name="rGalFlags" arraysize="1" datatype="short" unit="dimensionless" default="-999"> 98 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (r filter measurement ).</DESCRIPTION>98 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (r filter measurement, values defined in ForcedGalaxyShapeFlags).</DESCRIPTION> 99 99 </FIELD> 100 100 <FIELD name="rGalChisq" arraysize="1" datatype="float" unit="dimensionless" default="-999"> … … 133 133 </FIELD> 134 134 <FIELD name="iGalFlags" arraysize="1" datatype="short" unit="dimensionless" default="-999"> 135 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (i filter measurement ).</DESCRIPTION>135 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (i filter measurement, values defined in ForcedGalaxyShapeFlags).</DESCRIPTION> 136 136 </FIELD> 137 137 <FIELD name="iGalChisq" arraysize="1" datatype="float" unit="dimensionless" default="-999"> … … 170 170 </FIELD> 171 171 <FIELD name="zGalFlags" arraysize="1" datatype="short" unit="dimensionless" default="-999"> 172 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (z filter measurement ).</DESCRIPTION>172 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (z filter measurement, values defined in ForcedGalaxyShapeFlags).</DESCRIPTION> 173 173 </FIELD> 174 174 <FIELD name="zGalChisq" arraysize="1" datatype="float" unit="dimensionless" default="-999"> … … 207 207 </FIELD> 208 208 <FIELD name="yGalFlags" arraysize="1" datatype="short" unit="dimensionless" default="-999"> 209 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (y filter measurement ).</DESCRIPTION>209 <DESCRIPTION>Analysis flags for the galaxy model chi-square fit (y filter measurement, values defined in ForcedGalaxyShapeFlags).</DESCRIPTION> 210 210 </FIELD> 211 211 <FIELD name="yGalChisq" arraysize="1" datatype="float" unit="dimensionless" default="-999"> -
trunk/ippToPsps/config/tables.FW.vot
r39088 r39131 276 276 <DESCRIPTION>Error in background sky level.</DESCRIPTION> 277 277 </FIELD> 278 <FIELD name="FinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">278 <FIELD name="FinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 279 279 <DESCRIPTION>Information flag bitmask indicating details of the photometry. Values listed in DetectionFlags.</DESCRIPTION> 280 280 </FIELD> -
trunk/ippToPsps/config/tables.IN.vot
r39103 r39131 593 593 <DESCRIPTION>Flag value in hexadecimal form.</DESCRIPTION> 594 594 </FIELD> 595 <FIELD name="value" arraysize="1" datatype=" int">595 <FIELD name="value" arraysize="1" datatype="long"> 596 596 <DESCRIPTION>Flag value in decimal form.</DESCRIPTION> 597 597 </FIELD> … … 831 831 </DATA> 832 832 </TABLE> 833 833 834 <TABLE name="ObjectQualityFlags"> 834 835 <DESCRIPTION>Contains information flag values that denote if an object is real or a possible false positive. </DESCRIPTION> … … 859 860 </DATA> 860 861 </TABLE> 862 863 <TABLE name="ForcedGalaxyShapeFlags"> 864 <DESCRIPTION>Contains information flag values that define ForcedGalaxyShape chisq surface fit failuers. </DESCRIPTION> 865 <PARAM arraysize="1" datatype="char" ucd="meta.bib.author" name="Author" value="PSPS"></PARAM> 866 <FIELD name="name" arraysize="100" datatype="char"> 867 <DESCRIPTION>Name of flag.</DESCRIPTION> 868 </FIELD> 869 <FIELD name="hexadecimal" arraysize="16" datatype="char"> 870 <DESCRIPTION>Flag value in hexadecimal form.</DESCRIPTION> 871 </FIELD> 872 <FIELD name="value" arraysize="1" datatype="int"> 873 <DESCRIPTION>Flag value in decimal form.</DESCRIPTION> 874 </FIELD> 875 <FIELD name="description" arraysize="100" datatype="char"> 876 <DESCRIPTION>Description of the flag.</DESCRIPTION> 877 </FIELD> 878 <DATA> 879 <TABLEDATA> 880 <TR><TD>NO_ERROR</TD> <TD>0x00000000</TD><TD>0 </TD><TD>No error condition raised.</TD></TR> 881 <TR><TD>FAIL_FIT</TD> <TD>0x00000001</TD><TD>1 </TD><TD>fit failed to converge or was degenerate</TD></TR> 882 <TR><TD>TOO_FEW</TD> <TD>0x00000002</TD><TD>2 </TD><TD>not enough points to fit the model</TD></TR> 883 <TR><TD>OUT_OF_RANGE</TD> <TD>0x00000004</TD><TD>4 </TD><TD>fit minimum too far outside data range</TD></TR> 884 <TR><TD>BAD_ERROR</TD> <TD>0x00000008</TD><TD>8 </TD><TD>invalid size error (nan or inf)</TD></TR> 885 </TABLEDATA> 886 </DATA> 887 </TABLE> 861 888 </RESOURCE> 862 889 </VOTABLE> -
trunk/ippToPsps/config/tables.P2.vot
r39088 r39131 551 551 <DESCRIPTION>Error in background sky level.</DESCRIPTION> 552 552 </FIELD> 553 <FIELD name="infoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">553 <FIELD name="infoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 554 554 <DESCRIPTION>Information flag bitmask indicating details of the photometry. Values listed in DetectionFlags.</DESCRIPTION> 555 555 </FIELD> -
trunk/ippToPsps/config/tables.ST.vot
r39090 r39131 222 222 <DESCRIPTION>Error in Kron (1980) magnitude from g filter stack detection.</DESCRIPTION> 223 223 </FIELD> 224 <FIELD name="ginfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">224 <FIELD name="ginfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 225 225 <DESCRIPTION>Information flag bitmask indicating details of the g filter stack photometry. Values listed in DetectionFlags.</DESCRIPTION> 226 226 </FIELD> … … 278 278 <DESCRIPTION>Error in Kron (1980) magnitude from r filter stack detection.</DESCRIPTION> 279 279 </FIELD> 280 <FIELD name="rinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">280 <FIELD name="rinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 281 281 <DESCRIPTION>Information flag bitmask indicating details of the r filter stack photometry. Values listed in DetectionFlags.</DESCRIPTION> 282 282 </FIELD> … … 334 334 <DESCRIPTION>Error in Kron (1980) magnitude from i filter stack detection.</DESCRIPTION> 335 335 </FIELD> 336 <FIELD name="iinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">336 <FIELD name="iinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 337 337 <DESCRIPTION>Information flag bitmask indicating details of the i filter stack photometry. Values listed in DetectionFlags.</DESCRIPTION> 338 338 </FIELD> … … 390 390 <DESCRIPTION>Error in Kron (1980) magnitude from z filter stack detection.</DESCRIPTION> 391 391 </FIELD> 392 <FIELD name="zinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">392 <FIELD name="zinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 393 393 <DESCRIPTION>Information flag bitmask indicating details of the z filter stack photometry. Values listed in DetectionFlags.</DESCRIPTION> 394 394 </FIELD> … … 446 446 <DESCRIPTION>Error in Kron (1980) magnitude from y filter stack detection.</DESCRIPTION> 447 447 </FIELD> 448 <FIELD name="yinfoFlag" arraysize="1" datatype=" int" unit="dimensionless" default="0">448 <FIELD name="yinfoFlag" arraysize="1" datatype="long" unit="dimensionless" default="0"> 449 449 <DESCRIPTION>Information flag bitmask indicating details of the y filter stack photometry. Values listed in DetectionFlags.</DESCRIPTION> 450 450 </FIELD>
Note:
See TracChangeset
for help on using the changeset viewer.
