IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 27, 2006, 9:35:47 AM (20 years ago)
Author:
Paul Price
Message:

Changing name conventions to match those in doc/ippTools/filenames.txt

File:
1 edited

Legend:

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

    r8998 r9004  
    1616# Parse command-line arguments
    1717my ($detId,                     # Detrend id
    18     $iter,                      # Iteration
    19     $camera,                    # Camera name
    20     $detType                    # Detrend type
     18    $iter                       # Iteration
    2119    );
    2220GetOptions(
    2321        'det_id|d=s'    => \$detId,
    2422        'iteration|i=s' => \$iter,
    25         'camera|c=s'    => \$camera,
    26         'det_type|t=s'  => \$detType
    2723        ) or pod2usage( 2 );
    2824
     
    3127           -exitval => 3,
    3228           ) unless defined $detId
    33     and defined $iter
    34     and defined $camera
    35     and defined $detType;
     29    and defined $iter;
    3630
    3731
     
    5650   
    5751    # Parse the output
    58     my $metadata = $mdcParser->parse(join "", @$stdout)
     52    my $metadata = $mdcParser->parse($stdout)
    5953        or die "unable to parse metadata config doc";
    6054    $files = parse_md_list($metadata);
     
    9185
    9286    # Parse the output
    93     $norms = $mdcParser->parse(join "", @$stdout)
     87    $norms = $mdcParser->parse($stdout)
    9488        or die "unable to parse metadata config doc";
    9589}
Note: See TracChangeset for help on using the changeset viewer.