[plotter] add particle scatter overlay

This commit is contained in:
Noe Brucy
2021-01-19 10:08:42 +01:00
parent 3ec31b7fd0
commit 2c1c690ba8
2 changed files with 32 additions and 0 deletions
+5
View File
@@ -213,6 +213,10 @@ class PostProcessor(HDF5Container):
self.path_out + "/cells_" + tag_name + format(num, "05") + ".h5"
)
self.parts_filename = (
self.path_out + "/parts_" + tag_name + format(num, "05") + ".h5"
)
self.pspec_filename = (
self.path_out + "/pspec_" + tag_name + format(num, "05") + ".h5"
)
@@ -1160,6 +1164,7 @@ class PostProcessor(HDF5Container):
"""Ensure particles are written in the hdf5 file"""
self.load_parts()
self.unload_parts()
return self.parts_filename
def _filaments(self):