@@ -81,20 +81,20 @@ def __init__(
8181 self .run_time_dict = run_time_dict
8282
8383 @property
84- def convolver (self ) -> Optional [aa .Convolver ]:
84+ def psf (self ) -> Optional [aa .Kernel2D ]:
8585 """
86- Returns the convolver of the imaging dataset, if the inversion is performed on an imaging dataset.
86+ Returns the PSF of the imaging dataset, if the inversion is performed on an imaging dataset.
8787
8888 The `GalaxiesToInversion` class acts as an interface between the dataset and inversion module for
89- both imaging and interferometer datasets. Only imaging datasets have a convolver , thus this property
90- ensures that for an interferometer dataset code which references a convolver does not raise an error.
89+ both imaging and interferometer datasets. Only imaging datasets have a PSF , thus this property
90+ ensures that for an interferometer dataset code which references a PSF does not raise an error.
9191
9292 Returns
9393 -------
94- The convolver of the imaging dataset, if it is an imaging dataset.
94+ The psf of the imaging dataset, if it is an imaging dataset.
9595 """
9696 try :
97- return self .dataset .convolver
97+ return self .dataset .psf
9898 except AttributeError :
9999 return None
100100
@@ -310,7 +310,7 @@ def cls_light_profile_func_list_galaxy_dict_from(
310310 lp_linear_func = LightProfileLinearObjFuncList (
311311 grid = self .dataset .grids .lp ,
312312 blurring_grid = self .dataset .grids .blurring ,
313- convolver = self .dataset .convolver ,
313+ psf = self .dataset .psf ,
314314 light_profile_list = light_profile_list ,
315315 regularization = light_profile .regularization ,
316316 )
0 commit comments