IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 5, 2008, 10:31:08 AM (18 years ago)
Author:
jhoblitt
Message:

fwv

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/faketool/ippTools/src/camtool.c

    r17609 r17938  
    2727
    2828#include "pxtools.h"
    29 #include "pxwarp.h"
    3029#include "pxcam.h"
    3130#include "camtool.h"
     
    599598    psFree(output);
    600599    camProcessedExpRow *row = camProcessedExpRowAlloc(
    601         pendingRow->cam_id,
    602         pendingRow->chip_id,
    603         uri,
    604         bg,
    605         bg_stdev,
    606         bg_mean_stdev,
    607         bias,
    608         bias_stdev,
    609         fringe_0,
    610         fringe_1,
    611         fringe_2,
    612         sigma_ra,
    613         sigma_dec,
    614         ap_resid,
    615         ap_resid_stdev,
    616         zp_mean,
    617         zp_stdev,
    618         fwhm_major,
    619         fwhm_minor,
    620         dtime_detrend,
    621         dtime_photom,
    622         dtime_astrom,
    623         hostname,
    624         n_stars,
    625         n_extended,
    626         n_cr,
    627         n_astrom,
    628         path_base,
    629         code
     600            pendingRow->cam_id,
     601            pendingRow->chip_id,
     602            uri,
     603            bg,
     604            bg_stdev,
     605            bg_mean_stdev,
     606            bias,
     607            bias_stdev,
     608            fringe_0,
     609            fringe_1,
     610            fringe_2,
     611            sigma_ra,
     612            sigma_dec,
     613            ap_resid,
     614            ap_resid_stdev,
     615            zp_mean,
     616            zp_stdev,
     617            fwhm_major,
     618            fwhm_minor,
     619            dtime_detrend,
     620            dtime_photom,
     621            dtime_astrom,
     622            hostname,
     623            n_stars,
     624            n_extended,
     625            n_cr,
     626            n_astrom,
     627            path_base,
     628            code
    630629        );
    631630
     
    649648    }
    650649
    651     // should we stop here or proceed on to the warp stage?
    652650    // NULL for end_stage means go as far as possible
    653     // we can't start a warp run unlesss tess_id is defined
     651    // XXX true for fake too?
     652    // XXX we can't start a warp run unlesss tess_id is defined
    654653    if ((pendingRow->end_stage && psStrcasestr(pendingRow->end_stage, "cam"))
    655654        || (pendingRow->tess_id == NULL) || psStrcasestr(pendingRow->tess_id, "NULL")) {
     
    666665    // else continue on...
    667666
    668     if (!pxwarpQueueByCamID(config,
     667    if (!pxfakeQueueByCamID(config,
    669668            pendingRow->cam_id,
    670669            pendingRow->workdir,
    671670            pendingRow->label,
     671            pendingRow->reduction,
     672            pendingRow->expgroup,
    672673            pendingRow->dvodb,
    673674            pendingRow->tess_id,
     
    678679            psError(PS_ERR_UNKNOWN, false, "database error");
    679680        }
    680         psError(PS_ERR_UNKNOWN, false, "failed to queue new warpRun");
     681        psError(PS_ERR_UNKNOWN, false, "failed to queue new fakeRun");
    681682        psFree(pendingRow);
    682683        return false;
Note: See TracChangeset for help on using the changeset viewer.