IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 30765


Ignore:
Timestamp:
Mar 1, 2011, 9:51:37 AM (15 years ago)
Author:
eugene
Message:

add reduction options for PPSUB and PPSTACK

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20110213/ippScripts/scripts/staticsky.pl

    r29063 r30765  
    149149$reduction = 'DEFAULT' unless defined $reduction;
    150150my $recipe_psphot  = $ipprc->reduction($reduction, 'STACKPHOT'); # Recipe to use for psphot
     151my $recipe_ppsub   = $ipprc->reduction($reduction, 'STACKPHOT'); # Recipe to use for ppsub
     152my $recipe_ppstack = $ipprc->reduction($reduction, 'STACKPHOT'); # Recipe to use for ppstack
    151153unless ($recipe_psphot) {
    152154    &my_die("Couldn't find selected reduction for STACKPHOT: $reduction\n", $sky_id, $PS_EXIT_CONFIG_ERROR);
    153155}
    154156
    155 print "reduction:     $reduction\n";
    156 print "recipe_psphot: $recipe_psphot\n";
     157print "reduction:      $reduction\n";
     158print "recipe_psphot:  $recipe_psphot\n";
     159print "recipe_ppsub:   $recipe_ppsub\n";
     160print "recipe_ppstack: $recipe_ppstack\n";
    157161
    158162# my $cmdflags;
     
    163167    $command .= " -input $listName";
    164168    $command .= " -threads $threads" if defined $threads;
    165     $command .= " -recipe PSPHOT $recipe_psphot";
     169    $command .= " -recipe PSPHOT  $recipe_psphot";
     170    $command .= " -recipe PPSUB   $recipe_ppsub";
     171    $command .= " -recipe PPSTACK $recipe_ppstack";
    166172    $command .= " -dumpconfig $configuration";
    167173    $command .= " -tracedest $traceDest -log $logDest";
Note: See TracChangeset for help on using the changeset viewer.