IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 27, 2015, 4:49:06 PM (11 years ago)
Author:
eugene
Message:

extensive work on relphot, relastro, uniphot, dvomerge aiming to the construction and calibration of PV3

Location:
trunk/Ohana
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/dvolens/include/dvolens.h

    r38153 r38986  
    6868int           main                    PROTO((int argc, char **argv));
    6969
    70 void          update_objects          PROTO(());
     70void          update_objects          PROTO((void));
    7171int           update_objects_parallel PROTO((SkyList *sky));
    7272int           update_objects_catalog  PROTO((Catalog *catalog));
  • trunk/Ohana/src/dvolens/src/dvolens.c

    r37358 r38986  
    44
    55  // get configuration info, args
     6  SetSignals ();
    67  DvoLensMode mode = initialize (argc, argv);
    78  if (!mode) exit (2);
  • trunk/Ohana/src/dvolens/src/update_objects.c

    r38471 r38986  
    9494
    9595    SetProtect (TRUE);
    96     dvo_catalog_save (&catalog, VERBOSE);
    97     dvo_catalog_unlock (&catalog);
     96    if (!dvo_catalog_save (&catalog, VERBOSE)) { fprintf (stderr, "ERROR: failed to save %s\n", catalog.filename); exit (1); }
     97    if (!dvo_catalog_unlock (&catalog)) { fprintf (stderr, "ERROR: failed to unlock %s\n", catalog.filename); exit (1); }
    9898    SetProtect (FALSE);
    9999
Note: See TracChangeset for help on using the changeset viewer.