Example #1
0
 def plot_fit_hess(self, ax, fit_key, plane_key, imshow=None):
     plane = self.planes[plane_key]
     fit_hess = SimHess.from_sfh_solution(self.fits[fit_key], plane)
     return plot_hess(ax, fit_hess.hess, plane, fit_hess.origin,
                      imshow_args=imshow)
Example #2
0
 def make_fit_hess(self, fit_key, plane_key):
     plane = self.planes[plane_key]
     return SimHess.from_sfh_solution(self.fits[fit_key], plane)