Changeset 6105 for trunk/ippTools/src/p2searchPendingFrames.c
- Timestamp:
- Jan 20, 2006, 4:56:11 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/p2searchPendingFrames.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/p2searchPendingFrames.c
r6063 r6105 16 16 17 17 // in order to include these restrictions, we need to define these table columns 18 if (config->camera != NULL) { 19 psMetadataAddStr (where, PS_LIST_TAIL, "CAMERA", 0, "==", config->camera_name); 18 if (config->camera_name != NULL) { 19 psMetadataAddStr (where, PS_LIST_TAIL, "camera", 0, "==", 20 config->camera_name); 20 21 } 21 22 if (config->filter != NULL) { 22 psMetadataAddStr (where, PS_LIST_TAIL, "FILTER", 0, "==", config->filter); 23 psMetadataAddStr (where, PS_LIST_TAIL, "FILTER", 0, "==", 24 config->filter); 23 25 } 26 /* 24 27 if (!psTimeIsZero(config->start) && !psTimeIsZero(config->stop)) { 25 28 psMetadataAddTime (where, PS_LIST_TAIL, "TIME_START", 0, "<", config->stop); 26 29 psMetadataAddTime (where, PS_LIST_TAIL, "TIME_STOP", 0, ">", config->start); 27 30 } 31 */ 28 32 29 33 psArray *exposures = p2PendingExpSelectRowObjects (config->database, where, MAX_ROWS);
Note:
See TracChangeset
for help on using the changeset viewer.
