Changeset 18578
- Timestamp:
- Jul 16, 2008, 9:30:35 AM (18 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 2 edited
-
stacktool.c (modified) (3 diffs)
-
stacktoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/stacktool.c
r18574 r18578 272 272 273 273 // create a new stackRun for this stack 274 stackRunRow *run = stackRunRowAlloc(0, "run", workdir, NULL, registered, skycell_id, tess_id );274 stackRunRow *run = stackRunRowAlloc(0, "run", workdir, NULL, registered, skycell_id, tess_id, filter); 275 275 if (!stackRunInsertObject(config->dbh, run)) { 276 276 if (!psDBRollback(config->dbh)) { … … 343 343 PXOPT_LOOKUP_STR(skycell_id, config->args, "-skycell_id", true, false); 344 344 PXOPT_LOOKUP_STR(tess_id, config->args, "-tess_id", true, false); 345 PXOPT_LOOKUP_STR(filter, config->args, "-filter", true, false); 345 346 346 347 // default … … 356 357 } 357 358 358 stackRunRow *run = stackRunRowAlloc( 359 0, // ID 360 "run", // state 361 workdir, 362 NULL, // dvodb 363 registered, 364 skycell_id, 365 tess_id 366 ); 359 stackRunRow *run = stackRunRowAlloc(0, "run", workdir, NULL, registered, skycell_id, tess_id, filter); 367 360 if (!run) { 368 361 psError(PS_ERR_UNKNOWN, false, "failed to alloc stackRun object"); -
trunk/ippTools/src/stacktoolConfig.c
r18574 r18578 82 82 psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-skycell_id", 0, "define skycell ID (required)", NULL); 83 83 psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-tess_id", 0, "define tessellation ID (required)", NULL); 84 psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-filter", 0, "define filter (required)", NULL); 84 85 psMetadataAddS64(definerunArgs, PS_LIST_TAIL, "-warp_id", PS_META_DUPLICATE_OK, "include this warp ID (multiple OK, required)", 0); 85 86 psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false);
Note:
See TracChangeset
for help on using the changeset viewer.
