IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 27, 2008, 5:16:19 PM (18 years ago)
Author:
eugene
Message:

creating PS1_DEV_2 formats; fixing definitions of imageID, objID, detID; changing psfProb to psfChisq

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080223/Ohana/src/libautocode/def/average-ps1-dev-2.d

    r16632 r16699  
    22EXTNAME      DVO_AVERAGE_PS1_DEV_2
    33TYPE         BINTABLE
    4 SIZE         72
     4SIZE         80
    55DESCRIPTION  DVO Average Object Table
    66
     
    1919FIELD dP,             PAR_ERR,    float,            parallax error,               arcsec
    2020
    21 FIELD Xp,             SIGMA_POS,  short,            position scatter,             1/100 arcsec
    22 FIELD Npsf,           NPSF,       unsigned short,   number of psf measurements
    23 FIELD Next,           NEXT,       unsigned short,   number of extended measurements
    24 FIELD Nmiss,          NMISS,      unsigned short,   number of missings
    25 FIELD psfOffset,      OFF_PSF,    int,              offset to first measurement
    26 FIELD extOffset,      OFF_EXT,    int,              offset to first measurement
    27 FIELD missOffset,     OFF_MISS,   int,              offset to first missing obs
     21FIELD Xp,             SIGMA_POS,   short,           position scatter,             1/100 arcsec
     22FIELD Nmeasure,       NMEASURE,    unsigned short,  number of psf measurements
     23FIELD Nmissing,       NMISSING,    unsigned short,  number of missings
     24FIELD Nextend,        NEXTEND,     unsigned short,  number of extended measurements
     25FIELD measureOffset,  OFF_MEASURE, int,             offset to first psf measurement
     26FIELD missingOffset,  OFF_MISSING, int,             offset to first missing obs
     27FIELD extendOffset,   OFF_EXTEND,  int,             offset to first extended measurement
    2828
    2929FIELD code,           code,       unsigned short,   ID code (star; ghost; etc)
     30FIELD dummy,          DUMMY,      char[2],          padding
    3031
    31 # Pan-STARRS uses a 64-bit detection ID.  keep this in two 32 bit ints for backwards compatibility?
    32 FIELD objID_hi,       OBJ_ID_HI,  unsigned int,     ID upper bytes
    33 FIELD objID_lo,       OBJ_ID_LO,  unsigned int,     ID lower bytes
     32# Pan-STARRS uses a 64-bit detection ID.  keep this in two 32 bit ints
     33# for C89 compatibility.  The objID is constructed based on the
     34# position of first instatiation.  this is actually quite expensive
     35# because we need to include the uniqueness test to construct this,
     36# which requires a select for each new object.  Therefore, I will use
     37# a table based ID (table ID + object ID), and we will have to
     38# re-number the object IDs if we change the table density, OR treat
     39# all subdivisions as entries which are from a foreign table.
     40
     41FIELD objID,          OBJ_ID,    unsigned int,   unique ID for object in table
     42FIELD catID,          CAT_ID,    unsigned int,   unique ID for table in which object was first realized
    3443
    3544# this structure should only be used for internal representations
Note: See TracChangeset for help on using the changeset viewer.