41#include "implicit_f.inc"
45 INTEGER ,
INTENT(IN) :: NUMTABL
46 TYPE(
table_4d_) ,
INTENT(IN) :: TABLE(NUMTABL)
50 INTEGER I,J,K,L,M,N,LEN,NPT,NDIM
52 my_real,
DIMENSION(:) ,
ALLOCATABLE :: ytmp
57 IF (table(n)%NOTABLE <= 0) cycle
61 npt =
SIZE(table(n)%X(i)%VALUES)
63 CALL write_db(table(n)%X(i)%VALUES,npt)
71 ELSE IF (ndim == 2)
THEN
78 ytmp(m) = table(n)%Y2D(i,j)
82 ELSE IF (ndim == 3)
THEN
83 len = ldim(1)*ldim(2)*ldim(3)
90 ytmp(m) = table(n)%Y3D(i,j,k)
95 ELSE IF (ndim == 4)
THEN
96 len = ldim(1)*ldim(2)*ldim(3)*ldim(4)
104 ytmp(m) = table(n)%Y4D(i,j,k,l)
111 IF (
ALLOCATED(ytmp))
DEALLOCATE(ytmp)