Changeset 13712 for trunk/ippScripts/scripts/diff_skycell.pl
- Timestamp:
- Jun 7, 2007, 4:05:41 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/diff_skycell.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/diff_skycell.pl
r13698 r13712 80 80 81 81 # Identify the input and the template 82 my $input, $inputMask; # Input file and mask83 my $template, $templateMask; # Template file and mask82 my ($input, $inputPath); # Input file and path 83 my ($template, $templatePath); # Template file and path 84 84 my $tess_id; # Tesselation identifier 85 85 my $skycell_id; # Skycell identifier … … 88 88 if (defined $file->{template} and $file->{template}) { 89 89 $template = $file->{uri}; 90 $template Mask = $ipprc->filename("PSWARP.OUTPUT.MASK", $file->{path_base});90 $templatePath = $file->{path_base}; 91 91 } else { 92 92 $input = $file->{uri}; 93 $input Mask = $ipprc->filename("PSWARP.OUTPUT.MASK", $file->{path_base});93 $inputPath = $file->{path_base}; 94 94 } 95 95 if (defined $tess_id) { … … 117 117 $ipprc->define_camera($camera); 118 118 119 my $templateMask = $ipprc->filename("PSWARP.OUTPUT.MASK", $templatePath); 120 my $inputMask = $ipprc->filename("PSWARP.OUTPUT.MASK", $inputPath); 121 119 122 &my_die("Couldn't find input: $template", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($template); 120 123 &my_die("Couldn't find input: $templateMask", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($templateMask); 121 &my_die("Couldn't find input: $ nput", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($input);122 &my_die("Couldn't find input: $ nputMask", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($inputMask);124 &my_die("Couldn't find input: $input", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($input); 125 &my_die("Couldn't find input: $inputMask", $diff_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($inputMask); 123 126 124 127 # Get the output filenames
Note:
See TracChangeset
for help on using the changeset viewer.
