Changeset 14170 for trunk/ippScripts/scripts/ipp_serial_detrend.pl
- Timestamp:
- Jul 12, 2007, 12:49:19 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/ipp_serial_detrend.pl (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/ipp_serial_detrend.pl
r13937 r14170 61 61 my $det_type = $item->{det_type}; 62 62 my $exp_tag = $item->{exp_tag}; 63 my $exp_id = $item->{exp_id}; 63 64 my $class_id = $item->{class_id}; 64 65 my $uri = $item->{uri}; … … 67 68 my $reduction = $item->{reduction}; 68 69 69 my $command = "$detrend_process_imfile --det_id $det_id --exp_tag $exp_tag -- class_id $class_id --det_type $det_type --input_uri $uri --camera $camera --dbname $dbname";70 my $command = "$detrend_process_imfile --det_id $det_id --exp_tag $exp_tag --exp_id $exp_id --class_id $class_id --det_type $det_type --input_uri $uri --camera $camera --dbname $dbname"; 70 71 $command .= " --reduction $reduction" if defined $reduction; 71 72 $command .= " --workdir $workdir" if defined $workdir; … … 92 93 foreach my $item (@$list) { 93 94 my $exp_tag = $item->{exp_tag}; 94 my $camera = $item->{camera}; 95 my $det_id = $item->{det_id}; 96 my $det_type = $item->{det_type}; 97 my $workdir = $item->{workdir}; 98 99 my $command = "$detrend_process_exp --det_id $det_id --det_type $det_type --exp_tag $exp_tag --camera $camera --dbname $dbname"; 95 my $exp_id = $item->{exp_id}; 96 my $camera = $item->{camera}; 97 my $det_id = $item->{det_id}; 98 my $det_type = $item->{det_type}; 99 my $workdir = $item->{workdir}; 100 101 my $command = "$detrend_process_exp --det_id $det_id --det_type $det_type --exp_tag $exp_tag --exp_id $exp_id --camera $camera --dbname $dbname"; 100 102 $command .= " --workdir $workdir" if defined $workdir; 101 103 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = … … 230 232 foreach my $item (@$list) { 231 233 my $exp_tag = $item->{exp_tag}; 234 my $exp_id = $item->{exp_id}; 232 235 my $camera = $item->{camera}; 233 236 my $det_id = $item->{det_id}; … … 241 244 my $reduction = $item->{reduction}; 242 245 243 my $command = "$detrend_resid --det_id $det_id --iteration $iteration --exp_tag $exp_tag -- class_id $class_id --det_type $det_type --camera $camera --input_uri $uri --mode $mode --dbname $dbname";246 my $command = "$detrend_resid --det_id $det_id --iteration $iteration --exp_tag $exp_tag --exp_id $exp_id --class_id $class_id --det_type $det_type --camera $camera --input_uri $uri --mode $mode --dbname $dbname"; 244 247 $command .= " --reduction $reduction" if defined $reduction; 245 248 $command .= " --detrend $detrend" if defined $detrend; … … 268 271 foreach my $item (@$list) { 269 272 my $exp_tag = $item->{exp_tag}; 270 my $camera = $item->{camera}; 271 my $det_id = $item->{det_id}; 272 my $iteration = $item->{iteration}; 273 my $det_type = $item->{det_type}; 274 my $workdir = $item->{workdir}; 275 276 my $command = "$detrend_reject_imfile --det_id $det_id --iteration $iteration --exp_tag $exp_tag --det_type $det_type --camera $camera --dbname $dbname"; 273 my $exp_id = $item->{exp_id}; 274 my $camera = $item->{camera}; 275 my $det_id = $item->{det_id}; 276 my $iteration = $item->{iteration}; 277 my $det_type = $item->{det_type}; 278 my $workdir = $item->{workdir}; 279 280 my $command = "$detrend_reject_imfile --det_id $det_id --iteration $iteration --exp_tag $exp_tag --exp_id $exp_id --det_type $det_type --camera $camera --dbname $dbname"; 277 281 $command .= " --workdir $workdir" if defined $workdir; 278 282 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note:
See TracChangeset
for help on using the changeset viewer.
