IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33814 for trunk


Ignore:
Timestamp:
Apr 19, 2012, 10:47:58 AM (14 years ago)
Author:
rhenders
Message:

adding chipbackground stage

Location:
trunk/ippMonitor/czartool
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/czartool/czarpoll.pl

    r33808 r33814  
    4646        "diff",
    4747        "dist",
    48         "pub");
     48        "pub",
     49        "chipbackground");
    4950
    5051my @ippToPspsStages = (
  • trunk/ippMonitor/czartool/czartool.pl

    r33803 r33814  
    3232my @publishingLabels = undef;
    3333
    34 my @stages = ("chip", "cam", "fake", "warp", "stack", "staticsky", "diff", "dist", "pub");
     34my @stages = ("chip", "cam", "fake", "warp", "stack", "staticsky", "diff", "dist", "pub", "chipbackground");
    3535promptPoll();
    3636
     
    160160    printf("+------------+");
    161161    foreach $stage (@stages) {
    162         print "------------+"
     162        print "--------------+"
    163163    }
    164164    printf("\n");
     
    166166    foreach $stage (@stages) {
    167167
    168         printf(" %10s |", $stage)
     168        printf("%14s|", $stage)
    169169    }
    170170    printf("\n");
    171171    printf("+------------+");
    172172    foreach $stage (@stages) {
    173         print "------------+"
     173        print "--------------+"
    174174    }
    175175    printf("\n");
     
    184184        foreach $stage (@stages) {
    185185
    186             printf("| %10s ", getStateAndFaultsString($label, $state, $stage));
     186            printf("|%14s", getStateAndFaultsString($label, $state, $stage));
    187187        }
    188188
     
    193193    printf("+------------+");
    194194    foreach $stage (@stages) {
    195         print "------------+"
     195        print "--------------+"
    196196    }
    197197    printf("\n");
     
    212212    printf("+-----+----------------------------------+---------------+---------------+");
    213213    foreach $stage (@stages) {
    214         print "------------+"
     214        print "--------------+"
    215215    }
    216216    printf("\n");
     
    225225    foreach $stage (@stages) {
    226226
    227         printf(" %10s |", $stage)
     227        printf("%14s|", $stage)
    228228    }
    229229    printf("\n");
    230230    printf("+-----+----------------------------------+---------------+---------------+");
    231231    foreach $stage (@stages) {
    232         print "------------+"
     232        print "--------------+"
    233233    }
    234234    printf("\n");
     
    255255        foreach $stage (@stages) {
    256256
    257             printf("| %10s ", getStateAndFaultsString($stdsLabel, $state, $stage));
     257            printf("|%14s", getStateAndFaultsString($stdsLabel, $state, $stage));
    258258        }
    259259
     
    264264    printf("+-----+----------------------------------+---------------+---------------+");
    265265    foreach $stage (@stages) {
    266         print "------------+"
     266        print "--------------+"
    267267    }
    268268    printf("\n");
  • trunk/ippMonitor/czartool/czartool/CzarDb.pm

    r33808 r33814  
    1616        "diff",
    1717        "dist",
    18         "pub"); # TODO put elsewhere
     18        "pub",
     19        "chipbackground"); # TODO put elsewhere
    1920
    2021my @ippToPspsStages = (
  • trunk/ippMonitor/czartool/czartool/DayMetrics.pm

    r33808 r33814  
    106106            "staticsky",
    107107            "diff",
    108             "dist");
     108            "dist",
     109            "chipbackground");
    109110
    110111
  • trunk/ippMonitor/czartool/czartool/Gpc1Db.pm

    r33804 r33814  
    3030    elsif ($stage eq "dist") {${$joinTable}="distComponent";}
    3131    elsif ($stage eq "pub") {${$joinTable}="publishDone";}
     32    elsif ($stage eq "chipbackground") {${$id}="chip_bg_id"; ${$joinTable}="chipBackgroundImfile";}
    3233    else {
    3334
     
    5859    elsif ($stage eq "dist" ) {return "distRun";}
    5960    elsif ($stage eq "pub" ) {return "publishRun";}
     61    elsif ($stage eq "chipbackground" ) {return "chipBackgroundRun";}
    6062
    6163    return "ERROR";
  • trunk/ippMonitor/czartool/czartool/Plotter.pm

    r33808 r33814  
    1919        "diff",
    2020        "dist",
    21         "pub");
     21        "pub",
     22        "chipbackground");
    2223
    2324my @allIppToPspsStages = (
  • trunk/ippMonitor/czartool/roboczar.pl

    r33808 r33814  
    2929        "staticsky",
    3030        "diff",
    31         "dist"); # TODO get from Pantasks
     31        "dist",
     32        "chipbackground"); # TODO get from Pantasks
    3233
    3334my @interestedServers = $config->getRoboczarInterestedServers();
Note: See TracChangeset for help on using the changeset viewer.