We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc602c commit 6447dd4Copy full SHA for 6447dd4
yt/frontends/rockstar/data_structures.py
@@ -59,6 +59,10 @@ def _read_member(
59
60
with open(self.filename, "rb") as f:
61
f.seek(ipos, os.SEEK_SET)
62
+ print(
63
+ f"Reading {self._Npart[ind_halo]} particles for halo {ihalo}. position={f.tell()}"
64
+ )
65
+ # assert False
66
ids = np.fromfile(f, dtype=np.int64, count=self._Npart[ind_halo])
67
return ids
68
0 commit comments