Remove limit

This commit is contained in:
rstiskalek 2023-05-25 15:19:28 +01:00
parent 4eed5e1cc2
commit 10fdf6d40e

View File

@ -236,7 +236,7 @@ class NearestNeighbourReader:
# radial distance and then its nearest neighbour distance.
fpaths = self.paths.cross_nearest(simname, run)
if simname == "quijote":
fpaths = fpaths[:200] # TODO remove later.
fpaths = fpaths
out = numpy.zeros((self.nbins_radial, self.nbins_neighbour),
dtype=numpy.float32)
for fpath in tqdm(fpaths) if verbose else fpaths: