</message>
<message>
<source>MEN_VISU_SHOW_DEVIATION</source>
- <translation>Show Deviation</translation>
+ <translation>Show errors</translation>
</message>
<message>
<source>TOOL_IMPORT</source>
anInt->HasValue( minRow, j ) && anInt->HasValue( maxRow, j )) {
value = anInt->GetValue(myVRow,j);
theMin[k] = Table_i::calculateDeviation(info->minDeviation(),value, anInt->GetValue(minRow,j), true);
- theMax[k] = Table_i::calculateDeviation(info->maxDeviation(),value, anInt->GetValue(minRow,j), false);
+ theMax[k] = Table_i::calculateDeviation(info->maxDeviation(),value, anInt->GetValue(maxRow,j), false);
k++;
theIndexes.push_back(j-1);
}
namespace VISU {
typedef enum {NoneDvtn = 0,
- AbsoluteDvtn,
- PercentageDvtn,
- ErrorDvtn,
- ErrorPercentageDvtn,
- SimpleErrorDvtn,
- SimpleErrorPercentageDvtn } DeviationType;
+ AbsoluteDvtn, // min, max
+ PercentageDvtn, // min%, max%
+ ErrorDvtn, // errmin, errmax
+ ErrorPercentageDvtn, // errmin%, errmax%
+ SimpleErrorDvtn, // error
+ SimpleErrorPercentageDvtn // error%
+ } DeviationType;
class VISU_I_EXPORT DeviationData {
public: