| 167 | } |
| 168 | |
| 169 | bool TableLookup_Impl::setNormalizationDivisor(double normalizationDivisor) { |
| 170 | if (std::abs(normalizationDivisor) < std::numeric_limits<double>::min()) { |
| 171 | LOG(Warn, "Unable to set " << briefDescription() << "'s Normalization divisor to zero."); |
| 172 | return false; |
| 173 | } |
| 174 | |
| 175 | bool result = setDouble(OS_Table_LookupFields::NormalizationDivisor, normalizationDivisor); |
| 176 | return result; |
| 177 | } |
| 178 | |
| 179 | bool TableLookup_Impl::setMinimumOutput(double minimumOutput) { |
| 180 | bool result = setDouble(OS_Table_LookupFields::MinimumOutput, minimumOutput); |