IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 36665


Ignore:
Timestamp:
Apr 15, 2014, 10:53:29 AM (12 years ago)
Author:
bills
Message:

when summarizing only consider full force results with quality == 0

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/psphot_fullforce_summary.pl

    r36633 r36665  
    8585    my $results;
    8686    {
    87         my $command = "$fftool -result -ff_id $ff_id";
     87        my $command = "$fftool -result -ff_id $ff_id -quality 0";
    8888        $command .= " -dbname $dbname" if defined $dbname;
    8989        my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
  • trunk/ippTools/src/fftool.c

    r36633 r36665  
    498498    PXOPT_COPY_STR(config->args, where, "-filter",      "stackRun.filter", "LIKE");
    499499    PXOPT_COPY_S16(config->args, where, "-fault",      "fullForceResult.fault", "==");
     500    PXOPT_COPY_S16(config->args, where, "-quality",    "fullForceResult.quality", "==");
    500501    pxskycellAddWhere(config, where);
    501502
  • trunk/ippTools/src/fftoolConfig.c

    r36633 r36665  
    116116    psMetadataAddStr(resultArgs, PS_LIST_TAIL, "-label", 0, "search by label", NULL);
    117117    psMetadataAddStr(resultArgs, PS_LIST_TAIL, "-data_group", 0, "search by data_group (LIKE comparison)", NULL);
     118    psMetadataAddS16(resultArgs, PS_LIST_TAIL, "-quality", 0, "search by quality value", 0);
    118119    pxskycellAddArguments(resultArgs);
    119120    psMetadataAddS16(resultArgs, PS_LIST_TAIL, "-fault", 0, "search by fault code", 0);
Note: See TracChangeset for help on using the changeset viewer.