Skip to content
Snippets Groups Projects
Commit 48623e6e authored by Felix Metzner's avatar Felix Metzner
Browse files

Adding shape sys effect plotter for norm ff sys.

parent f753ba27
Branches
No related tags found
No related merge requests found
......@@ -1137,6 +1137,26 @@ class RDStarFitEvaluator:
yield from sys_shape_plotter.create_systematics_shape_plots(sys_shape_info=example_sys_shape_info)
def plot_more_sys_shape_effects(
self,
fit_status_container: RDStarFitStatusContainer,
) -> Generator[SpecificShapePlotInfoContainer, None, None]:
sys_shape_plotter: SystematicsShapePlotter = SystematicsShapePlotter(
base_output_dir_path=self.base_output_dir_path,
fit_setup=self.fit_setup,
)
fit_instance: RDStarFitter = fit_status_container.fitter_instance
example_sys_shape_info = ShapePlotInfoContainer(
name=RDStarFitter.full_systematics_container.add_sys__ff_norm.systematics_key,
latex_str=RDStarFitter.full_systematics_container.add_sys__ff_norm.latex_str,
normed_base_shape=fit_instance.template_shapes,
relative_shape_error=fit_instance.ff_norm_rel_shape_sys_uncert_matrix,
)
yield from sys_shape_plotter.create_systematics_shape_plots(sys_shape_info=example_sys_shape_info)
def dump_data_for_external_fitter(
self,
output_tag: str,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment