IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 12, 2015, 9:26:15 PM (11 years ago)
Author:
eugene
Message:

merge changes from trunk

Location:
branches/eam_branches/ipp-20150419/Ohana/src/opihi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150419/Ohana/src/opihi

  • branches/eam_branches/ipp-20150419/Ohana/src/opihi/dvo/mextract.c

    r37807 r38443  
    1919    return FALSE;
    2020}
     21
     22void gfits_uncompress_timing ();
    2123
    2224int mextract (int argc, char **argv) {
     
    229231    snprintf (hostfile, 1024, "%s/%s.cpt", HOSTDIR, skylist[0].regions[i]->name);
    230232    catalog.filename = HOST_ID ? hostfile : skylist[0].filename[i];
    231     catalog.catflags = LOAD_AVES | LOAD_MEAS | LOAD_SECF;
    232     // catalog.catflags |= needLensing ? LOAD_LENSING : SKIP_LENSING;
    233     catalog.catflags |= needStarpar ? LOAD_STARPAR : SKIP_STARPAR;
     233    catalog.catflags = DVO_LOAD_AVERAGE | DVO_LOAD_MEASURE | DVO_LOAD_SECFILT;
     234    // catalog.catflags |= needLensing ? DVO_LOAD_LENSING : DVO_SKIP_LENSING;
     235    catalog.catflags |= needStarpar ? DVO_LOAD_STARPAR : DVO_SKIP_STARPAR;
    234236    catalog.Nsecfilt = Nsecfilt;
    235237
     
    317319  // write vectors to a table (this is used by parallel dvo operations, but can be used elsewhere)
    318320  if (RESULT_FILE && !SKIP_RESULTS) {
    319     int status = WriteVectorTableFITS (RESULT_FILE, "RESULT", vec, Nreturn, FALSE, NULL);
     321    int status = WriteVectorTableFITS (RESULT_FILE, "RESULT", vec, Nreturn, FALSE, FALSE, NULL);
    320322    if (!status) goto escape;
    321323  }
     
    330332  SkyListFree (skylist);
    331333  FreeSkyRegionSelection (selection);
     334
     335  gfits_uncompress_timing();
    332336
    333337  // fprintf (stderr, "done extr...\n");
Note: See TracChangeset for help on using the changeset viewer.