Changeset 16509
- Timestamp:
- Feb 15, 2008, 9:54:44 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
dbconfig/tasks.md (modified) (2 diffs)
-
ippTools/src/pxinject.c (modified) (2 diffs)
-
ippTools/src/pxinjectConfig.c (modified) (1 diff)
-
ippTools/src/pztool.c (modified) (2 diffs)
-
ippTools/src/pztoolConfig.c (modified) (1 diff)
-
ippTools/src/regtool.c (modified) (3 diffs)
-
ippTools/src/regtoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dbconfig/tasks.md
r16335 r16509 1 # $Id: tasks.md,v 1.14 6 2008-02-06 04:45:00 jhoblittExp $1 # $Id: tasks.md,v 1.147 2008-02-15 19:54:44 eugene Exp $ 2 2 3 3 # this table records all exposure ID ever seen from the summit … … 99 99 tess_id STR 64 100 100 end_stage STR 64 # Key 101 label STR 64 # Key 101 102 END 102 103 -
trunk/ippTools/src/pxinject.c
r16170 r16509 87 87 PXOPT_LOOKUP_STR(tess_id, config->args, "-tess_id", false, false); 88 88 PXOPT_LOOKUP_STR(end_stage, config->args, "-end_stage", false, false); 89 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 89 90 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); 90 91 … … 100 101 dvodb, 101 102 tess_id, 102 end_stage 103 end_stage, 104 label 103 105 ) 104 106 ) { -
trunk/ippTools/src/pxinjectConfig.c
r16170 r16509 61 61 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-end_stage", 0, 62 62 "define the end goal processing step", NULL); 63 psMetadataAddStr(newExpArgs, PS_LIST_TAIL, "-label", 0, 64 "define a label (carried to chip stage)", NULL); 63 65 psMetadataAddBool(newExpArgs, PS_LIST_TAIL, "-simple", 0, 64 66 "use the simple output format", false); -
trunk/ippTools/src/pztool.c
r16380 r16509 465 465 PXOPT_LOOKUP_STR(tess_id, config->args, "-tess_id", false, false); 466 466 PXOPT_LOOKUP_STR(end_stage, config->args, "-end_stage", false, false); 467 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 467 468 468 469 // find all exposures that have had all of their imfiles downloaded but do … … 516 517 dvodb, // dvodb 517 518 tess_id, // tess_id 518 end_stage // end_stage 519 end_stage, // end_stage 520 label 519 521 ) 520 522 ) { -
trunk/ippTools/src/pztoolConfig.c
r16362 r16509 122 122 psMetadataAddStr(copydoneArgs, PS_LIST_TAIL, "-end_stage", 0, 123 123 "define the end goal processing step", NULL); 124 psMetadataAddStr(copydoneArgs, PS_LIST_TAIL, "-label", 0, 125 "define the label for the chip stage", NULL); 124 126 psMetadataAddS16(copydoneArgs, PS_LIST_TAIL, "-code", 0, 125 127 "set fault code", 0); -
trunk/ippTools/src/regtool.c
r16200 r16509 543 543 PXOPT_LOOKUP_F64(user_5, config->args, "-user_5", false, false); 544 544 PXOPT_LOOKUP_STR(object, config->args, "-object", false, false); 545 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 545 546 PXOPT_LOOKUP_TIME(dateobs, config->args, "-dateobs", false, false); 546 547 … … 623 624 // carry through these values 624 625 // new CLI options overwrite existing values 625 workdir = workdir ? workdir: newExp->workdir;626 workdir = workdir ? workdir : newExp->workdir; 626 627 reduction = reduction ? reduction : newExp->reduction; 627 dvodb = dvodb ? dvodb: newExp->dvodb;628 tess_id = tess_id ? tess_id: newExp->tess_id;628 dvodb = dvodb ? dvodb : newExp->dvodb; 629 tess_id = tess_id ? tess_id : newExp->tess_id; 629 630 end_stage = end_stage ? end_stage : newExp->end_stage; 631 label = label ? label : newExp->label; 630 632 // don't free newExp until just before we return, or these refs will break 631 633 … … 728 730 (psS64)atoll(exp_id), 729 731 workdir, 730 NULL, // label 732 label, 731 733 reduction, 732 734 NULL, // expgroup -
trunk/ippTools/src/regtoolConfig.c
r16170 r16509 325 325 "define exposure object", NULL); 326 326 psMetadataAddStr(addprocessedexpArgs, PS_LIST_TAIL, "-label", 0, 327 "define label for phase 2 processing(non-detrend data only)", NULL);327 "define label for chip stage (non-detrend data only)", NULL); 328 328 psMetadataAddS16(addprocessedexpArgs, PS_LIST_TAIL, "-code", 0, 329 329 "set fault code", 0);
Note:
See TracChangeset
for help on using the changeset viewer.
