IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 9, 2007, 3:17:14 PM (19 years ago)
Author:
jhoblitt
Message:
  • fix inhere. workdir rawExp to chipRun
  • add option to supply workdir to addprocessedexp
  • add 'reduction' to newExp and rawExp
  • add inherit reduction from newexp -> rawExp and rawExp -> chipRun
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxinject.c

    r14037 r14091  
    115115    if (!workdir) {
    116116        psError(PS_ERR_UNKNOWN, true, "-workdir is required");
     117        return false;
     118    }
     119
     120    psString reduction = psMetadataLookupStr(&status, config->args, "-reduction");
     121    if (!status) {
     122        psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -reduction");
     123        return false;
     124    }
     125    if (!reduction) {
     126        psError(PS_ERR_UNKNOWN, true, "-reduction is required");
    117127        return false;
    118128    }
     
    125135                "reg", // state
    126136                workdir,
    127                 "dirty"
     137                "dirty",
     138                reduction
    128139            )
    129140        ) {
Note: See TracChangeset for help on using the changeset viewer.