2022-03-18 12:21:40 +01:00
|
|
|
program movebloubs
|
|
|
|
|
|
|
|
use bloubspace
|
|
|
|
implicit none
|
|
|
|
|
2022-03-20 14:25:05 +01:00
|
|
|
integer, parameter :: NB_MAX_BLOUBS = 2000000
|
2022-03-18 12:21:40 +01:00
|
|
|
|
|
|
|
! --------------------------------------------------------------
|
2022-03-20 14:25:05 +01:00
|
|
|
character(300) :: infile
|
2022-03-18 12:21:40 +01:00
|
|
|
integer :: errcode, i
|
|
|
|
integer :: nbgot
|
|
|
|
type(t_bloubs), dimension(:), allocatable :: bloubs
|
|
|
|
|
|
|
|
i = IARGC()
|
|
|
|
if (i .ne. 1) then
|
|
|
|
STOP ": BAD ARG ON COMMAND LINE"
|
|
|
|
endif
|
|
|
|
call getarg(1, infile)
|
|
|
|
|
|
|
|
write (0, '(A)') &
|
2022-03-20 14:25:05 +01:00
|
|
|
"*** listing bloubs from "//trim(infile)
|
2022-03-18 12:21:40 +01:00
|
|
|
|
|
|
|
allocate (bloubs(NB_MAX_BLOUBS), stat=errcode)
|
|
|
|
if (0 .NE. errcode) then
|
|
|
|
STOP " : NO ENOUGH MEMORY"
|
|
|
|
endif
|
|
|
|
do i = 1, NB_MAX_BLOUBS
|
|
|
|
bloubs(i)%alive = .FALSE.
|
|
|
|
enddo
|
|
|
|
|
|
|
|
call slurp_bloubs_file_in_array(trim(infile), bloubs, nbgot)
|
|
|
|
write(0, '(A,I6,1X,A)') "slurped ", nbgot, "bloubs"
|
|
|
|
|
|
|
|
do i=1,nbgot
|
2022-03-20 14:25:05 +01:00
|
|
|
write(6, '(A8, 1X, 1L, 1X, I2, 3X, F8.3, 3X, 3F8.3, 3X, 3F8.3, 1X, I4)') &
|
2022-03-18 12:21:40 +01:00
|
|
|
bloubs(i)%nick, bloubs(i)%alive, &
|
|
|
|
bloubs(i)%state, &
|
|
|
|
bloubs(i)%radius, &
|
|
|
|
bloubs(i)%px, bloubs(i)%py, bloubs(i)%pz, &
|
2022-03-20 14:25:05 +01:00
|
|
|
bloubs(i)%vx, bloubs(i)%vy, bloubs(i)%vz, &
|
|
|
|
bloubs(i)%age
|
2022-03-18 12:21:40 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
end program
|
|
|
|
|
|
|
|
! \o_
|