Changeset 38688
- Timestamp:
- Aug 28, 2015, 4:03:51 PM (11 years ago)
- Location:
- branches/eam_branches/ipp-20150625/Ohana/src
- Files:
-
- 7 edited
-
libfits/Makefile (modified) (1 diff)
-
photdbc/src/copy_images.c (modified) (1 diff)
-
relastro/src/assign_images.c (modified) (1 diff)
-
relastro/src/load_images.c (modified) (1 diff)
-
relastro/src/relastro_parallel_images.c (modified) (1 diff)
-
relastro/src/share_images_pos.c (modified) (1 diff)
-
relphot/src/load_images.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20150625/Ohana/src/libfits/Makefile
r38441 r38688 25 25 TEST_CPPFLAGS = $(BASE_CPPFLAGS) 26 26 TEST_LDFLAGS = $(BASE_LDFLAGS) -lFITS -lohana -ltap_ohana 27 28 27 29 28 TESTXTRA = tcomptiming -
branches/eam_branches/ipp-20150625/Ohana/src/photdbc/src/copy_images.c
r38441 r38688 59 59 char mapfile[DVO_MAX_PATH]; 60 60 snprintf (mapfile, DVO_MAX_PATH, "%s/AstroMap.fits", CATDIR); 61 AstromOffsetTable *table_src = AstromOffsetMapLoad (mapfile, VERBOSE);61 AstromOffsetTable *table_src = AstromOffsetMapLoad (mapfile, 100000, VERBOSE); 62 62 63 63 // assign images.coords.offsetMap -> table->map[i] -
branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/assign_images.c
r38441 r38688 26 26 char mapfile[DVO_MAX_PATH]; 27 27 snprintf (mapfile, DVO_MAX_PATH, "%s/AstroMap.fits", CATDIR); 28 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, VERBOSE);28 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, 100000, VERBOSE); 29 29 30 30 // assign images.coords.offsetMap -> table->map[i] -
branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/load_images.c
r38441 r38688 29 29 char mapfile[DVO_MAX_PATH]; 30 30 snprintf (mapfile, DVO_MAX_PATH, "%s/AstroMap.fits", CATDIR); 31 table = AstromOffsetMapLoad (mapfile, VERBOSE);31 table = AstromOffsetMapLoad (mapfile, 100000, VERBOSE); 32 32 33 33 // assign images.coords.offsetMap -> table->map[i] -
branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/relastro_parallel_images.c
r38664 r38688 40 40 char mapfile[DVO_MAX_PATH]; 41 41 snprintf (mapfile, DVO_MAX_PATH, "%s/AstroMap.%d.fits", CATDIR, REGION_HOST_ID); 42 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, VERBOSE);42 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, 100000, VERBOSE); 43 43 44 44 // assign images.coords.offsetMap -> table->map[i] -
branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/share_images_pos.c
r38062 r38688 115 115 snprintf (mapname, 1024, "%s/AstroMapUpdate.%d.fits", CATDIR, regionHosts->hosts[i].hostID); 116 116 117 AstromOffsetTable *table = AstromOffsetMapLoad (mapname, VERBOSE);117 AstromOffsetTable *table = AstromOffsetMapLoad (mapname, 100000, VERBOSE); 118 118 LOGRTIME("image_maps_load host %d loop %d on %s, host %d: %f sec\n", i, nloop, myHostName, REGION_HOST_ID, dtime); 119 119 -
branches/eam_branches/ipp-20150625/Ohana/src/relphot/src/load_images.c
r38441 r38688 31 31 MARKTIME("build chip match for %d images: %f sec\n", (int) Nimage, dtime); 32 32 33 // XXX consider allowing relphot to skip the AstroMap load (do we need precise astrometry here?) 34 33 35 char mapfile[DVO_MAX_PATH]; 34 36 snprintf (mapfile, DVO_MAX_PATH, "%s/AstroMap.fits", CATDIR); 35 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, VERBOSE);37 AstromOffsetTable *table = AstromOffsetMapLoad (mapfile, 100000, VERBOSE); 36 38 37 39 // assign images.coords.offsetMap -> table->map[i]
Note:
See TracChangeset
for help on using the changeset viewer.
