IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18670


Ignore:
Timestamp:
Jul 23, 2008, 10:52:33 AM (18 years ago)
Author:
Paul Price
Message:

good_frac should be F32. Also, get rid of dependence on
diffSkyfile.good_frac --- it's smaller than warpSkyfile.good_frac
(because of convolution), and we didn't select on it but rather on
warpSkyfile.good_frac (when we chose what to diff).

File:
1 edited

Legend:

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

    r18663 r18670  
    144144        psMetadata *where = psMetadataAlloc();
    145145        PXOPT_COPY_S64(config->args, where, "-exp_id", "exp_id", "==");
    146         PXOPT_COPY_S64(config->args, where, "-good_frac", "warpSkyfile.good_frac", ">=");
    147         PXOPT_COPY_S64(config->args, where, "-good_frac", "diffSkyfile.good_frac", ">=");
     146        PXOPT_COPY_F32(config->args, where, "-good_frac", "warpSkyfile.good_frac", ">=");
    148147
    149148        if (psListLength(where->list)) {
     
    183182            psMetadata *where = psMetadataAlloc();
    184183            PXOPT_COPY_S64(config->args, where, "-exp_id", "exp_id", "==");
    185             PXOPT_COPY_S64(config->args, where, "-good_frac", "warpSkyfile.good_frac", ">=");
     184            PXOPT_COPY_F32(config->args, where, "-good_frac", "warpSkyfile.good_frac", ">=");
    186185
    187186            if (psListLength(where->list)) {
Note: See TracChangeset for help on using the changeset viewer.