class tableParameter{
private:
string m_Name; // Parameter name
int m_InterpolationMethod; // 0==linear, 1==log,
// -1==additional (non-interp)
Real m_InitialValue; // Initial value for fit
Real m_Delta; // Delta for fit
Real m_Minimum; // Hard lower-limit
// (should correspond to first tabulated value)
Real m_Bottom; // Soft lower-limit
Real m_Top; // Soft upper-limit
Real m_Maximum; // Hard upper-limit
// (should correspond to last tabulated value)
vector<Real> m_TabulatedValues; // Tabulated parameter values