Changeset 14186


Ignore:
Timestamp:
06/18/12 22:23:16 (12 years ago)
Author:
tbretz
Message:
Fixed a compilation issue.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/feedback.cc

    r14033 r14186  
    266266        fDimDeviation.Update(vec);
    267267
    268         if (!fOutputEnabled) || fDimBias.state()!=BIAS::State::kVoltageOn)
     268        if (!fOutputEnabled || fDimBias.state()!=BIAS::State::kVoltageOn)
    269269            return GetCurrentState();
    270270
     
    721721            AverageCurrents(evt);
    722722
    723         if (curr==&fBiasA && fControlType==kCurrents &&
    724             fCursorTemp>0 && fCursorCur>0)
     723        /*
     724        if (fControlType==kCurrents && fCursorTemp>0 && fCursorCur>0)
    725725        {
    726726            // fCursorTemp: 1 2 3 4 5 6 7 8
    727727            // fCursor%x:   1 1 1 2 2 2 3 3    // 9 steps in ~15s
    728             if (fCursorTemp<3 && fCursorCur%(fCursorTemp/3+1)==0)
     728            //if (fCursorTemp<3 && fCursorCur%(fCursorTemp/3+1)==0)
    729729                HandleCurrentControl();
    730         }
     730        }*/
    731731
    732732        return GetCurrentState();
Note: See TracChangeset for help on using the changeset viewer.