IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39803


Ignore:
Timestamp:
Nov 4, 2016, 3:13:53 PM (10 years ago)
Author:
watersc1
Message:

Updated version of nightly_science that I believe fixes the missing diff issue.

Location:
branches/czw_branch/20160809
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20160809/ippScripts/scripts/nightly_science.pl

    r39800 r39803  
    15091509            my $this_comment = ${ $this_warp }[3];
    15101510            my $this_exp_id  = ${ $this_warp }[0];
    1511             if ($comment_hash{$this_comment} == $this_exp_id) {
     1511            if ((exists($comment_hash{$this_comment}))&&
     1512                ($comment_hash{$this_comment} == $this_exp_id)) {
    15121513                push @keep_warps, $this_warp;
    15131514            }
    15141515            else {
    1515                 print STDERR "diff_queue: excluding $this_exp_id for $this_object due to duplicate comment string $this_comment\n";
     1516                print STDERR "diff_queue: excluding $this_exp_id for $this_object due to not being an accepted comment string $this_comment\n";
    15161517            }
    15171518        }
     
    15411542
    15421543            my $template_exp_id = ${ $template_warp }[0];
    1543            
     1544            my $template_comment = ${ $template_warp }[3];
     1545
    15441546            my $input_warp_id = ${ $input_warp }[1];
    15451547            my $template_warp_id = ${ $template_warp }[1];
     
    15671569            if (verify_uniqueness_diff($input_warp_id,$template_warp_id,$date,$target) != 0) {
    15681570                $Nqueued++;
    1569                 print STDERR "Diffs already queued for this $date $target $input_exp_id $template_exp_id ($input_warp_id $template_warp_id) $this_object $input_comment\n";
     1571                print STDERR "Diffs already queued for this $date $target $input_exp_id $template_exp_id ($input_warp_id $template_warp_id) $this_object $input_comment $template_comment\n";
    15701572                next;
    15711573            }
     
    16581660            my $this_comment = ${ $this_warp }[3];
    16591661            my $this_exp_id  = ${ $this_warp }[0];
    1660             if ($comment_hash{$this_comment} == $this_exp_id) {
     1662            if ((exists($comment_hash{$this_comment}))&&
     1663                ($comment_hash{$this_comment} == $this_exp_id)) {
    16611664                push @keep_warps, $this_warp;
    16621665            }
    16631666            else {
    1664                 print STDERR "desp_diff_queue: excluding $this_exp_id for $this_object due to duplicate comment string $this_comment\n";
     1667                print STDERR "desp_diff_queue: excluding $this_exp_id for $this_object due to not being an accepted comment string $this_comment\n";
    16651668            }
    16661669        }
     
    16931696
    16941697            my $template_exp_id = ${ $template_warp }[0];
    1695            
     1698            my $template_comment = ${ $template_warp }[3];
     1699
    16961700            my $input_warp_id = ${ $input_warp }[1];
    16971701            my $template_warp_id = ${ $template_warp }[1];
     
    17191723            if (verify_uniqueness_diff($input_warp_id,$template_warp_id,$date,$target) != 0) {
    17201724                $Nqueued++;
    1721                 print STDERR "Diffs already queued for this $date $target $input_exp_id $template_exp_id ($input_warp_id $template_warp_id) $this_object $input_comment\n";
     1725                print STDERR "Diffs already queued for this $date $target $input_exp_id $template_exp_id ($input_warp_id $template_warp_id) $this_object $input_comment $template_comment\n";
    17221726                next;
    17231727            }
  • branches/czw_branch/20160809/ippconfig/recipes/nightly_science.config

    r39719 r39803  
    324324  REDUCTION STR SWEETSPOT
    325325  ADDITIONAL_STACK_LABEL STR ecliptic.rp
     326  DESPERATE_DIFFS BOOL TRUE
    326327#  REDUCTION STR SSTF_4SIG
    327328END
Note: See TracChangeset for help on using the changeset viewer.