IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2008, 9:52:57 AM (18 years ago)
Author:
Paul Price
Message:

Adding outroot instead of workdir for chip and camera; adding verbose flags.

File:
1 edited

Legend:

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

    r16323 r16336  
    2626
    2727my ($dbname,                    # Database name to use
     28    $verbose,                   # Verbose operations?
    2829    $no_op,                     # No operations?
    2930    $no_update,                 # No updating?
    3031    );
    3132GetOptions(
    32            'dbname|d=s' => \$dbname,
     33           'dbname=s' => \$dbname,
     34           'verbose' => \$verbose,
    3335           'no-op' => \$no_op,
    3436           'no-update' => \$no_update,
     
    7779       
    7880        my $command = "$warp_overlap --warp_id $warp_id --camera $camera --tess_id $tess_id --dbname $dbname";
     81        $command .= " --verbose" if defined $verbose;
    7982        $command .= " --no-op" if defined $no_op;
    8083        $command .= " --no-update" if defined $no_update;
     
    106109       
    107110        my $command = "$warp_skycell --warp_id $warp_id --skycell_id $skycell_id --tess_id $tess_id --camera $camera --dbname $dbname";
     111        $command .= " --verbose" if defined $verbose;
    108112        $command .= " --no-op" if defined $no_op;
    109113        $command .= " --no-update" if defined $no_update;
Note: See TracChangeset for help on using the changeset viewer.