IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12020


Ignore:
Timestamp:
Feb 23, 2007, 3:02:44 PM (19 years ago)
Author:
Paul Price
Message:

Fixing names following renaming

Location:
trunk/ippScripts/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/ipp_serial_camera.pl

    r12013 r12020  
    3333# Look for programs we need
    3434my $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);
     35my $camtool = can_run('camtool') or (warn "Can't find camtool" and $missing_tools = 1);
     36my $camera = can_run('camera_exp.pl') or (warn "Can't find camera_exp.pl" and $missing_tools = 1);
    3737die "Can't find required tools.\n" if $missing_tools;
    3838
     
    5252    my $camera = $item->{camera};
    5353   
    54     my $command = "$phase3 --exp_tag $exp_tag --camera $camera --dbname $dbname";
     54    my $command = "$camera --exp_tag $exp_tag --camera $camera --dbname $dbname";
    5555    $command .= " --no-op" if defined $no_op;
    5656    $command .= " --no-update" if defined $no_update;
  • trunk/ippScripts/scripts/ipp_serial_chip.pl

    r12013 r12020  
    3333# Look for programs we need
    3434my $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);
     35my $chiptool = can_run('chiptool') or (warn "Can't find chiptool" and $missing_tools = 1);
     36my $chip = can_run('chip_imfile.pl') or (warn "Can't find chip_imfile.pl" and $missing_tools = 1);
    3737die "Can't find required tools.\n" if $missing_tools;
    3838
     
    5454    my $uri = $item->{uri};
    5555   
    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";
    5757    $command .= " --no-op" if defined $no_op;
    5858    $command .= " --no-update" if defined $no_update;
  • trunk/ippScripts/scripts/ipp_serial_register.pl

    r12013 r12020  
    2929# Look for programs we need
    3030my $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);
     31my $regtool = can_run('regtool') or (warn "Can't find regtool" and $missing_tools = 1);
     32my $register_imfile = can_run('register_imfile.pl') or (warn "Can't find register_imfile.pl" and $missing_tools = 1);
     33my $register_exp = can_run('register_exp.pl') or (warn "Can't find register_exp.pl" and $missing_tools = 1);
    3434die "Can't find required tools.\n" if $missing_tools;
    3535
     
    5151    my $uri = $item->{uri};
    5252   
    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";
    5454    $command .= " --workdir $workdir" if defined $workdir;
    5555    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
     
    7171    my $exp_tag = $item->{exp_tag};
    7272   
    73     my $command = "$phase0_exp --exp_tag $exp_tag --dbname $dbname";
     73    my $command = "$register_exp --exp_tag $exp_tag --dbname $dbname";
    7474    $command .= " --workdir $workdir" if defined $workdir;
    7575    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note: See TracChangeset for help on using the changeset viewer.