Changeset 16083
- Timestamp:
- Jan 15, 2008, 11:41:05 AM (18 years ago)
- Location:
- branches/end_stage
- Files:
-
- 6 edited
-
dbconfig/tasks.md (modified) (3 diffs)
-
ippTools/share/regtool_pendingexp.sql (modified) (1 diff)
-
ippTools/src/pxinject.c (modified) (2 diffs)
-
ippTools/src/pxinjectConfig.c (modified) (1 diff)
-
ippTools/src/pztool.c (modified) (1 diff)
-
ippTools/src/regtool.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/end_stage/dbconfig/tasks.md
r15775 r16083 1 # $Id: tasks.md,v 1.143 2007-12-08 03:17:56 eugeneExp $1 # $Id: tasks.md,v 1.143.2.1 2008-01-15 21:41:05 jhoblitt Exp $ 2 2 3 3 # this table records all exposure ID ever seen from the summit … … 95 95 workdir_state STR 64 # key 96 96 reduction STR 64 # Reduction class 97 dvodb STR 255 98 tess_id STR 64 99 end_stage STR 64 # Key 97 100 END 98 101 … … 117 120 workdir STR 255 # destination for output files 118 121 reduction STR 64 # Reduction class 122 dvodb STR 255 123 tess_id STR 64 124 end_stage STR 64 # Key 119 125 filter STR 64 120 126 comment STR 80 -
branches/end_stage/ippTools/share/regtool_pendingexp.sql
r15763 r16083 8 8 workdir, 9 9 workdir_state, 10 reduction 10 reduction, 11 dvodb, 12 tess_id, 13 end_stage 11 14 FROM 12 15 (SELECT -
branches/end_stage/ippTools/src/pxinject.c
r14132 r16083 121 121 if (!status) { 122 122 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -reduction"); 123 return false; 124 } 125 126 psString dvodb = psMetadataLookupStr(&status, config->args, "-dvodb"); 127 if (!status) { 128 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -dvodb"); 129 return false; 130 } 131 132 psString tess_id = psMetadataLookupStr(&status, config->args, "-tess_id"); 133 if (!status) { 134 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -tess_id"); 135 return false; 136 } 137 138 psString end_stage = psMetadataLookupStr(&status, config->args, "-end_stage"); 139 if (!status) { 140 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -end_stage"); 123 141 return false; 124 142 } … … 132 150 workdir, 133 151 "dirty", 134 reduction 152 reduction, 153 dvodb, 154 tess_id, 155 end_stage 135 156 ) 136 157 ) { -
branches/end_stage/ippTools/src/pxinjectConfig.c
r14132 r16083 55 55 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-reduction", 0, 56 56 "define reduction class", NULL); 57 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-dvodb", 0, 58 "define the dvodb for the next processing step", NULL); 59 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-tess_id", 0, 60 "define the tess_id for the next processing step", NULL); 61 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-end_stage", 0, 62 "define the end goal processing step", NULL); 57 63 psMetadataAddBool(newExpArgs, PS_LIST_TAIL, "-simple", 0, 58 64 "use the simple output format", false); -
branches/end_stage/ippTools/src/pztool.c
r15293 r16083 615 615 NULL, // workdir 616 616 "dirty", // workdir state 617 NULL // reduction class 617 NULL, // reduction class 618 NULL, // dvodb 619 NULL, // tess_id 620 NULL // end_stage 618 621 ) 619 622 ) { -
branches/end_stage/ippTools/src/regtool.c
r16051 r16083 846 846 return false; 847 847 } 848 848 849 psString exp_name = psMetadataLookupStr(&status, config->args, "-exp_name"); 849 850 if (!status) { … … 1236 1237 psFree(output); 1237 1238 1238 if (!rawExpInsert( 1239 config->dbh, 1239 if (!rawExpInsert(config->dbh, 1240 1240 (psS64)atoll(exp_id), 1241 1241 exp_name, … … 1248 1248 workdir ? workdir : newExp->workdir, 1249 1249 reduction ? reduction : newExp->reduction, 1250 dvodb ? dvodb : newExp->dvodb, 1251 tess_id ? tess_id : newExp->tess_id, 1252 end_stage ? end_stage : newExp->end_stage, 1250 1253 filter, 1251 1254 comment,
Note:
See TracChangeset
for help on using the changeset viewer.
