38#include "implicit_f.inc"
42 INTEGER ,
INTENT(IN) :: NUMTABL
43 TYPE(
table_4d_) ,
INTENT(IN) :: TABLE(NUMTABL)
47 INTEGER I,J,K,L,M,N,LEN,NPT,NDIM
49 my_real,
DIMENSION(:) ,
ALLOCATABLE :: ytmp
58 npt =
SIZE(table(n)%X(i)%VALUES)
60 CALL write_db(table(n)%X(i)%VALUES,npt)
68 ELSE IF (ndim == 2)
THEN
75 ytmp(m) = table(n)%Y2D(i,j)
79 ELSE IF (ndim == 3)
THEN
80 len = ldim(1)*ldim(2)*ldim(3)
87 ytmp(m) = table(n)%Y3D(i,j,k)
92 ELSE IF (ndim == 4)
THEN
93 len = ldim(1)*ldim(2)*ldim(3)*ldim(4)
101 ytmp(m) = table(n)%Y4D(i,j,k,l)
108 IF (
ALLOCATED(ytmp))
DEALLOCATE(ytmp)