IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6416


Ignore:
Timestamp:
Feb 9, 2006, 4:43:00 PM (20 years ago)
Author:
jhoblitt
Message:

add telescope & exp_type fields to pxConfig

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxconfig.c

    r6413 r6416  
    1515    config->camera          = NULL;
    1616    config->camera_name     = NULL;
     17    config->telescope       = NULL;
     18    config->exp_type        = NULL;
    1719    config->filter          = NULL;
    18     config->dbh        = NULL;
     20    config->dbh             = NULL;
    1921    config->site            = NULL;
    2022    config->recipe          = NULL;
     
    3436    psFree(config->camera);
    3537    psFree(config->camera_name);
     38    psFree(config->telescope);
     39    psFree(config->exp_type);
    3640    psFree(config->filter);
    3741    psFree(config->dbh);
  • trunk/ippTools/src/pxtools.h

    r6367 r6416  
    3535    psMetadata *camera;
    3636    char *camera_name;
     37    char *telescope;
     38    char *exp_type;
    3739    char *filter;
    3840    psDB *dbh;
Note: See TracChangeset for help on using the changeset viewer.