Changeset 20375
- Timestamp:
- Oct 24, 2008, 3:01:24 PM (18 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 2 edited
-
share/dettool_stop_completed_correct_runs.sql (modified) (2 diffs)
-
src/dettoolConfig.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/dettool_stop_completed_correct_runs.sql
r19621 r20375 1 -- det1 is the 'correction' detRun, det2 is the 'parent' detRun 1 2 UPDATE detRun 2 3 SET state = 'stop' … … 8 9 FROM detRun AS det1 9 10 INNER JOIN detRun as det2 10 ON det1.ref_det_ run= det2.det_id11 ON det1.ref_det_id = det2.det_id 11 12 -- do we need to restrict by iteration? not clear this logic below is right or tested 12 13 JOIN detNormalizedImfile as imfile -
trunk/ippTools/src/dettoolConfig.c
r19813 r20375 172 172 // -makecorrection 173 173 psMetadata *makecorrectionArgs = psMetadataAlloc(); 174 psMetadataAddStr(makecorrectionArgs, PS_LIST_TAIL, "-det_type", 0, "set detrend type of corrected detRun", NULL); 174 175 psMetadataAddS64(makecorrectionArgs, PS_LIST_TAIL, "-det_id", 0, "detRun det_id to be corrected (required)", 0); 175 176 psMetadataAddS32(makecorrectionArgs, PS_LIST_TAIL, "-iteration", 0, "detRun iteration to be corrected (required)", -1);; 176 177 psMetadataAddBool(makecorrectionArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false); 178 179 psMetadataAddStr(makecorrectionArgs, PS_LIST_TAIL, "-workdir", 0, "set workdir", NULL); 180 psMetadataAddStr(makecorrectionArgs, PS_LIST_TAIL, "-reduction", 0, "set reduction", NULL); 181 psMetadataAddStr(makecorrectionArgs, PS_LIST_TAIL, "-label", 0, "set label", NULL); 177 182 178 183 // -tocorrectexp … … 184 189 psMetadata *tocorrectimfileArgs = psMetadataAlloc(); 185 190 psMetadataAddS64(tocorrectimfileArgs, PS_LIST_TAIL, "-det_id", 0, "search for detrend ID", 0); 191 psMetadataAddStr(tocorrectimfileArgs, PS_LIST_TAIL, "-det_type", 0, "search by type of corrected detRun", NULL); 186 192 psMetadataAddU64(tocorrectimfileArgs, PS_LIST_TAIL, "-limit", 0, "limit result set to N items", 0); 187 193 psMetadataAddBool(tocorrectimfileArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false);
Note:
See TracChangeset
for help on using the changeset viewer.
