IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26020


Ignore:
Timestamp:
Nov 3, 2009, 2:31:57 PM (17 years ago)
Author:
Paul Price
Message:

Moving TEMP.DIR from ppStack recipe to site config.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/recipes/ppStack.config

    r25944 r26020  
    5959PSF.MODEL       STR     PS_MODEL_PS1_V1 # Model for PSF generation
    6060
    61 TEMP.DIR        STR     /local/ipp/tmp  # Directory for temporary images
    6261TEMP.IMAGE      STR     conv.im.fits    # Suffix for temporary convolved images
    6362TEMP.MASK       STR     conv.mk.fits    # Suffix for temporary convolved masks
  • trunk/ippconfig/site.config.in

    r24208 r26020  
    6666PSTAMP_DATA_STORE_ROOT STR PATH
    6767
     68TEMP.DIR        STR     /tmp    # Directory for temporary products
     69
     70
    6871# other basic values:
  • trunk/ppStack/src/ppStackSetup.c

    r23688 r26020  
    4747
    4848    // Generate temporary names for convolved images
    49     const char *tempDir = psMetadataLookupStr(NULL, recipe, "TEMP.DIR"); // Directory for temporary images
     49    const char *tempDir = psMetadataLookupStr(NULL, config->site, "TEMP.DIR"); // Directory for temp images
    5050    if (!tempDir) {
    51         psError(PS_ERR_BAD_PARAMETER_VALUE, false, "Unable to find TEMP.DIR in recipe");
     51        psError(PS_ERR_BAD_PARAMETER_VALUE, false, "Unable to find TEMP.DIR in site configuration");
    5252        return false;
    5353    }
Note: See TracChangeset for help on using the changeset viewer.