Here is a minimal error case. What am I doing wrong?
Pastebin for input b/c I cannot attach a file: ccfn2422-900K-40A.mdmc.sro.out - Pastebin.com
ahengst@EN4232825UL:~/.../02-mc-swap$ python3
Python 3.10.12 (main, Nov 6 2024, 20:22:13) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ovito
>>> data = ovito.io.import_file('ccfn2422-900K-40A.mdmc.sro.out').compute()
>>> finder = ovito.data.CutoffNeighborFinder(3.0, data)
>>> neighbors = list(finder.find(1))
>>> print([n.index for n in neighbors])
[18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615, 18446744073709551615]