Lagpatch example

This commit is contained in:
rstiskalek 2024-09-16 12:39:49 +01:00
parent 9c1aa26428
commit 3b4c32786c
3 changed files with 214 additions and 2 deletions

View File

@ -13,5 +13,5 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
from .overlap import (ParticleOverlap, RealisationsMatcher, calculate_overlap, # noqa
find_neighbour, matching_max) # noqa
find_neighbour, matching_max, pos2cell) # noqa
from .obs_to_box import (MatchingProbability, MatchCatalogues) # noqa

View File

@ -454,7 +454,7 @@ class ParticleOverlap(BaseMatcher):
mass2 : 1-dimensional array
Particle masses of the second halo.
mins1, maxs1 : 1-dimensional arrays of shape `(3,)`
Minimun and maximum cell numbers along each dimension of `halo1`.
Minimum and maximum cell numbers along each dimension of `halo1`.
Optional.
mins2, maxs2 : 1-dimensional arrays of shape `(3,)`
Minimum and maximum cell numbers along each dimension of `halo2`.

File diff suppressed because one or more lines are too long