IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 5:20:29 PM (17 years ago)
Author:
watersc1
Message:

Finished up my edits to the detrend cleanup, and some changes to my
copy of burntool and the pslib astrometry. Detrend cleanup has not
been tested yet. That's up next.

Location:
branches/czw_branch/cleanup
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup

  • branches/czw_branch/cleanup/ippTools/src/faketool.c

    r24743 r24951  
    136136    PXOPT_COPY_F64(config->args, where, "-airmass_min", "airmass", ">=");
    137137    PXOPT_COPY_F64(config->args, where, "-airmass_max", "airmass", "<");
    138     PXOPT_COPY_F64(config->args, where, "-ra_min", "ra", ">=");
    139     PXOPT_COPY_F64(config->args, where, "-ra_max", "ra", "<");
    140     PXOPT_COPY_F64(config->args, where, "-decl_min", "decl", ">=");
    141     PXOPT_COPY_F64(config->args, where, "-decl_max", "decl", "<");
     138    PXOPT_COPY_RADEC(config->args, where, "-ra_min", "ra", ">=");
     139    PXOPT_COPY_RADEC(config->args, where, "-ra_max", "ra", "<");
     140    PXOPT_COPY_RADEC(config->args, where, "-decl_min", "decl", ">=");
     141    PXOPT_COPY_RADEC(config->args, where, "-decl_max", "decl", "<");
    142142    PXOPT_COPY_F32(config->args, where, "-exp_time_min", "exp_time", ">=");
    143143    PXOPT_COPY_F32(config->args, where, "-exp_time_max", "exp_time", "<");
     
    159159    PXOPT_COPY_F64(config->args, where, "-posang_max", "posang", "<");
    160160    PXOPT_COPY_STR(config->args, where, "-object", "object", "==");
    161     PXOPT_COPY_F32(config->args, where, "-solang_min", "solang", ">=");
    162     PXOPT_COPY_F32(config->args, where, "-solang_max", "solang", "<");
     161    PXOPT_COPY_F32(config->args, where, "-sun_angle_min", "sun_angle", ">=");
     162    PXOPT_COPY_F32(config->args, where, "-sun_angle_max", "sun_angle", "<");
    163163    PXOPT_COPY_STR(config->args, where, "-comment", "comment", "LIKE");
    164164
     
    304304    PXOPT_COPY_F64(config->args, where, "-airmass_min", "airmass", ">=");
    305305    PXOPT_COPY_F64(config->args, where, "-airmass_max", "airmass", "<");
    306     PXOPT_COPY_F64(config->args, where, "-ra_min", "ra", ">=");
    307     PXOPT_COPY_F64(config->args, where, "-ra_max", "ra", "<");
    308     PXOPT_COPY_F64(config->args, where, "-decl_min", "decl", ">=");
    309     PXOPT_COPY_F64(config->args, where, "-decl_max", "decl", "<");
     306    PXOPT_COPY_RADEC(config->args, where, "-ra_min", "ra", ">=");
     307    PXOPT_COPY_RADEC(config->args, where, "-ra_max", "ra", "<");
     308    PXOPT_COPY_RADEC(config->args, where, "-decl_min", "decl", ">=");
     309    PXOPT_COPY_RADEC(config->args, where, "-decl_max", "decl", "<");
    310310    PXOPT_COPY_F32(config->args, where, "-exp_time_min", "exp_time", ">=");
    311311    PXOPT_COPY_F32(config->args, where, "-exp_time_max", "exp_time", "<");
     
    327327    PXOPT_COPY_F64(config->args, where, "-posang_max", "posang", "<");
    328328    PXOPT_COPY_STR(config->args, where, "-object", "object", "==");
    329     PXOPT_COPY_F32(config->args, where, "-solang_min", "solang", ">=");
    330     PXOPT_COPY_F32(config->args, where, "-solang_max", "solang", "<");
     329    PXOPT_COPY_F32(config->args, where, "-sun_angle_min", "sun_angle", ">=");
     330    PXOPT_COPY_F32(config->args, where, "-sun_angle_max", "sun_angle", "<");
    331331    PXOPT_COPY_STR(config->args, where, "-label", "fakeRun.label", "==");
    332332
     
    648648    PXOPT_COPY_F64(config->args, where, "-airmass_min", "airmass", ">=");
    649649    PXOPT_COPY_F64(config->args, where, "-airmass_max", "airmass", "<");
    650     PXOPT_COPY_F64(config->args, where, "-ra_min", "ra", ">=");
    651     PXOPT_COPY_F64(config->args, where, "-ra_max", "ra", "<");
    652     PXOPT_COPY_F64(config->args, where, "-decl_min", "decl", ">=");
    653     PXOPT_COPY_F64(config->args, where, "-decl_max", "decl", "<");
     650    PXOPT_COPY_RADEC(config->args, where, "-ra_min", "ra", ">=");
     651    PXOPT_COPY_RADEC(config->args, where, "-ra_max", "ra", "<");
     652    PXOPT_COPY_RADEC(config->args, where, "-decl_min", "decl", ">=");
     653    PXOPT_COPY_RADEC(config->args, where, "-decl_max", "decl", "<");
    654654    PXOPT_COPY_F32(config->args, where, "-exp_time_min", "exp_time", ">=");
    655655    PXOPT_COPY_F32(config->args, where, "-exp_time_max", "exp_time", "<");
     
    671671    PXOPT_COPY_F64(config->args, where, "-posang_max", "posang", "<");
    672672    PXOPT_COPY_STR(config->args, where, "-object", "object", "==");
    673     PXOPT_COPY_F32(config->args, where, "-solang_min", "solang", ">=");
    674     PXOPT_COPY_F32(config->args, where, "-solang_max", "solang", "<");
     673    PXOPT_COPY_F32(config->args, where, "-sun_angle_min", "sun_angle", ">=");
     674    PXOPT_COPY_F32(config->args, where, "-sun_angle_max", "sun_angle", "<");
    675675
    676676    if (!psListLength(where->list)
Note: See TracChangeset for help on using the changeset viewer.