diff --git a/autolens/imaging/plot/fit_imaging_plots.py b/autolens/imaging/plot/fit_imaging_plots.py index 22e5cca70..1568da8c3 100644 --- a/autolens/imaging/plot/fit_imaging_plots.py +++ b/autolens/imaging/plot/fit_imaging_plots.py @@ -991,6 +991,28 @@ def subplot_fit_combined( save_figure(fig, path=output_path, filename="fit_combined", format=output_format) +def subplot_fit_combined_quick( + fit_list: List, + output_path: Optional[str] = None, + output_format: str = None, + colormap: Optional[str] = None, + title_prefix: str = None, +): + """ + Placeholder quick-update subplot for combined multi-dataset imaging fits. + + Currently delegates to :func:`subplot_fit_combined` but writes + ``fit_quick.png`` so the live display picks it up. + """ + subplot_fit_combined( + fit_list, + output_path=output_path, + output_format=output_format, + colormap=colormap, + title_prefix=title_prefix, + ) + + def subplot_fit_combined_log10( fit_list: List, output_path: Optional[str] = None, diff --git a/autolens/weak/plot/fit_weak_plots.py b/autolens/weak/plot/fit_weak_plots.py index 875b6684f..74b8c8a17 100644 --- a/autolens/weak/plot/fit_weak_plots.py +++ b/autolens/weak/plot/fit_weak_plots.py @@ -160,6 +160,27 @@ def plot_chi_squared_map( ) +def subplot_fit_quick( + fit, + output_path: Optional[str] = None, + output_format: Optional[str] = None, + title_prefix: Optional[str] = None, +): + """ + Placeholder quick-update subplot for a ``FitWeak``. + + Currently delegates to the full ``subplot_fit_weak``. Will be + replaced with a lighter-weight render in future. + """ + subplot_fit_weak( + fit, + output_path=output_path, + output_filename="fit_quick", + output_format=output_format, + title_prefix=title_prefix, + ) + + def subplot_fit_weak( fit, output_path: Optional[str] = None,