Source code for lenstronomy.GalKin.observation

from lenstronomy.GalKin.aperture import Aperture
from lenstronomy.GalKin.psf import PSF

__all__ = ["GalkinObservation"]


[docs] class GalkinObservation(PSF, Aperture): """This class sets the base for the observational properties (aperture and seeing condition)"""
[docs] def __init__(self, kwargs_aperture, kwargs_psf): Aperture.__init__(self, **kwargs_aperture) PSF.__init__(self, **kwargs_psf)