diff --git a/menu_tools/rate_plots/plotter.py b/menu_tools/rate_plots/plotter.py index 78dc2e84..05902b50 100644 --- a/menu_tools/rate_plots/plotter.py +++ b/menu_tools/rate_plots/plotter.py @@ -180,7 +180,7 @@ def _load_cached_arrays(self): # Apply scalings if so configured if self.apply_offline_conversion: arr = scalings.add_offline_pt(arr, self.object) - arr["pt"] = scalings.get_pt_branch[arr] + arr["pt"] = scalings.get_pt_branch(arr) return arr @@ -298,5 +298,5 @@ def run(self, apply_offline_conversion: bool = False) -> None: args = parser.parse_args() plotter = RatePlotCentral(args.cfg_plots) - plotter.run() plotter.run(apply_offline_conversion=True) + plotter.run()