Skip to content

Commit

Permalink
Remove reference to astropy in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Dries Van De Putte committed Jan 23, 2024
1 parent 8e975b3 commit 075b514
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pahfit/fitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ class Fitter(ABC):
implementation to set up the Fitter. The Model has access to the
Features table and the instrument model, and needs to set up Fitter
with the correct initial values, bounds, and "fixed" flags (e.g.
setting a fixed FWHM based on the instrument for the lines). After
all the components have been added, the finalize_model() function
can be called to finish setting up the internal astropy model. After
this has finished, fit() can be called to apply the model and the
astropy fitter to the data.
setting a fixed FWHM based on the instrument for the lines).
After all the components have been added, the finalize_model()
function can be called to combine all the features into one model (a
potentially expensive operation, so we have a single
finalize_model() call following potentially many register_*()
calls). After this has finished, fit() can be called to apply the
underlying model and fitter implementation to the data.
"""

Expand Down

0 comments on commit 075b514

Please sign in to comment.