IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 18, 2007, 6:26:04 PM (19 years ago)
Author:
Paul Price
Message:

Trying to make detrend type non-case sensitive.

File:
1 edited

Legend:

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

    r10742 r11151  
    5050    };
    5151
    52 die "Unrecognised detrend type: $det_type\n" if not defined RECIPES()->{$det_type};
    53 my $recipe = RECIPES()->{$det_type}; # Recipe to use in stacking
     52my $recipe = RECIPES()->{lc($det_type)}; # Recipe to use in stacking
     53die "Unrecognised detrend type: $det_type\n" if not defined $recipe;
    5454
    5555# Look for programs we need
Note: See TracChangeset for help on using the changeset viewer.