IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 5, 2007, 4:51:02 PM (19 years ago)
Author:
Paul Price
Message:

Fixing serial processing scripts for recent update to ippdb/ippTools.

File:
1 edited

Legend:

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

    r12020 r12251  
    4949
    5050foreach my $item (@$list) {
    51     my $exp_tag = $item->{exp_tag};
     51    my $chip_id = $item->{chip_id};
    5252    my $camera = $item->{camera};
    5353    my $class_id = $item->{class_id};
    5454    my $uri = $item->{uri};
    5555   
    56     my $command = "$chip --exp_tag $exp_tag --class_id $class_id --uri $uri --dbname $dbname --camera $camera";
     56    my $command = "$chip --chip_id $chip_id --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;
     
    6060    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
    6161        run( command => $command, verbose => 1 );
    62     die "Unable to do phase 2 processing on $exp_tag $class_id: $error_code\n" if not $success;
     62    die "Unable to do phase 2 processing on $chip_id $class_id: $error_code\n" if not $success;
    6363}
    6464
Note: See TracChangeset for help on using the changeset viewer.