Changeset 28881
- Timestamp:
- Aug 10, 2010, 12:37:02 PM (16 years ago)
- Location:
- tags/ipp-20100701/pstamp/scripts
- Files:
-
- 2 edited
-
pstamp_job_run.pl (modified) (1 diff, 1 prop)
-
pstampparse.pl (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20100701/pstamp/scripts/pstamp_job_run.pl
- Property svn:mergeinfo set to
r28631 r28881 93 93 94 94 $argString .= " -file $params->{image}"; 95 $argString .= " -mask $params->{mask}"; 96 my @file_list = ($params->{image}, $params->{mask}); 95 my @file_list = ($params->{image}); 96 97 my $nan_masked = 1; 98 if (!$params->{magicked}) { 99 $nan_masked = 0; 100 } 101 if ($nan_masked or ($options & $PSTAMP_SELECT_MASK)) { 102 $argString .= " -mask $params->{mask}"; 103 push @file_list, $params->{mask}; 104 } 97 105 if ($options & $PSTAMP_SELECT_VARIANCE) { 98 106 $argString .= " -variance $params->{weight}"; -
tags/ipp-20100701/pstamp/scripts/pstampparse.pl
- Property svn:mergeinfo set to
r28631 r28881 386 386 $need_magic = $proj_hash->{need_magic}; 387 387 388 # Temporary hack so that MOPScan get at non-magicked data388 # Temporary hack so that IFA can get at non-magicked data 389 389 my $allow_mops_unmagicked = 1; 390 390 if ($allow_mops_unmagicked) { 391 391 if ($product and (($product eq "mops-pstamp-results") or 392 ($product eq "mops-pstamp-results2"))) { 392 ($product eq "mops-pstamp-results2") or 393 ($product eq "ifa-pstamp-results"))) { 393 394 $need_magic = 0; 394 395 } … … 814 815 ($stage ne 'chip' and $state eq 'full')) { 815 816 my_die("$stage $stage_id is in unexpected state $state", $PS_EXIT_PROG_ERROR); 817 } 818 819 if (($stage eq 'diff') and ($stage_id <= 22778)) { 820 print STDERR "diff_id $stage_id cannot be updated\n"; 821 $$r_dep_id = 0; 822 $$r_fault = $PSTAMP_GONE; 823 $$r_jobState = 'stop'; 824 return; 816 825 } 817 826
Note:
See TracChangeset
for help on using the changeset viewer.
