Changeset 12020
- Timestamp:
- Feb 23, 2007, 3:02:44 PM (19 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 3 edited
-
ipp_serial_camera.pl (modified) (2 diffs)
-
ipp_serial_chip.pl (modified) (2 diffs)
-
ipp_serial_register.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/ipp_serial_camera.pl
r12013 r12020 33 33 # Look for programs we need 34 34 my $missing_tools; 35 my $camtool = can_run(' p3tool') or (warn "Can't find p3tool" and $missing_tools = 1);36 my $ phase3 = can_run('phase3.pl') or (warn "Can't find phase3.pl" and $missing_tools = 1);35 my $camtool = can_run('camtool') or (warn "Can't find camtool" and $missing_tools = 1); 36 my $camera = can_run('camera_exp.pl') or (warn "Can't find camera_exp.pl" and $missing_tools = 1); 37 37 die "Can't find required tools.\n" if $missing_tools; 38 38 … … 52 52 my $camera = $item->{camera}; 53 53 54 my $command = "$ phase3--exp_tag $exp_tag --camera $camera --dbname $dbname";54 my $command = "$camera --exp_tag $exp_tag --camera $camera --dbname $dbname"; 55 55 $command .= " --no-op" if defined $no_op; 56 56 $command .= " --no-update" if defined $no_update; -
trunk/ippScripts/scripts/ipp_serial_chip.pl
r12013 r12020 33 33 # Look for programs we need 34 34 my $missing_tools; 35 my $chiptool = can_run(' p2tool') or (warn "Can't find p2tool" and $missing_tools = 1);36 my $ phase2 = can_run('phase2.pl') or (warn "Can't find phase2.pl" and $missing_tools = 1);35 my $chiptool = can_run('chiptool') or (warn "Can't find chiptool" and $missing_tools = 1); 36 my $chip = can_run('chip_imfile.pl') or (warn "Can't find chip_imfile.pl" and $missing_tools = 1); 37 37 die "Can't find required tools.\n" if $missing_tools; 38 38 … … 54 54 my $uri = $item->{uri}; 55 55 56 my $command = "$ phase2--exp_tag $exp_tag --class_id $class_id --uri $uri --dbname $dbname --camera $camera";56 my $command = "$chip --exp_tag $exp_tag --class_id $class_id --uri $uri --dbname $dbname --camera $camera"; 57 57 $command .= " --no-op" if defined $no_op; 58 58 $command .= " --no-update" if defined $no_update; -
trunk/ippScripts/scripts/ipp_serial_register.pl
r12013 r12020 29 29 # Look for programs we need 30 30 my $missing_tools; 31 my $regtool = can_run(' p0tool') or (warn "Can't find p0tool" and $missing_tools = 1);32 my $ phase0_imfile = can_run('phase0_imfile.pl') or (warn "Can't find phase0_imfile.pl" and $missing_tools = 1);33 my $ phase0_exp = can_run('phase0_exp.pl') or (warn "Can't find phase0_exp.pl" and $missing_tools = 1);31 my $regtool = can_run('regtool') or (warn "Can't find regtool" and $missing_tools = 1); 32 my $register_imfile = can_run('register_imfile.pl') or (warn "Can't find register_imfile.pl" and $missing_tools = 1); 33 my $register_exp = can_run('register_exp.pl') or (warn "Can't find register_exp.pl" and $missing_tools = 1); 34 34 die "Can't find required tools.\n" if $missing_tools; 35 35 … … 51 51 my $uri = $item->{uri}; 52 52 53 my $command = "$ phase0_imfile --exp_tag $exp_tag --class $class --class_id $class_id --uri $uri --dbname $dbname";53 my $command = "$register_imfile --exp_tag $exp_tag --class $class --class_id $class_id --uri $uri --dbname $dbname"; 54 54 $command .= " --workdir $workdir" if defined $workdir; 55 55 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = … … 71 71 my $exp_tag = $item->{exp_tag}; 72 72 73 my $command = "$ phase0_exp --exp_tag $exp_tag --dbname $dbname";73 my $command = "$register_exp --exp_tag $exp_tag --dbname $dbname"; 74 74 $command .= " --workdir $workdir" if defined $workdir; 75 75 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note:
See TracChangeset
for help on using the changeset viewer.
