- Timestamp:
- Jul 17, 2014, 12:36:19 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-ops-20130712
- Files:
-
- 22 edited
- 12 copied
-
. (modified) (1 prop)
-
ippScripts/scripts/background_chip.pl (modified) (3 diffs)
-
ippScripts/scripts/chip_imfile.pl (modified) (1 prop)
-
ippScripts/scripts/destreak_restore_camera.pl (modified) (1 prop)
-
ippScripts/scripts/dist_advancerun.pl (modified) (5 diffs, 1 prop)
-
ippScripts/scripts/dist_bundle.pl (modified) (4 diffs, 1 prop)
-
ippScripts/scripts/dist_defineruns.pl (modified) (5 diffs)
-
ippScripts/scripts/dist_make_fileset.pl (modified) (1 diff)
-
ippScripts/scripts/ipp_apply_burntool_single.pl (modified) (1 diff, 1 prop)
-
ippScripts/scripts/lap_science.pl (modified) (1 prop)
-
ippScripts/scripts/magic_destreak.pl (modified) (1 prop)
-
ippScripts/scripts/nightly_science.pl (modified) (1 prop)
-
ippScripts/scripts/psphot_fullforce_summary.pl (copied) (copied from trunk/ippScripts/scripts/psphot_fullforce_summary.pl )
-
ippScripts/scripts/psphot_fullforce_warp.pl (copied) (copied from trunk/ippScripts/scripts/psphot_fullforce_warp.pl )
-
ippScripts/scripts/publish_file.pl (modified) (1 prop)
-
ippScripts/scripts/queuestaticsky.pl (modified) (2 diffs, 1 prop)
-
ippScripts/scripts/rawcheck.pl (modified) (1 prop)
-
ippScripts/scripts/receive_advance.pl (modified) (3 diffs)
-
ippScripts/scripts/receive_file.pl (modified) (2 diffs)
-
ippScripts/scripts/register_imfile.pl (modified) (1 prop)
-
ippScripts/scripts/sc_mk_stack_mdc.pl (copied) (copied from trunk/ippScripts/scripts/sc_mk_stack_mdc.pl )
-
ippScripts/scripts/sc_prepare_camera.pl (copied) (copied from trunk/ippScripts/scripts/sc_prepare_camera.pl )
-
ippScripts/scripts/sc_prepare_chip.pl (copied) (copied from trunk/ippScripts/scripts/sc_prepare_chip.pl )
-
ippScripts/scripts/sc_prepare_stack.pl (copied) (copied from trunk/ippScripts/scripts/sc_prepare_stack.pl )
-
ippScripts/scripts/sc_prepare_warp.pl (copied) (copied from trunk/ippScripts/scripts/sc_prepare_warp.pl )
-
ippScripts/scripts/sc_remote_exec.pl (copied) (copied from trunk/ippScripts/scripts/sc_remote_exec.pl )
-
ippScripts/scripts/sc_transfer_tool.pl (copied) (copied from trunk/ippScripts/scripts/sc_transfer_tool.pl )
-
ippScripts/scripts/sc_validate_files.pl (copied) (copied from trunk/ippScripts/scripts/sc_validate_files.pl )
-
ippScripts/scripts/sc_validate_processing.pl (copied) (copied from trunk/ippScripts/scripts/sc_validate_processing.pl )
-
ippScripts/scripts/skycell_jpeg.pl (modified) (1 prop)
-
ippScripts/scripts/stack_bkg_mk_mdc.pl (copied) (copied from trunk/ippScripts/scripts/stack_bkg_mk_mdc.pl )
-
ippScripts/scripts/stack_skycell.pl (modified) (4 diffs, 1 prop)
-
ippScripts/scripts/staticsky.pl (modified) (4 diffs)
-
ippScripts/scripts/warp_skycell.pl (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-ops-20130712
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/background_chip.pl
r35681 r37068 34 34 my $ppConfigDump = can_run('ppConfigDump') or (warn "Can't find ppConfigDump" and $missing_tools = 1); 35 35 my $ppStatsFromMetadata = can_run('ppStatsFromMetadata') or (warn "Can't find ppStatsFromMetadata" and $missing_tools = 1); 36 my $ppImage = can_run('ppImage') or (warn "Can't find ppImage" and $missing_tools = 1); 36 37 if ($missing_tools) { 37 38 warn("Can't find required tools."); … … 134 135 } 135 136 my $in_wt = $ipprc->filename("PPIMAGE.CHIP.VARIANCE", $in_path, $class_id); 136 my $in_bg = $ipprc->filename("PSPHOT.BACKMDL", $in_path, $class_id); 137 my $in_bg; 138 if (1) { 139 $in_bg = $ipprc->filename("PPIMAGE.BACKMDL", $cam_path_base, $class_id); 140 } 141 else { 142 $in_bg = $ipprc->filename("PSPHOT.BACKMDL", $in_path, $class_id); 143 } 137 144 my $in_pattern = $ipprc->filename("PPIMAGE.PATTERN", $in_path, $class_id); 138 145 my $in_config = $ipprc->filename("PPIMAGE.CONFIG", $in_path, $class_id); … … 220 227 } 221 228 229 my $do_binned_images = 1; # Generate the binned images that are useful for making JPEGs 230 if ($do_binned_images) { 231 my $command = "$ppImage -file $out_image -mask $out_mask $outroot -recipe PPIMAGE PPIMAGE_PA -Db PHOTOM F"; 232 my ($success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 233 run(command => $command, verbose => $verbose); 234 unless ($success) { 235 $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR); 236 &my_die("Unable to perform ppImage: $error_code", $chip_bg_id, $class_id, $error_code); 237 } 238 } 239 240 222 241 if (!$quality and !$no_op) { 223 242 &my_die("Couldn't find expected output file: $out_image", $chip_bg_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($out_image); -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/chip_imfile.pl
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/destreak_restore_camera.pl
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/dist_advancerun.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/dist_advancerun.pl merged: 36555
r36667 r37068 69 69 my $stacktool = can_run('stacktool') or (warn "Can't find stacktool" and $missing_tools = 1); 70 70 my $bgtool = can_run('bgtool') or (warn "Can't find bgtool" and $missing_tools = 1); 71 my $fftool = can_run('fftool') or (warn "Can't find fftool" and $missing_tools = 1); 71 72 my $staticskytool = can_run('staticskytool') or (warn "Can't find staticskytool" and $missing_tools = 1); 72 73 if ($missing_tools) { … … 77 78 78 79 my $tool_cmd; 80 my $tool_cmd2; 79 81 my $list_mode; 80 82 my $component_key; … … 127 129 $list_mode = "-diffskyfile"; 128 130 $component_key = "skycell_id"; 131 } elsif ($stage eq "ff") { 132 $tool_cmd = "$fftool -ff_id"; 133 $list_mode = "-result"; 134 $component_key = "dist_component"; 135 $tool_cmd2 = "$fftool -summary -ff_id" 129 136 } else { 130 137 &my_die("Unexpected stage: $stage", $dist_id, $PS_EXIT_CONFIG_ERROR); … … 132 139 133 140 $tool_cmd .= " $stage_id"; 141 $tool_cmd2 .= " $stage_id" if $tool_cmd2; 134 142 135 143 my $exportarg = '-exportrun'; … … 215 223 my $components = parse_md_list($metadata) or 216 224 &my_die("Unable to parse metadata list", $dist_id, $PS_EXIT_UNKNOWN_ERROR); 225 226 if ($tool_cmd2) { 227 my $command = "$tool_cmd2"; 228 $command .= " -dbname $dbname" if defined $dbname; 229 230 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 231 run(command => $command, verbose => $verbose); 232 unless ($success) { 233 $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR); 234 &my_die("Unable to perform $command: $error_code", $dist_id, $error_code); 235 } 236 if (@$stdout_buf == 0) { 237 &my_die("Unable to perform $command: $error_code", $dist_id, $error_code); 238 } 239 my $metadata = $mdcParser->parse(join "", @$stdout_buf) or 240 &my_die("Unable to parse metadata config doc", $dist_id, $PS_EXIT_UNKNOWN_ERROR); 241 my $more_components = parse_md_list($metadata) or 242 &my_die("Unable to parse metadata list", $dist_id, $PS_EXIT_UNKNOWN_ERROR); 243 if (scalar @$more_components) { 244 push @$components, @$more_components; 245 } 246 } 217 247 218 248 open MANIFEST, ">$resolved" or - Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/dist_bundle.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/dist_bundle.pl merged: 36555
r36458 r37068 67 67 ); 68 68 my %empty_cleaned = (); 69 70 69 my %empty_cleaned = (); 71 70 72 71 # Look for programs we need … … 496 495 } elsif ($stage eq "stack") { 497 496 $type = $stack_cleaned{$rule}; 498 } elsif ($stage eq "sky" or $stage eq 'skycal' or $stage eq 'stack_summary' ) {497 } elsif ($stage eq "sky" or $stage eq 'skycal' or $stage eq 'stack_summary' or $stage eq 'ff') { 499 498 $type = $empty_cleaned{$rule}; 499 } elsif ($stage eq "skycal") { 500 $type = $skycal_cleaned{$rule}; 500 501 } else { 501 502 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); … … 588 589 # stack_summary stage does not use a config dump file. 589 590 return build_stack_summary_file_list($path_base, \@file_list); 591 } elsif ($stage eq "ff") { 592 if ($component eq 'summary') { 593 # full force summary does not use a config dump file. Cobble together a file list 594 return build_ff_summary_file_list($path_base, \@file_list); 595 } else { 596 $config_file_rule = "PSPHOT.SKY.CONFIG"; 597 } 590 598 } else { 591 599 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); … … 742 750 } 743 751 752 # psphotFullForceSummary does not produce a config dump file cobble together a file list 753 sub build_ff_summary_file_list { 754 my ($path_base, $file_list) = @_; 755 756 my %cmf ; 757 $cmf{file_rule} = "SOURCES"; 758 $cmf{name} = "$path_base.cmf"; 759 push @$file_list, \%cmf; 760 761 my %log; 762 $log{file_rule} = "LOG"; 763 $log{name} = "$path_base.log"; 764 push @$file_list, \%log; 765 766 return $file_list; 767 } 768 744 769 sub my_die 745 770 { - Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/dist_defineruns.pl
r32701 r37068 42 42 43 43 # Parse the command-line arguments 44 my ($stage, $stage_limit, $dist_root, $workdir, $no_magic );44 my ($stage, $stage_limit, $dist_root, $workdir, $no_magic, $rerun); 45 45 my ($dbname, $save_temps, $verbose, $no_update, $logfile); 46 46 my @labels; … … 51 51 'workdir=s' => \$workdir, # workdir 52 52 'stage_limit=s' => \$stage_limit,# maximum number of runs queued for each stage 53 'rerun' => \$rerun, # queue new runs even if one exists 53 54 # 'dist_root=s' => \$dist_root, # root of distribution work area 54 55 'no_magic' => \$no_magic, # queue runs without requiring magic (for testing only) … … 56 57 'verbose' => \$verbose, # Print stuff? 57 58 'no-update' => \$no_update, # Don't update the database 59 'pretend' => \$no_update, # Don't update the database 58 60 'save-temps' => \$save_temps, # Save temporary files? 59 61 'logfile=s' => \$logfile, … … 88 90 push @stages, $stage; 89 91 } else { 90 @stages = qw(chip chip_bg camera fake warp warp_bg diff stack SSdiff sky skysingle );92 @stages = qw(chip chip_bg camera fake warp warp_bg diff stack SSdiff sky skysingle ff); 91 93 } 92 94 … … 104 106 $command .= " -singlefilter" if $single; 105 107 $command .= " -no_magic" if $no_magic; 108 $command .= " -rerun" if $rerun; 106 109 $command .= " -pretend" if $no_update; 107 110 $command .= " -limit $stage_limit" if $stage_limit; -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/dist_make_fileset.pl
r35974 r37068 223 223 my $dbname = shift; 224 224 225 if (($stage eq 'stack') or ($stage eq 'diff') or ($stage eq 'SSdiff') or $stage eq 'sky' or $stage eq 'skycal' ) {225 if (($stage eq 'stack') or ($stage eq 'diff') or ($stage eq 'SSdiff') or $stage eq 'sky' or $stage eq 'skycal' or $stage eq "ff") { 226 226 return ""; 227 227 } -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/ipp_apply_burntool_single.pl
- Property svn:mergeinfo deleted
r37060 r37068 45 45 defined $dbname; 46 46 47 # XXX watch out for TC3 and GPC2 here: 47 48 unless (defined $camera) { 48 49 if ($this_uri =~ /ota/) { -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/lap_science.pl
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/magic_destreak.pl
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/nightly_science.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/publish_file.pl
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/queuestaticsky.pl
- Property svn:mergeinfo set to
r36778 r37068 35 35 }; 36 36 37 # don't update the database if we are pretending 38 $no_update = 1 if $pretend; 37 39 38 40 my $missing_tools; … … 116 118 } 117 119 } 120 last if $pretend; # only do the first (full) set if we are in pretend mode 118 121 } 119 122 { -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/rawcheck.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/receive_advance.pl
r29574 r37068 65 65 my ($stage) = $filename =~ m|^dbinfo\.(\S+)\.\d+\.mdc$|; # Stage of interest 66 66 my $tool_name; 67 my $tool_mode = '-importrun'; 67 68 if ($stage eq "raw") { 68 69 $tool_name = "regtool"; … … 73 74 } elsif ($stage eq "sky") { 74 75 $tool_name = "staticskytool"; 76 } elsif ($stage eq "skycal") { 77 $tool_name = "staticskytool"; 78 $tool_mode = '-importskycal'; 75 79 } else { 76 80 $tool_name = "${stage}tool"; … … 81 85 &my_die("Unable to resolve $dbinfo_uri\n", $PS_EXIT_UNKNOWN_ERROR) unless $file; 82 86 83 my $command = "$tool -importrun-infile $file"; # Command to execute87 my $command = "$tool $tool_mode -infile $file"; # Command to execute 84 88 $command .= " -dbname $dbname" if defined $dbname; 85 89 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/receive_file.pl
r31567 r37068 223 223 } elsif ($runType eq 'staticskyRun') { 224 224 $stage = 'sky'; 225 # XXX: This should be skycell, but the distribution code uses exposure226 225 $comp_name = 'skycell_id'; 227 # $current_component = $comp_name; 226 } elsif ($runType eq 'skycalRun') { 227 $stage = 'skycal'; 228 $comp_name = 'skycell_id'; 228 229 } else { 229 230 &my_die( "unexpected run type line found in $filename: $runType\n", $file_id, $PS_EXIT_UNKNOWN_ERROR); … … 238 239 } 239 240 240 if ($stage eq 'sky' ) {241 # the dbinfo file for a skyRun only has one component and it doesn't contain241 if ($stage eq 'sky' or $stage eq 'skycal') { 242 # the dbinfo file for staticskyRun and skycalRun only have one component and they don't contain 242 243 # skycell_id which is the way components are listed in the dirinfo file. 243 244 my @ids = keys %$components; 244 &my_die( "unexpected number of components scalar @ids found in staticsky dirinfo file\n", $file_id, $PS_EXIT_UNKNOWN_ERROR) if scalar @ids != 1; 245 my $nComponents = scalar @ids; 246 &my_die( "unexpected number of components $nComponents found in $stage dirinfo file\n", $file_id, $PS_EXIT_UNKNOWN_ERROR) if $nComponents != 1; 245 247 $current_component = $ids[0]; 246 248 } -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/register_imfile.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/skycell_jpeg.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/stack_skycell.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/stack_skycell.pl merged: 36397
r35965 r37068 40 40 } 41 41 42 my ($stack_id, $dbname, $outroot, $debug, $run_state, $threads, $reduction, $verbose, $no_update, $no_op, $redirect, $save_temps );42 my ($stack_id, $dbname, $outroot, $debug, $run_state, $threads, $reduction, $verbose, $no_update, $no_op, $redirect, $save_temps, $delete_convolved_images); 43 43 GetOptions( 44 44 'stack_id|d=s' => \$stack_id, # Stack identifier … … 55 55 'redirect-output' => \$redirect, 56 56 'save-temps' => \$save_temps, # Save temporary files? 57 'delete-convolved' => \$delete_convolved_images, 57 58 ) or pod2usage( 2 ); 58 59 … … 92 93 ); 93 94 95 94 96 my $ipprc = PS::IPP::Config->new() or my_die( "Unable to set up", $stack_id, $PS_EXIT_CONFIG_ERROR ); # IPP configuration 95 97 $| = 1; … … 360 362 361 363 if (!$quality) { 364 365 362 366 check_outputs(\@outputFiles, $replicate_outputs); 367 368 if (($convolve)&&($delete_convolved_images)) { # We made convolved products, but do not wish to keep them anymore 369 my @products_to_clear = ('PPSTACK.OUTPUT', 370 'PPSTACK.OUTPUT.MASK', 371 'PPSTACK.OUTPUT.VARIANCE', 372 'PPSTACK.OUTPUT.EXP', 373 'PPSTACK.OUTPUT.EXPNUM', 374 'PPSTACK.OUTPUT.EXPWT'); 375 foreach my $product (@products_to_clear) { 376 my $file = $ipprc->filename($product,$outroot,$skycell_id); 377 print "Deleting unwanted convolved product: $file\n"; 378 my $error= $ipprc->kill_file($file); 379 if ($error_code) { 380 print "Failed to delete unwanted convolved product: $error_code\n"; 381 } 382 } 383 } 384 363 385 } 364 386 - Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/staticsky.pl
r34852 r37068 138 138 my $configuration = $ipprc->filename("PSPHOT.STACK.CONFIG", $outroot); 139 139 140 my $needConvolvedImages = 0; 141 140 142 foreach my $file (@$files) { 141 143 print $listFile "INPUT METADATA\n"; … … 146 148 my $stack_id = $file->{stack_id}; 147 149 148 my $imageCnv = $ipprc->filename("PPSTACK.OUTPUT", $path_base ); # Image name 149 my $maskCnv = $ipprc->filename("PPSTACK.OUTPUT.MASK", $path_base ); # Mask name 150 my $weightCnv = $ipprc->filename("PPSTACK.OUTPUT.VARIANCE", $path_base ); # Weight name 151 my $expnumCnv = $ipprc->filename("PPSTACK.OUTPUT.EXPNUM", $path_base ); # Expnum name 150 my ($imageCnv, $maskCnv, $weightCnv, $expnumCnv); 151 if ($needConvolvedImages) { 152 $imageCnv = $ipprc->filename("PPSTACK.OUTPUT", $path_base ); # Image name 153 $maskCnv = $ipprc->filename("PPSTACK.OUTPUT.MASK", $path_base ); # Mask name 154 $weightCnv = $ipprc->filename("PPSTACK.OUTPUT.VARIANCE", $path_base ); # Weight name 155 $expnumCnv = $ipprc->filename("PPSTACK.OUTPUT.EXPNUM", $path_base ); # Expnum name 156 } 152 157 153 158 my $imageRaw = $ipprc->filename("PPSTACK.UNCONV", $path_base ); # Image name … … 166 171 &my_die("Couldn't find input: $weightRaw", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$weightRaw"); 167 172 &my_die("Couldn't find input: $expnumRaw", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$expnumRaw"); 168 &my_die("Couldn't find input: $imageCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$imageCnv"); 169 &my_die("Couldn't find input: $maskCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$maskCnv"); 170 &my_die("Couldn't find input: $weightCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$weightCnv"); 171 &my_die("Couldn't find input: $expnumCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$expnumCnv"); 172 &my_die("Couldn't find input: $psfCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$psfCnv"); 173 if ($needConvolvedImages) { 174 &my_die("Couldn't find input: $imageCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$imageCnv"); 175 &my_die("Couldn't find input: $maskCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$maskCnv"); 176 &my_die("Couldn't find input: $weightCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$weightCnv"); 177 &my_die("Couldn't find input: $expnumCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$expnumCnv"); 178 &my_die("Couldn't find input: $psfCnv", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$psfCnv"); 179 } 173 180 &my_die("Couldn't find input: $sources", $sky_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists("$sources"); 174 181 … … 178 185 print $listFile " RAW:VARIANCE STR " . $weightRaw . "\n"; 179 186 print $listFile " RAW:EXPNUM STR " . $expnumRaw . "\n"; 180 181 print $listFile " CNV:IMAGE STR " . $imageCnv . "\n";182 print $listFile " CNV:MASK STR " . $maskCnv . "\n";183 print $listFile " CNV:VARIANCE STR " . $weightCnv . "\n";184 print $listFile " CNV:EXPNUM STR " . $expnumCnv . "\n";185 print $listFile " CNV:PSF STR " . $psfCnv . "\n";186 187 187 print $listFile " SOURCES STR " . $sources . "\n"; 188 if ($needConvolvedImages) { 189 print $listFile " CNV:IMAGE STR " . $imageCnv . "\n"; 190 print $listFile " CNV:MASK STR " . $maskCnv . "\n"; 191 print $listFile " CNV:VARIANCE STR " . $weightCnv . "\n"; 192 print $listFile " CNV:EXPNUM STR " . $expnumCnv . "\n"; 193 print $listFile " CNV:PSF STR " . $psfCnv . "\n"; 194 } 188 195 189 196 print $listFile "END\n\n"; -
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/warp_skycell.pl
- Property svn:mergeinfo deleted
Note:
See TracChangeset
for help on using the changeset viewer.
