IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11321


Ignore:
Timestamp:
Jan 26, 2007, 12:39:44 PM (19 years ago)
Author:
Paul Price
Message:

All scripts should take workdir, even if they don't use it.

Location:
trunk/ippScripts/scripts
Files:
3 edited

Legend:

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

    r11316 r11321  
    2828    $iter,                      # Iteration
    2929    $detType,                   # Detrend type
     30    $workdir,                   # Working directory for output files
    3031    $dbname,                    # Database name
    3132    $no_update                  # Don't update the database?
     
    3536        'iteration|i=s' => \$iter,
    3637        'det_type|t=s'  => \$detType,
    37         'dbname|d=s'    => \$dbname,# Database name
     38        'workdir|w=s'   => \$workdir,
     39        'dbname|d=s'    => \$dbname,# Database name
    3840        'no-update'     => \$no_update
    3941        ) or pod2usage( 2 );
  • trunk/ippScripts/scripts/detrend_reject_exp.pl

    r11319 r11321  
    2626use Pod::Usage qw( pod2usage );
    2727
    28 my ($det_id, $iter, $det_type, $camera, $filter, $dbname, $no_update);
     28my ($det_id, $iter, $det_type, $camera, $filter, $workdir, $dbname, $no_update);
    2929GetOptions(
    3030           'det_id|d=s'        => \$det_id,
     
    3333           'camera=s'          => \$camera,
    3434           'filter=s'          => \$filter,
     35           'workdir|w=s'       => \$workdir, # Working directory for output files
    3536           'dbname|d=s'        => \$dbname, # Database name
    3637           'no-update'         => \$no_update
  • trunk/ippScripts/scripts/phase0_exp.pl

    r11319 r11321  
    2525    );
    2626
    27 my ($cache, $exptag, $dbname, $no_update);
     27my ($cache, $exptag, $workdir, $dbname, $no_update);
    2828
    2929GetOptions(
    3030    'caches'        => \$cache,
    3131    'exp_tag|e=s'   => \$exptag,
    32     'dbname|d=s'    => \$dbname,# Database name   
     32    'workdir|w=s'   => \$workdir, # Working directory for output files
     33    'dbname|d=s'    => \$dbname, # Database name   
    3334    'no-update'     => \$no_update
    3435) or pod2usage( 2 );
Note: See TracChangeset for help on using the changeset viewer.