- Timestamp:
- 09/02/11 15:30:50 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/FactGui.h
r11936 r11954 19 19 #include "src/HeadersFTM.h" 20 20 #include "src/HeadersFAD.h" 21 #include "src/HeadersBIAS.h" 21 22 #include "src/DimNetwork.h" 22 23 #include "src/tools.h" … … 1406 1407 1407 1408 ostringstream str; 1408 str << "EventNum = " << fEventData->EventNum; 1409 str << "CH = " << fAdcCrate->value() << '|' << fAdcBoard->value() << '|' << fAdcChip->value() << '|' << fAdcChannel->value() << " (" << p << ")"; 1410 str << " EventNum = " << fEventData->EventNum; 1409 1411 str << " TriggerNum = " << fEventData->TriggerNum; 1410 1412 str << " TriggerType = " << fEventData->TriggerType; … … 2656 2658 if (s.index<1) // No Dim connection 2657 2659 SetLedColor(fStatusBiasLed, kLedGray, time); 2658 if (s.index== 1) // Dim connection / FTM disconnected2660 if (s.index==BIAS::kDisconnected) // Dim connection / FTM disconnected 2659 2661 SetLedColor(fStatusBiasLed, kLedRed, time); 2660 if (s.index== 2 || s.index==3) // Connecting / Initializing2662 if (s.index==BIAS::kConnecting || s.index==BIAS::kInitializing) // Connecting / Initializing 2661 2663 SetLedColor(fStatusBiasLed, kLedOrange, time); 2662 if (s.index== 4) // Connected2664 if (s.index==BIAS::kConnected) // Connected 2663 2665 SetLedColor(fStatusBiasLed, kLedYellow, time); 2664 if (s.index== 5) // Ramping2666 if (s.index==BIAS::kRamping) // Ramping 2665 2667 SetLedColor(fStatusBiasLed, kLedWarn, time); 2666 if (s.index== 6) // Over current2668 if (s.index==BIAS::kOverCurrent) // Over current 2667 2669 SetLedColor(fStatusBiasLed, kLedWarnBorder, time); 2668 if (s.index== 7) // At reference2670 if (s.index==BIAS::kAtReference) // At reference 2669 2671 SetLedColor(fStatusBiasLed, kLedGreen, time); 2670 if (s.index== 8) // ExpertMode2672 if (s.index==BIAS::kExpertMode) // ExpertMode 2671 2673 SetLedColor(fStatusBiasLed, kLedWarnTriangleBorder, time); 2672 2674
Note:
See TracChangeset
for help on using the changeset viewer.