IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24465


Ignore:
Timestamp:
Jun 17, 2009, 1:38:45 PM (17 years ago)
Author:
eugene
Message:

invoking the PSASTRO recipe classes

File:
1 edited

Legend:

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

    r23739 r24465  
    9494
    9595my $recipe_addstar = $ipprc->reduction($reduction, 'ADDSTAR'); # Recipe to use
    96 &my_die("Unrecognised ADDSTAR recipe", $cam_id, $PS_EXIT_CONFIG_ERROR) unless defined $recipe1;
     96&my_die("Unrecognised ADDSTAR recipe", $cam_id, $PS_EXIT_CONFIG_ERROR) unless defined $recipe_addstar;
     97
     98my $recipe_psastro = $ipprc->reduction($reduction, 'PSASTRO'); # Recipe to use
     99&my_die("Unrecognised PSASTRO recipe", $cam_id, $PS_EXIT_CONFIG_ERROR) unless defined $recipe_psastro;
    97100
    98101my $mdcParser = PS::IPP::Metadata::Config->new; # Parser for metadata config files
     
    242245        # run psastro on the chipObjects, producing fpaObjects
    243246        my $command;
    244         $command  = "$psastro -list $list3Name -masklist $list4Name $outroot";
     247        $command  = "$psastro";
     248        $command .= " -list $list3Name";
     249        $command .= " -masklist $list4Name";
     250        $command .= " $outroot";
     251        $command .= " -recipe PSASTRO $recipe_psastro";
    245252        $command .= " -tracedest $traceDest -log $logDest";
    246253        $command .= " -dbname $dbname" if defined $dbname;
Note: See TracChangeset for help on using the changeset viewer.