IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 26, 2012, 12:30:42 PM (14 years ago)
Author:
eugene
Message:

nFitPhotom was signed, changed to unsigned short; change the iterations to have at least 8 loops before any cleaning; add some verbosity; pull the old (pre-threaded) version of setMmos; setMmos_mosaic should take a pointer to the current mosaic; skip entries with skipCal set

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120405/Ohana/src/opihi/dvo/avextract.c

    r33662 r33827  
    3535    remove_argument (N, &argc, argv);
    3636    VERBOSE = TRUE;
     37  }
     38
     39  int VERBOSE2 = FALSE;
     40  if ((N = get_argument (argc, argv, "-vv"))) {
     41    remove_argument (N, &argc, argv);
     42    VERBOSE = TRUE;
     43    VERBOSE2 = TRUE;
    3744  }
    3845
     
    173180    catalog.filename = (HOST_ID || PARALLEL_LOCAL) ? hostfile : skylist[0].filename[i];
    174181    catalog.catflags = LOAD_AVES | LOAD_SECF;
    175     if (needMeasures) {
    176       catalog.catflags |= LOAD_MEAS;
    177     }
     182    catalog.catflags |= needMeasures ? LOAD_MEAS : SKIP_MEAS;
    178183    catalog.Nsecfilt = 0;
    179184
     
    181186     
    182187    // an error exit status here is a significant error
    183     if (!dvo_catalog_open (&catalog, NULL, FALSE, "r")) {
     188    if (!dvo_catalog_open (&catalog, NULL, VERBOSE2, "r")) {
    184189      gprint (GP_ERR, "ERROR: failure to open catalog file %s\n", catalog.filename);
    185190      exit (2);
Note: See TracChangeset for help on using the changeset viewer.