133 void SetFailLow(
double val) {
if (val > 0.0) fail_low =
true;
else fail_low =
false;}
134 void SetFailHigh(
double val) {
if (val > 0.0) fail_high =
true;
else fail_high =
false;}
135 void SetFailStuck(
double val) {
if (val > 0.0) fail_stuck =
true;
else fail_stuck =
false;}
137 double GetFailLow(
void)
const {
if (fail_low)
return 1.0;
else return 0.0;}
138 double GetFailHigh(
void)
const {
if (fail_high)
return 1.0;
else return 0.0;}
139 double GetFailStuck(
void)
const {
if (fail_stuck)
return 1.0;
else return 0.0;}
140 int GetQuantized(
void)
const {
return quantized;}
142 bool Run (
void)
override;
143 void ResetPastStates(
void)
override;
146 enum eNoiseType {ePercent=0, eAbsolute} NoiseType;
147 enum eDistributionType {eUniform=0, eGaussian} DistributionType;
154 double noise_variance;
160 double PreviousInput;
168 std::string quant_property;
170 void ProcessSensorSignal(
void);
181 std::shared_ptr<RandomNumberGenerator> generator;
182 void Debug(
int from)
override;