Changeset 10107
- Timestamp:
- 01/19/11 13:11:51 (14 years ago)
- Location:
- fact/BIASctrl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/BIASctrl/History.txt
r10096 r10107 6 6 7/12/2010 Added dynamic mode 7 7 6/1/2011 RampVoltages() had infinite loop if crate communication stopped 8 19/1/2011 'hv' command crashed when no bias board was present -
fact/BIASctrl/User.cc
r10096 r10107 204 204 } 205 205 206 206 207 // Loop over given crates and channels 207 208 for (int i=Crt.Min; i<=Crt.Max; i++) for (int j=Chan.Min; j<=Chan.Max; j++) { 209 // Check that indices are in legal range 210 if (i<0 || i>=(int) Crates.size() || j<0 || j >=NUM_CHANNELS) continue; 211 208 212 // Voltage change (number starts with + oder -) ignored if current DAC value is zero 209 213 if (isdigit(Parameter[n+1][0])==0 && Crates[i]->GetDAC(j) == 0) continue;
Note:
See TracChangeset
for help on using the changeset viewer.