These are just a few lines for reading in our files with a FORTRAN-code.
np is the number of particles, i.e., either 1283 or
2563.
open(78,file='particles_001_xxx',form='unformatted',access='direct',recl=32)
do ii=1,np
read(78,rec=ii)coor(1,ii),coor(2,ii),coor(3,ii),coor(4,ii),
coor(5,ii),coor(6,ii),pmassa(ii),tag(ii)
enddo
close(78)