IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 19396


Ignore:
Timestamp:
Sep 5, 2008, 12:39:05 PM (18 years ago)
Author:
bills
Message:

Get name of configuration dump file from filerule pass on command line.
without -dumpconfig option the configuration will not be output

Location:
trunk/ippScripts/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/diff_skycell.pl

    r19303 r19396  
    176176my $outputMask = $ipprc->filename("PPSUB.OUTPUT.MASK", $outroot);
    177177my $outputWeight = $ipprc->filename("PPSUB.OUTPUT.WEIGHT", $outroot);
     178my $configuration = $ipprc->filename("PPSUB.CONFIG", $outroot);
    178179my $outputSources = $ipprc->filename("PSPHOT.OUT.CMF.MEF", $outroot);
    179180#my $bin1Name =  $ipprc->filename("PPSUB.BIN1", $outroot);
     
    196197    $command .= " -photometry";
    197198    $command .= " -tracedest $traceDest -log $logDest";
     199    $command .= " -dumpconfig $configuration";
    198200    $command .= " -dbname $dbname" if defined $dbname;
    199201
  • trunk/ippScripts/scripts/stack_skycell.pl

    r19352 r19396  
    167167my $traceDest = $ipprc->filename("TRACE.EXP", $outroot);
    168168my $logDest = $ipprc->filename("LOG.EXP", $outroot);
     169my $configuration = $ipprc->filename("PPSTACK.CONFIG", $outroot);
    169170
    170171# Perform stacking
     
    181182    $command .= " -debug-stack" if defined $debug;
    182183    $command .= " -tracedest $traceDest -log $logDest";
     184    $command .= " -dumpconfig $configuration";
    183185    $command .= " -dbname $dbname" if defined $dbname;
    184186
  • trunk/ippScripts/scripts/warp_skycell.pl

    r19326 r19396  
    125125my $outputStats = $ipprc->filename("SKYCELL.STATS", $outroot, $skycell_id );
    126126my $traceDest = $ipprc->filename("TRACE.EXP", $outroot, $skycell_id);
     127my $configuration =  $ipprc->filename("PSWARP.CONFIG", $outroot, $skycell_id);
    127128
    128129my $skyFile = $ipprc->filename("SKYCELL.TEMPLATE", $outroot, $skycell_id );
     
    184185    $command .= " -tracedest $traceDest -log $logDest";
    185186    $command .= " -threads $threads" if defined $threads;
     187    $command .= " -dumpconfig $configuration";
    186188    $command .= " -dbname $dbname" if defined $dbname;
    187189
Note: See TracChangeset for help on using the changeset viewer.