IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 17, 2008, 1:17:16 PM (18 years ago)
Author:
eugene
Message:

adding iq, fwhm fields to chip and cam, adding camera, telescope, epoch to flatcorrRun

File:
1 edited

Legend:

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

    r19371 r20244  
    109109    }
    110110
     111    // require the camera to be defined: this analysis does not make sense
     112    // across multiple cameras
     113    PXOPT_LOOKUP_STR(camera, config->args, "-inst", true, false);
     114    PXOPT_LOOKUP_STR(telescope, config->args, "-telescope", false, false);
     115
    111116    PXOPT_LOOKUP_STR(workdir, config->args, "-set_workdir", false, false);
    112117    PXOPT_LOOKUP_STR(label, config->args, "-set_label", false, false);
     
    117122    PXOPT_LOOKUP_STR(tess_id, config->args, "-set_tess_id", false, false);
    118123    PXOPT_LOOKUP_STR(region, config->args, "-set_region", false, false);
    119     // XXX probably should make the region in -set_region match ra_min, ra_max, etc
    120124
    121125    PXOPT_LOOKUP_BOOL(pretend, config->args, "-pretend", false);
     
    181185            0,      // corr_id
    182186            dvodb,
     187            camera,
     188            telescope,
     189            NULL,
    183190            filter,
    184191            "reg",  // state
     
    260267    PS_ASSERT_PTR_NON_NULL(config, false);
    261268
     269    // require the camera to be defined: this analysis does not make sense across multiple
     270    // cameras
     271    PXOPT_LOOKUP_STR(camera, config->args, "-inst", true, false);
     272    PXOPT_LOOKUP_STR(telescope, config->args, "-telescope", false, false);
     273
    262274    PXOPT_LOOKUP_STR(workdir, config->args, "-set_workdir", false, false);
    263275    PXOPT_LOOKUP_STR(label, config->args, "-set_label", false, false);
     
    283295        0,      // corr_id
    284296        dvodb,
     297        camera,
     298        telescope,
     299        NULL,
    285300        filter,
    286301        "reg",  // state
Note: See TracChangeset for help on using the changeset viewer.