Remove unused methods

This commit is contained in:
2019-10-11 21:03:59 +02:00
parent 485697a0b2
commit 4203eb76d6
2 changed files with 0 additions and 7 deletions
-5
View File
@@ -243,11 +243,6 @@ StarFit::~StarFit()
{
}
Star StarFit::fitStar(RawImageAbs *image, const Peak &peak)
{
}
Star StarFit::fitStar(const std::vector<double> &data, bool angle)
{
gsl_multifit_nlinear_fdf *fdf = angle ? &m_fdf_an : &m_fdf;
-2
View File
@@ -33,9 +33,7 @@ class StarFit
public:
StarFit(int size);
~StarFit();
Star fitStar(RawImageAbs *image, const Peak &peak);
Star fitStar(const std::vector<double> &data, bool angle);
//void fitStars(RawImageAbs *image, const std::vector<Peak> &peaks);
};
#endif // STARFIT_H