Changeset 27435 for trunk/Ohana/src/libdvo/include/dvo_util.h
- Timestamp:
- Mar 24, 2010, 11:22:25 AM (16 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/libdvo/include/dvo_util.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
Property svn:mergeinfo
set to
/branches/eam_branches/20091201/Ohana merged eligible /branches/eam_branches/largefiles.20100314/Ohana merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Ohana/src/libdvo/include/dvo_util.h
r26410 r27435 9 9 10 10 typedef struct { 11 char gscfile[256];12 char catdir[256];13 char catmode[256];14 char catformat[256];15 char photcodeFile[256];16 char skyTableFile[256];17 int skyDepth;18 FITS_DB imageDB;19 Image*images;20 intnImages;21 SkyTable*skyTable;11 char gscfile[256]; 12 char catdir[256]; 13 char catmode[256]; 14 char catformat[256]; 15 char photcodeFile[256]; 16 char skyTableFile[256]; 17 int skyDepth; 18 FITS_DB imageDB; 19 Image *images; 20 off_t nImages; 21 SkyTable *skyTable; 22 22 #if (DVO_UTIL_READ_CAMERA_CONFIG) 23 char cameraConfig[256];24 int*ccdNum;25 int nCCD;23 char cameraConfig[256]; 24 int *ccdNum; 25 int nCCD; 26 26 #endif 27 27 } dvoConfig; … … 29 29 // This structure needs to be fleshed out 30 30 typedef struct { 31 int valid;32 Average ave;33 Measure meas;31 int valid; 32 Average ave; 33 Measure meas; 34 34 #ifdef notdef 35 int objID;36 int catID;37 int detID;38 uint64_t pspsObjID;39 uint64_t pspsDetID;35 int objID; 36 int catID; 37 int detID; 38 uint64_t pspsObjID; 39 uint64_t pspsDetID; 40 40 #endif 41 41 } dvoDetection; … … 52 52 dvoConfig *dvoConfigRead(int *argc, char **argv); 53 53 54 // free 's memory associated with the dvoConfig structure54 // frees memory associated with the dvoConfig structure 55 55 void dvoConfigFree(dvoConfig *dvoConfig); 56 56 … … 70 70 SkyList *dvoSkyListByExternID(dvoConfig *dvoConfig, int sourceID, int externID, Image **ppImage); 71 71 72 // return a list of detect sions from a particular image id72 // return a list of detections from a particular image id 73 73 // Use dvoFree() to free the memory pointed to by results 74 int dvoGetDetections(SkyList *skylist, int imageID, dvoDetection **results, int *pMaxDetID);74 off_t dvoGetDetections(SkyList *skylist, int imageID, dvoDetection **results, int *pMaxDetID); 75 75 76 76 // free memory returned by various dvo util functions
Note:
See TracChangeset
for help on using the changeset viewer.
