IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 24, 2008, 9:09:19 AM (18 years ago)
Author:
eugene
Message:

working to valid IDs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080223/Ohana/src/libautocode/def/average.d

    r16633 r16634  
    3030FIELD dummy,          DUMMY,      char[2],          padding
    3131
    32 # Pan-STARRS uses a 64-bit detection ID.  keep this in two 32 bit ints for backwards compatibility?
     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
    3341FIELD objID_hi,       OBJ_ID_HI,    unsigned int,   ID upper bytes
    3442FIELD objID_lo,       OBJ_ID_LO,    unsigned int,   ID lower bytes
Note: See TracChangeset for help on using the changeset viewer.