[postprocessor] add rule for radial sigma and 2D pwspec

This commit is contained in:
Noe Brucy
2021-04-26 15:33:24 +02:00
parent e99929b06c
commit 31bc3cc209
2 changed files with 89 additions and 1 deletions
+11
View File
@@ -1689,6 +1689,17 @@ class Plotter(Aggregator, BaseProcessor):
dependencies=["radial_centers", "rad_mwavg_" + name],
)
self.rules["dispersion_rad_" + name] = PlotRule(
self,
partial(
self._plot,
"/radial/radial_centers",
"/radial/dispersion_rad_" + name,
),
"Radial dispersion of {}".format(name),
dependencies=["radial_centers", "dispersion_rad_" + name],
)
self.rules["avg_map_" + name] = PlotRule(
self,
partial(self._plot_map, "avg_map_" + name),