|
Öffentliche Typen |
| enum | FPS_MEASURE_MODE { MM,
VOLT
} |
| | currently used measure mode Mehr...
|
| enum | FPS_MEASURE_MODE { MM,
VOLT
} |
Öffentliche Methoden |
| | CFpsConvert () |
| | convert
|
| int | GetVersion (void) const |
| | delivers the version of this class
|
| void | SetMeasureMode (const FPS_MEASURE_MODE NewMode) |
| | sets the current working unit
|
| FPS_MEASURE_MODE | GetMeasureMode (void) const |
| | delivers the current working unit ( mm or mV )
|
| void | clear (void) |
| | clears the stored stuetzstellen ( data points )
|
| float | GetMaxMm (void) const |
| | delivers the maximum ( in mm ) of the stored data points
|
| float | GetMinMm (void) const |
| | delivers the minimum ( in mm ) of the stored data points
|
| unsigned int | GetNumStuetzstellen (void) const |
| | delivers the number of stored data points
|
| void | SetNumStuetzstellen (unsigned int uiNewNumStuetzstellen) |
| | sets the number of stored data points
|
| bool | AddStuetzstelle (const float fX, const float fY) |
| | add a new data point
|
| void | SetStuetzstelle (const unsigned int uiIndex, const float fX, const float fY) |
| | sets a specific data point
|
| bool | GetStuetzstelle (const unsigned int uiIndex, float &fX, float &fY) const |
| | delivers the data point conresponding to the overgiven index
|
| void | SetCurStuetzstelle (const unsigned int uiCurStuetzstelle) |
| | sets the currently used data point index
|
| unsigned int | GetCurStuetzstelle (void) const |
| | delivers the currently used data point index
|
| void | SetCurStuetzstelle (const float fX, const float fY) |
| | sets the current data point
|
| void | GetCurStuetzstelle (float &fX, float &fY) const |
| | delivers the current data point
|
| void | IncCurStuetzstelle (void) |
| | incremens the current data point index
|
| void | DecCurStuetzstelle (void) |
| | decremens the current data point
|
| bool | StuetzstelleWasModified (const unsigned int uiIndex) const |
| | delivers the information if the corresponding data point was modified since the start of the program
|
| void | ClearModifiedFlag (const unsigned int uiCurPoint) |
| | marks the data point as unmodified
|
| bool | ConvertMvToMm (const float fValueIn, float &fValueOut) const |
| | convert between mV/mm
|
| bool | ConvertMmToMv (const float fValueIn, float &fValueOut) const |
| | convert between mm/mV
|
| void | ConvertMvToNative (const float fValueIn, int &iValueOut) const |
| | convert mV to native( 16 bit value )
|
| void | ConvertMmToNative (const float fValueIn, int &iValueOut) const |
| | convert mm to native( 16 bit value )
|
| bool | ConvertSpecToNative (const float fValueIn, int &iValueOut) const |
| | convert current working unit to native( 16 bit value )
|
| void | ConvertNativeToMv (const unsigned int iValueIn, float &fValueOut) const |
| | convert current native ( 16 bit value ) to mV
|
| void | ConvertNativeToMm (const unsigned int iValueIn, float &fValueOut) const |
| | convert current native ( 16 bit value ) to mm
|
| bool | ConvertNativeToSpec (const unsigned int iValueIn, float &fValueOut) const |
| | convert current native ( 16 bit value ) to current working unit
|
|
int | GetVersion (void) const |
|
void | SetMeasureMode (const FPS_MEASURE_MODE NewMode) |
|
FPS_MEASURE_MODE | GetMeasureMode (void) const |
|
void | clear (void) |
|
float | GetMaxMm (void) const |
|
float | GetMinMm (void) const |
| bool | ConvertMvToMm (float fValueIn, float &fValueOut) |
| bool | ConvertMmToMv (float fValueIn, float &fValueOut) |
| unsigned int | GetNumStuetzStellen (void) const |
| bool | AddStuetzStelle (const float fX, const float fY) |
| bool | SetStuetzStelle (const unsigned int uiIndex, const float fX, const float fY) |
| bool | GetStuetzStelle (const unsigned int uiIndex, float &fX, float &fY) const |
| bool | ConvertNativeToSpec (unsigned int iValueIn, float &fValueOut) |
| bool | ConvertSpecToNative (float fValueIn, int &iValueOut) |
Private Attribute |
|
FPS_MEASURE_MODE | m_CurMeasureMode |
| | current working unit
|
|
int | m_iStuetzArrayVersion |
| | version of this class
|
|
unsigned int | m_CurNumStuetzstellen |
| | current number of stored data points
|
|
unsigned int | m_uiCurStuetzstelle |
| | current data point index
|
|
float | m_StuetzX [MAX_STUETZSTELLEN] |
| | mV data point values
|
|
float | m_StuetzY [MAX_STUETZSTELLEN] |
| | mm data point values
|
|
bool | m_Modified [MAX_STUETZSTELLEN] |
| | modified flags
|
|
unsigned int | m_CurNumStuetzStellen |