IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4019


Ignore:
Timestamp:
May 24, 2005, 6:18:38 AM (21 years ago)
Author:
eugene
Message:

adding the image structure

Location:
trunk/Ohana/src/libautocode
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libautocode/Makefile

    r3609 r4019  
    2929# remember to add entries here to libohana/Makefile:AOBJ as well
    3030LIBOBJ = \
     31$(SRC)/image.$(ARCH).o \
    3132$(SRC)/regimage.$(ARCH).o \
    3233$(SRC)/detreg.$(ARCH).o \
     
    3839
    3940LIBINC = \
     41$(INC)/image.h \
    4042$(INC)/regimage.h \
    4143$(INC)/detreg.h \
  • trunk/Ohana/src/libautocode/def/autocode.c

    r3515 r4019  
    5959  return (TRUE);
    6060}
     61
     62int fits_table_mkheader_$STRUCT (Header *header) {
     63
     64  /* create table header */
     65  fits_create_table_header (header, "$TYPE", "$EXTNAME");
     66
     67  /* define table layout */
     68  /** TABLE DEFINITION **/
     69
     70  return (TRUE);
     71}
  • trunk/Ohana/src/libautocode/def/spectrum-ascii.d

    r3515 r4019  
    2828FIELD state,      STATE,      int[2],      raw/wav/flx/etc,       
    2929FIELD flag,       FLAG,       int[3],      status flags,         
     30
     31FIELD obstime,    START_TIME, char[20],    start time of measurement, yyyy/mm/dd,hh:mm:ss
     32FIELD filter,     FILTER,     char[10],    filter and camera name   
     33FIELD ZP,         ZP_OBS,     float[8.4],  measured zero point,       mag
     34FIELD dZP,        ZP_ERR,     float[7.4],  error on zero point,       mag
     35FIELD ra,         RA,         float[11.6], RA (J2000),                dec. degrees
     36FIELD dec,        DEC,        float[11.6], DEC (J2000),               dec. degrees
     37FIELD airmass,    C_AIRMASS,  float[7.3],  airmass coeff,             mag per airmass
     38FIELD sky,        SKY,        float[7.1],  median sky flux,           counts
     39FIELD Nstar,      NSTAR,      int[6],      Number of stars in image,  stars
  • trunk/Ohana/src/libautocode/generate

    r3609 r4019  
    185185        }
    186186        # this is a patch for old photreg tables: provide a fix for the tables
     187        # some photreg tables were not byteswapped for certain columns
    187188        if ($type eq "rawshort")  {
    188189            $N +=2;
Note: See TracChangeset for help on using the changeset viewer.