From 4203eb76d6228e80e482e1316379ac628d31ae76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Fri, 11 Oct 2019 21:03:59 +0200 Subject: [PATCH] Remove unused methods --- starfit.cpp | 5 ----- starfit.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/starfit.cpp b/starfit.cpp index 197305a..2cffabe 100644 --- a/starfit.cpp +++ b/starfit.cpp @@ -243,11 +243,6 @@ StarFit::~StarFit() { } -Star StarFit::fitStar(RawImageAbs *image, const Peak &peak) -{ - -} - Star StarFit::fitStar(const std::vector &data, bool angle) { gsl_multifit_nlinear_fdf *fdf = angle ? &m_fdf_an : &m_fdf; diff --git a/starfit.h b/starfit.h index f6ac288..8bde7e6 100644 --- a/starfit.h +++ b/starfit.h @@ -33,9 +33,7 @@ class StarFit public: StarFit(int size); ~StarFit(); - Star fitStar(RawImageAbs *image, const Peak &peak); Star fitStar(const std::vector &data, bool angle); - //void fitStars(RawImageAbs *image, const std::vector &peaks); }; #endif // STARFIT_H