IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 13, 2016, 11:51:19 AM (10 years ago)
Author:
eugene
Message:

temporarily disable clean_measures; explicitly use INNER_WT_MEAN for GridOps (not really used); clean up command construction in relphot_objects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/relphot/src/relphot_objects.c

    r39621 r39632  
    228228
    229229    char *command = NULL;
    230     strextend (&command, "relphot_client -update-objects -hostID %d -D CATDIR %s -hostdir %s -region %f %f %f %f -statmode %s -D CAMERA %s -D STAR_TOOFEW %d -minerror %f",
    231               table->hosts[i].hostID, CATDIR, table->hosts[i].pathname, UserPatch.Rmin, UserPatch.Rmax, UserPatch.Dmin, UserPatch.Dmax, STATMODE, CAMERA, STAR_TOOFEW, MIN_ERROR);
     230    strextend (&command, "relphot_client -update-objects");
     231    strextend (&command, "-hostID %d", table->hosts[i].hostID);
     232    strextend (&command, "-D CATDIR %s", CATDIR);
     233    strextend (&command, "-hostdir %s", table->hosts[i].pathname);
     234    strextend (&command, "-region %f %f %f %f", UserPatch.Rmin, UserPatch.Rmax, UserPatch.Dmin, UserPatch.Dmax);
     235    strextend (&command, "-statmode %s", STATMODE);
     236    strextend (&command, "-D CAMERA %s", CAMERA);
     237    strextend (&command, "-D STAR_TOOFEW %d", STAR_TOOFEW);
     238    strextend (&command, "-minerror %f", MIN_ERROR);
    232239
    233240    if (VERBOSE)           { strextend (&command, "-v"); }
Note: See TracChangeset for help on using the changeset viewer.