Changeset 36564
- Timestamp:
- Feb 26, 2014, 3:46:30 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-20140206/Ohana/src/relastro
- Files:
-
- 7 added
- 3 edited
-
include/relastro.h (modified) (1 diff)
-
src/MeanPosIO.c (added)
-
src/MosaicOps.c (modified) (1 diff)
-
src/assign_images.c (added)
-
src/indexCatalogs.c (added)
-
src/launch_region_hosts.c (added)
-
src/relastro.c (modified) (1 diff)
-
src/relastro_parallel_images.c (added)
-
src/relastro_parallel_regions.c (added)
-
src/share_mean_pos.c (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140206/Ohana/src/relastro/include/relastro.h
r35763 r36564 30 30 MARK_BIG_OFFSET = 0x0010, 31 31 } MeasurementMask; 32 33 typedef struct { 34 float R; 35 float D; 36 unsigned int objID; 37 unsigned int catID; 38 } MeanPos; 32 39 33 40 typedef struct { -
branches/eam_branches/ipp-20140206/Ohana/src/relastro/src/MosaicOps.c
r27581 r36564 11 11 12 12 // list of mosaic associated with each image 13 static off_t Nmosaic_for_images; // number of images (for off_ternal checks)13 static off_t Nmosaic_for_images; // number of images (for internal checks) 14 14 static off_t *mosaic_for_images; // array of: image -> mosaic 15 15 -
branches/eam_branches/ipp-20140206/Ohana/src/relastro/src/relastro.c
r35763 r36564 41 41 exit (0); 42 42 43 case TARGET_PARALLEL_REGIONS: 44 // run image updates in parallel across multiple remote machines 45 relastro_parallel_regions (); 46 exit (0); 47 48 case TARGET_PARALLEL_IMAGES: 49 // operation on the remote machines in the PARALLEL_REGION mode 50 relastro_parallel_images (); 51 exit (0); 52 43 53 default: 44 54 fprintf (stderr, "impossible!\n");
Note:
See TracChangeset
for help on using the changeset viewer.
