Changeset 17600
- Timestamp:
- May 9, 2008, 8:51:07 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/warptool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/warptool.c
r17226 r17600 1021 1021 // convert warp_id into a psS64 1022 1022 if (warp_id) { 1023 if (!psMetadataAddS64(where, PS_LIST_TAIL, "warp _id", 0, "==", (psS64)atoll(warp_id))) {1023 if (!psMetadataAddS64(where, PS_LIST_TAIL, "warpRun.warp_id", 0, "==", (psS64)atoll(warp_id))) { 1024 1024 psError(PS_ERR_UNKNOWN, false, "failed to add item warp_id"); 1025 1025 psFree(where); … … 1033 1033 // convert cam_id into a psS64 1034 1034 if (cam_id) { 1035 if (!psMetadataAddS64(where, PS_LIST_TAIL, "cam _id", 0, "==", (psS64)atoll(cam_id))) {1035 if (!psMetadataAddS64(where, PS_LIST_TAIL, "camRun.cam_id", 0, "==", (psS64)atoll(cam_id))) { 1036 1036 psError(PS_ERR_UNKNOWN, false, "failed to add item cam_id"); 1037 1037 psFree(where); … … 1042 1042 // convert chip_id into a psS64 1043 1043 if (chip_id) { 1044 if (!psMetadataAddS64(where, PS_LIST_TAIL, "chip _id", 0, "==", (psS64)atoll(chip_id))) {1044 if (!psMetadataAddS64(where, PS_LIST_TAIL, "chipRun.chip_id", 0, "==", (psS64)atoll(chip_id))) { 1045 1045 psError(PS_ERR_UNKNOWN, false, "failed to add item chip_id"); 1046 1046 psFree(where); … … 1051 1051 // convert exp_id into a psS64 1052 1052 if (exp_id) { 1053 if (!psMetadataAddS64(where, PS_LIST_TAIL, " exp_id", 0, "==", (psS64)atoll(exp_id))) {1053 if (!psMetadataAddS64(where, PS_LIST_TAIL, "rawExp.exp_id", 0, "==", (psS64)atoll(exp_id))) { 1054 1054 psError(PS_ERR_UNKNOWN, false, "failed to add item exp_id"); 1055 1055 psFree(where); … … 1058 1058 } 1059 1059 1060 // XXX These may need to be updated with the table name? 1060 1061 PXOPT_COPY_STR(config->args, where, "-exp_name", "exp_name", "=="); 1061 1062 PXOPT_COPY_STR(config->args, where, "-inst", "camera", "==");
Note:
See TracChangeset
for help on using the changeset viewer.
