remove OTF memory allocation from WMP

This commit is contained in:
Gavin Ridley 2021-01-07 15:43:32 -05:00
parent 66d76429a8
commit caecb84c38
2 changed files with 12 additions and 1 deletions

View file

@ -70,6 +70,10 @@ public:
xt::xtensor<int, 2> windows_; //!< Indices of pole at start/end of window
xt::xtensor<double, 3> curvefit_; //!< Fitting function (reaction, coeff index, window index)
xt::xtensor<bool, 1> broaden_poly_; //!< Whether to broaden curvefit
// Constant data
static constexpr int MAX_POLY_COEFFICIENTS =
10; //!< Max order of polynomial fit plus one
};
//========================================================================