Changeset 38631
- Timestamp:
- Jul 23, 2015, 8:48:53 AM (11 years ago)
- Location:
- branches/eam_branches/ipp-20150625/Ohana/src/uniphot
- Files:
-
- 1 added
- 1 deleted
- 4 edited
-
Makefile (modified) (2 diffs)
-
include/setphot.h (modified) (2 diffs)
-
include/setphot_client.h (deleted)
-
src/initialize_setphot.c (modified) (1 diff)
-
src/repair_catalog_by_objID.c (added)
-
src/update_dvo_setphot.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20150625/Ohana/src/uniphot/Makefile
r38617 r38631 67 67 $(SRC)/update_dvo_setphot.$(ARCH).o \ 68 68 $(SRC)/update_catalog_setphot.$(ARCH).o \ 69 $(SRC)/repair_catalog_by_objID.$(ARCH).o \ 69 70 $(SRC)/SetSignals.$(ARCH).o \ 70 71 $(SRC)/Shutdown.$(ARCH).o … … 77 78 $(SRC)/update_dvo_setphot.$(ARCH).o \ 78 79 $(SRC)/update_catalog_setphot.$(ARCH).o \ 80 $(SRC)/repair_catalog_by_objID.$(ARCH).o \ 79 81 $(SRC)/initialize_setphot_client.$(ARCH).o \ 80 82 $(SRC)/SetSignals.$(ARCH).o \ -
branches/eam_branches/ipp-20150625/Ohana/src/uniphot/include/setphot.h
r35103 r38631 35 35 int PARALLEL_SERIAL; 36 36 int IMAGES_ONLY; 37 int REPAIR_BY_OBJID; 37 38 38 39 SkyRegion UserPatch; … … 76 77 int parse_zpt_offsets PROTO((char *ZPT_OFFSET_FILTERS, char *ZPT_OFFSET_VALUES)); 77 78 float apply_zpt_offset PROTO((short code)); 79 80 int repair_catalog_by_objID (Catalog *catalog); -
branches/eam_branches/ipp-20150625/Ohana/src/uniphot/src/initialize_setphot.c
r35103 r38631 49 49 if ((N = get_argument (argc, argv, "-reset"))) { 50 50 RESET = TRUE; 51 remove_argument (N, &argc, argv); 52 } 53 54 REPAIR_BY_OBJID = FALSE; 55 if ((N = get_argument (argc, argv, "-repair-by-objid"))) { 56 REPAIR_BY_OBJID = TRUE; 51 57 remove_argument (N, &argc, argv); 52 58 } -
branches/eam_branches/ipp-20150625/Ohana/src/uniphot/src/update_dvo_setphot.c
r38617 r38631 65 65 dvo_catalog_free (&catalog); 66 66 continue; 67 } 68 69 if (REPAIR_BY_OBJID) { 70 // For gpc1 / PV3, I broke some catalogs with dvomerge -replace: the last object can 71 // contaminate the first set of new measurements 72 repair_catalog_by_objID (&catalog); 67 73 } 68 74
Note:
See TracChangeset
for help on using the changeset viewer.
