IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26528


Ignore:
Timestamp:
Jan 6, 2010, 5:04:27 PM (16 years ago)
Author:
watersc1
Message:

update help information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/examine_burntool_pcontrol.pl

    r25562 r26528  
    1717    print STDERR "         status of the processing.  On the OTA grid:\n";
    1818    print STDERR "                  _             Blank chip\n";
    19     print STDERR "                  N             Null/zero value for burntool_state. No burntool attempted.\n";
    20     print STDERR "                  O             -1 value for burntool_state. Burntool is running.\n";
    21     print STDERR "                  E             -2 value for burntool_state. Error!\n";
     19    print STDERR "                  O             Null/zero value for burntool_state. No burntool attempted (yet).\n";
     20    print STDERR "                  P             -1 value for burntool_state. Burntool is running.\n";
     21    print STDERR "                  E             -2 value for burntool_state. Error! (modified raw pixels)\n";
     22    print STDERR "                  X             -3 value for burntool_state. Burntool segfaulted on this chip.\n";
    2223    print STDERR "                  B             Current version value for burntool_state. Burntool succeeded.\n";
    2324    print STDERR "                  b             Old version value for burntool_state. Burntool needs to be rerun.\n";
     
    5152        $burncount++;
    5253    }
    53     elsif ($burntool_state == -1) {
     54    elsif ($burntool_state == -1) {   # processing
    5455        $char = '[01;33mP[m';
    5556    }
    56     elsif ($burntool_state == 0) {
     57    elsif ($burntool_state == 0) {    # has not been processed yet
    5758        $char = '[31mO[m';
    5859    }
    59     elsif ($burntool_state == -2) {
     60    elsif ($burntool_state == -2) {   # modified pixel data
    6061        $char = '[35;01;44;05mE[m';
    6162    }
    62     elsif ($burntool_state == -3) {
     63    elsif ($burntool_state == -3) {   # previous burntool segfaulted.
    6364        $char = '[34mX[m';
    6465    }
    65     else {
     66    else {                            # old version
    6667        $char = '[32mb[m';
    6768    }
     
    128129
    129130    $data_ref = $db->selectall_arrayref( $sth );
    130 
    131131
    132132    # Reset
Note: See TracChangeset for help on using the changeset viewer.