IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37003


Ignore:
Timestamp:
Jul 13, 2014, 10:55:09 AM (12 years ago)
Author:
eugene
Message:

add paramsOffset to average.d (for stellar parameters); refColor changed to refColorBlue,refColorRed; stole 4 bytes from image.name for refColorRed; chnaged X,YoffGAL to R,DoffGAL

Location:
branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/average-ps1-v5.d

    r36921 r37003  
    22EXTNAME      DVO_AVERAGE_PS1_V5
    33TYPE         BINTABLE
    4 SIZE         176
     4SIZE         184
    55DESCRIPTION  DVO Average Object Table
    66
     
    4848FIELD lensobjOffset,  OFF_LENSOBJ, int,             offset to mean lensing data
    4949FIELD extendOffset,   OFF_EXTEND,  int,             offset to extended object entry
     50FIELD paramsOffset,   OFF_EXTEND,  int,             offset to stellar parameter data
    5051
    51 FIELD refColor,       REF_COLOR,   float,           color of reference stars
     52FIELD refColorBlue,   REF_COLOR_BLUE, float,        color of astrometry ref stars
     53FIELD refColorRed,    REF_COLOR_RED,  float,        color of astrometry ref stars
    5254
    5355# 'flags' was called 'code' prior to 2009.02.07
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/average.d

    r36921 r37003  
    22EXTNAME      DVO_AVERAGE
    33TYPE         BINTABLE
    4 SIZE         176
     4SIZE         184
    55DESCRIPTION  DVO Average Object Table
    66
     
    4848FIELD lensobjOffset,  OFF_LENSOBJ, int,             offset to mean lensing data
    4949FIELD extendOffset,   OFF_EXTEND,  int,             offset to extended object entry
     50FIELD paramsOffset,   OFF_EXTEND,  int,             offset to stellar parameter data
    5051
    51 FIELD refColor,       REF_COLOR,   float,           color of astrometry ref stars
     52FIELD refColorBlue,   REF_COLOR_BLUE, float,        color of astrometry ref stars
     53FIELD refColorRed,    REF_COLOR_RED,  float,        color of astrometry ref stars
    5254
    5355# 'flags' was called 'code' prior to 2009.02.07
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/common.h

    r34088 r37003  
    3232# define rawshort short
    3333
    34 # define DVO_IMAGE_NAME_LEN 121
     34# define DVO_IMAGE_NAME_LEN 117
    3535
    3636/*** rawshort is used to handle the broken pre-autocode photreg tables
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/image-ps1-v5.d

    r36899 r37003  
    66
    77# elements of the image structure
     8# careful of 8-byte boundaries
    89
    910SUBSTRUCT coords,           COORDS,               Coords,        astrometric data
     
    2324# 120 bytes
    2425
     26# change this to a double mjd?
    2527FIELD     tzero,            TZERO,                e_time,         readout time (row 0)
    2628FIELD     nstar,            NSTAR,                unsigned int,   number of stars on image
     
    4244FIELD     DECo,             DEC_CENTER,           float,          image center,              degrees
    4345FIELD     Radius,           RADIUS,               float,          image radius,              degrees
    44 FIELD     refColor,         REF_COLOR,            float,          median astrometry ref color
     46FIELD     refColorBlue,     REF_COLOR_BLUE,       float,          median astrometry ref color
     47FIELD     refColorRed,      REF_COLOR_RED,        float,          median astrometry ref color
    4548
    4649# should we define the max length of name as a macro?
    47 FIELD     name,             NAME,                 char[121],      name of original image
     50FIELD     name,             NAME,                 char[117],      name of original image
    4851FIELD     detection_limit,  DETECTION_LIMIT,      unsigned char,  detection limit,           10*mag
    4952FIELD     saturation_limit, SATURATION_LIMIT,     unsigned char,  saturation limit,          10*mag
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/image.d

    r36899 r37003  
    4444FIELD     DECo,             DEC_CENTER,           float,          image center,              degrees
    4545FIELD     Radius,           RADIUS,               float,          image radius,              degrees
    46 FIELD     refColor,         REF_COLOR,            float,          median astrometry ref color
     46FIELD     refColorBlue,     REF_COLOR_BLUE,       float,          median astrometry ref color
     47FIELD     refColorRed,      REF_COLOR_RED,        float,          median astrometry ref color
    4748
    48 FIELD     name,             NAME,                 char[121],      name of original image
     49# should we define the max length of name as a macro?
     50FIELD     name,             NAME,                 char[117],      name of original image
    4951FIELD     detection_limit,  DETECTION_LIMIT,      unsigned char,  detection limit,           10*mag
    5052FIELD     saturation_limit, SATURATION_LIMIT,     unsigned char,  saturation limit,          10*mag
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/measure-ps1-v5.d

    r36899 r37003  
    4040FIELD XoffDCR,        X_OFF_DCR,     float,          X offset from correction,     pixels
    4141FIELD YoffDCR,        Y_OFF_DCR,     float,          Y offset from correction,     pixels
    42 FIELD XoffGAL,        X_OFF_GAL,     float,          X offset from correction,     pixels
    43 FIELD YoffGAL,        Y_OFF_GAL,     float,          Y offset from correction,     pixels
     42FIELD RoffGAL,        R_OFF_GAL,     float,          RA offset from correction,    arcsec
     43FIELD DoffGAL,        D_OFF_GAL,     float,          DEC offset from correction,   arcsec
    4444
    4545# could these be packed into fewer bits?
  • branches/eam_branches/ipp-20140610/Ohana/src/libautocode/def/measure.d

    r36899 r37003  
    4040FIELD XoffDCR,        X_OFF_DCR,     float,          X offset from correction,     pixels
    4141FIELD YoffDCR,        Y_OFF_DCR,     float,          Y offset from correction,     pixels
    42 FIELD XoffGAL,        X_OFF_GAL,     float,          X offset from correction,     pixels
    43 FIELD YoffGAL,        Y_OFF_GAL,     float,          Y offset from correction,     pixels
     42FIELD RoffGAL,        R_OFF_GAL,     float,          RA offset from correction,    arcsec
     43FIELD DoffGAL,        D_OFF_GAL,     float,          DEC offset from correction,   arcsec
    4444
    4545# could these be packed into fewer bits?
Note: See TracChangeset for help on using the changeset viewer.