Changeset 33446
- Timestamp:
- Mar 9, 2012, 7:05:32 AM (14 years ago)
- Location:
- branches/eam_branches/ipp-20111122/Ohana/src/libdvo
- Files:
-
- 1 added
- 2 edited
-
Makefile (modified) (1 diff)
-
include/dvo.h (modified) (2 diffs)
-
src/dvo_tiny_values.c (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20111122/Ohana/src/libdvo/Makefile
r33397 r33446 52 52 $(SRC)/mosaic_astrom.$(ARCH).o \ 53 53 $(SRC)/fits_db.$(ARCH).o \ 54 $(SRC)/dvo_tiny_values.$(ARCH).o \ 54 55 $(SRC)/dvo_image.$(ARCH).o \ 55 56 $(SRC)/dvo_image_raw.$(ARCH).o \ -
branches/eam_branches/ipp-20111122/Ohana/src/libdvo/include/dvo.h
r33421 r33446 269 269 } PhotCodeData; 270 270 271 // a reduced-subset structure for relastro 272 typedef struct { 273 double R; 274 double D; 275 unsigned short Nmeasure; 276 int measureOffset; 277 uint32_t flags; 278 int catID; 279 } AverageTinyAstro; 271 typedef enum { 272 DVO_TV_MEASURE = 0x01, 273 DVO_TV_AVERAGE = 0x02, 274 } DVOTinyValueMode; 275 276 // XXX DROP? // a reduced-subset structure for relastro 277 // XXX DROP? typedef struct { 278 // XXX DROP? double R; 279 // XXX DROP? double D; 280 // XXX DROP? unsigned short Nmeasure; 281 // XXX DROP? int measureOffset; 282 // XXX DROP? uint32_t flags; 283 // XXX DROP? int catID; 284 // XXX DROP? } AverageTinyAstro; 280 285 281 286 // a reduced-subset structure for relphot … … 609 614 int HostTableWaitJobs (HostTable *table, char *file, int lineno); 610 615 611 # endif 616 // functions to support tiny versions of Average and Measure 617 void CopyAverageToTiny (AverageTiny *averageT, Average *average); 618 void CopyMeasureToTiny (MeasureTiny *measureT, Measure *measure); 619 int populate_tiny_values (Catalog *catalog, DVOTinyValueMode mode); 620 int free_tiny_values (Catalog *catalog); 621 622 # endif // DVO_H 623
Note:
See TracChangeset
for help on using the changeset viewer.
