From 74a956dc7cd39df11ccd299ecf8eb3fcd2f72586 Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Mon, 25 Oct 2021 17:37:02 +0200 Subject: [PATCH] [plotter] add plot_run generic routine --- plotter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plotter.py b/plotter.py index a201815..8fcd668 100644 --- a/plotter.py +++ b/plotter.py @@ -1358,6 +1358,9 @@ class Plotter(Aggregator, BaseProcessor): "plot": PlotRule( self, lambda arg, **kwargs: self._plot(*arg, **kwargs), kind="comp" ), + "plot_run": PlotRule( + self, lambda arg, **kwargs: self._plot(*arg, **kwargs), kind="run" + ), "plot_snapshot": PlotRule( self, lambda arg, **kwargs: self._plot(*arg, **kwargs) ),