Changeset 35834
- Timestamp:
- Jul 17, 2013, 2:30:44 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20130712/ippScripts/scripts/ipp_apply_burntool_single.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/ipp_apply_burntool_single.pl merged: 35829,35833
r35770 r35834 45 45 defined $dbname; 46 46 47 unless (defined $camera) {48 $camera = "GPC1";49 }47 # unless (defined $camera) { 48 # $camera = "GPC1"; 49 # } 50 50 51 51 my $missing_tools; … … 146 146 } 147 147 if (($addable == 1)&&($#continue_exp_ids < $continue)) { 148 $this_exp_id = $entry->{exp_id} ;149 $this_uri = $entry->{uri} ;150 $this_state = $entry->{imfile_state} ;148 $this_exp_id = $entry->{exp_id} ? $entry->{exp_id} : 0; 149 $this_uri = $entry->{uri} ? $entry->{uri} : 'NULL'; 150 $this_state = $entry->{imfile_state} ? $entry->{imfile_state} : 'NULL'; 151 151 print ">> $this_exp_id $this_uri $this_state\n"; 152 152 if ($this_state eq 'pending_burntool') { … … 177 177 $outTable =~ s/fits$/burn.tbl/; 178 178 my $outTableReal = $ipprc->file_resolve($outTable, 1); 179 if (!$outTableReal) { 180 &my_die("failed to resolve output file: $outTable",$exp_id,$class_id); 181 } 179 182 180 183 my $previousTable; … … 184 187 $previousTable =~ s/fits$/burn.tbl/; 185 188 $previousTableReal = $ipprc->file_resolve($previousTable, 0); 189 if (!$previousTableReal) { 190 &my_die("failed to resolve input file: $previousTable",$exp_id,$class_id); 191 } 186 192 } 187 193 - Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.
