IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2013, 3:30:44 PM (13 years ago)
Author:
eugene
Message:

option to specify output format for fits table columns; add dbinsert; pass db info on command line; option to make a guess for vgauss; option to rename a spline; option to get results files for remote clients; some improvments to gstar (sorting, optional fields)

Location:
trunk/Ohana/src/opihi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi

  • trunk/Ohana/src/opihi/dvo/remote.c

    r34749 r35109  
    2626    gprint (GP_ERR, "  -v : verbose mode:\n");
    2727    gprint (GP_ERR, "OR:    remote -reload (uniquer)\n");
     28    gprint (GP_ERR, "OR:    remote -get-results (uniquer)\n");
    2829    return FALSE;
    2930  }
     
    4849  }
    4950
     51  if ((N = get_argument (argc, argv, "-get-results"))) {
     52    remove_argument (N, &argc, argv);
     53    if (argc != 2) {
     54      gprint (GP_ERR, "USAGE: remote -get-results (uniquer)\n");
     55      gprint (GP_ERR, " (uniquer) is the element in the middle of the results file\n");
     56      gprint (GP_ERR, " eg: dvo.results.XXXXX.YYYYY.fits\n");
     57      return FALSE;
     58    }
     59    int status = HostTableGetResults (argv[1], VERBOSE);
     60    return status;
     61  }
     62
    5063  // strip of the 'remote' and send the remaining arguments to the remote machine
    5164  int status = HostTableParallelOps (argc - 1, &argv[1], NULL, ReadVectors, 0, VERBOSE);
Note: See TracChangeset for help on using the changeset viewer.