- Timestamp:
- 09/02/11 12:54:19 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/biasctrl.cc
r11948 r11950 1004 1004 { 1005 1005 const int id = c+kNumChannelsPerBoard*b; 1006 Out() << (fCurrent[id]<0?kRed:kGreen); 1006 1007 Out() << " " << setw(7) << abs(fCurrent[id])*5000/4096.; 1007 if (fCurrent[id]<0)1008 Out() << "!";1009 else1010 Out() << " ";1011 1008 } 1012 1009 Out() << endl; … … 1040 1037 const int id = c+kNumChannelsPerBoard*b; 1041 1038 Out() << " "; 1039 Out() << (fVolt[id]==fVoltRef[id]?kGreen:kRed); 1042 1040 Out() << setw(5) << fVolt[id]*90/4096. << '/'; 1043 1041 Out() << setw(5) << fVoltRef[id]*90/4096.; … … 1729 1727 ("volt-max", var<float>(75), "Upper limit for the voltage which can be applied in Volts") 1730 1728 ; 1731 // FIXME: Make sure ramping / request and commands are 1732 // not sent at the same time. 1729 // FIXME: Add a bit for OC... there is no -0 1733 1730 1734 1731 conf.AddOptions(control);
Note:
See TracChangeset
for help on using the changeset viewer.