| 186 | double _density[3]; |
| 187 | |
| 188 | double log2lin(double xLog, |
| 189 | int c) |
| 190 | { |
| 191 | return _linRef[c] * std::pow( 10.0, (xLog * 1023. - _logRef[c]) * _density[c] / _nGamma[c] ); |
| 192 | } |
| 193 | |
| 194 | double lin2log(double xLin, |
| 195 | int c) |
nothing calls this directly
no outgoing calls
no test coverage detected