Ignore:
Timestamp:
06/22/11 19:57:21 (13 years ago)
Author:
tbretz
Message:
Added FSC_CONTROL led; removed (maybe temporarily setting of maximumj in plot for rates
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/FactGui.h

    r11108 r11117  
    10931093
    10941094        h->SetMinimum(0);
    1095         h->SetMaximum(2*avgrate);
     1095//        h->SetMaximum(2*avgrate);
    10961096
    10971097        c->Modified();
     
    15431543        }
    15441544
     1545        if (server=="FSC_CONTROL")
     1546        {
     1547            fStatusFSCLabel->setText(s.name.c_str());
     1548            fStatusFSCLabel->setToolTip(s.comment.c_str());
     1549
     1550            bool enable = false;
     1551
     1552            if (s.index<1) // No Dim connection
     1553                SetLedColor(fStatusFSCLed, kLedGray, time);
     1554            if (s.index==1) // Dim connection / FTM disconnected
     1555                SetLedColor(fStatusFSCLed, kLedRed, time);
     1556            if (s.index>=2) // Dim connection / FTM disconnected
     1557            {
     1558                SetLedColor(fStatusFSCLed, kLedGreen, time);
     1559                enable = true;
     1560            }
     1561
     1562            //fFscWidget->setEnabled(enable);
     1563        }
     1564
    15451565        if (server=="DATA_LOGGER")
    15461566        {
Note: See TracChangeset for help on using the changeset viewer.