Definition at line 330 of file mod_ncll.f90.
◆ print_ncf_dim_list()
subroutine mod_ncll::print_dim_list::print_ncf_dim_list |
( |
type(ncfile), intent(in) |
LIST | ) |
|
Definition at line 3440 of file mod_ncll.f90.
3441 type(NCFILE),
intent(IN) :: LIST
3442 TYPE(NCDIMP),
POINTER :: CURRENT, PREVIOUS
3444 Character(len=4) :: chr
3446 previous => list%DIMS
3447 current => previous%NEXT
3449 IF(.NOT.
ASSOCIATED(current))
THEN 3450 if(dbg_set(dbg_log)) &
3451 &
write(ipt,*)
"%%%%%%%%%%% FILE DIMENSION LIST IS EMPTY %%%%%%%%%%%%%" 3454 if(dbg_set(dbg_log))
then 3455 write(ipt,*)
"%%%%%%% PRINTING FILE DIMENSION LIST %%%%%%%%%" 3456 write(ipt,*)
"%%%%%%% FILE NAME: "//trim(list%FNAME)//
" %%%%%%%%%" 3462 IF(.NOT.
ASSOCIATED(current))
EXIT 3464 write(chr,
'(I4.4)')cnt
3465 if(dbg_set(dbg_log)) &
3466 &
write(ipt,*)
"! PRINTING DIMENSION LIST ENTRY #"//chr
3467 CALL print_dim(current%DIM)
3469 previous => previous%NEXT
3470 current => current%NEXT
3472 if(dbg_set(dbg_log)) &
3473 &
write(ipt,*)
"%%%%%%%%%%% END OF DIMENSION LIST %%%%%%%%%%%%%"
◆ print_var_dim_list()
subroutine mod_ncll::print_dim_list::print_var_dim_list |
( |
type(ncvar), intent(in) |
LIST | ) |
|
Definition at line 3478 of file mod_ncll.f90.
3479 type(NCVAR),
intent(IN) :: LIST
3480 TYPE(NCDIMP) ,
POINTER :: CURRENT, PREVIOUS
3482 Character(len=4) :: chr
3484 previous => list%DIMS
3485 current => previous%NEXT
3487 IF(.NOT.
ASSOCIATED(current))
THEN 3488 if(dbg_set(dbg_log)) &
3489 &
write(ipt,*)
"%%%%%%%%%%% VARIABLE DIMENSION LIST IS EMPTY %%%%%%%%%%%%%" 3492 if(dbg_set(dbg_log)) &
3493 &
write(ipt,*)
"%%%%%%% PRINTING VARIABLE: "//trim(list&
3494 &%VARNAME)//
"; DIMENSION LIST %%%%%%%%%" 3499 IF(.NOT.
ASSOCIATED(current))
EXIT 3501 write(chr,
'(I4.4)')cnt
3502 if(dbg_set(dbg_log)) &
3503 &
write(ipt,*)
"! PRINTING DIMENSION LIST ENTRY #"//chr
3504 CALL print_dim(current%DIM)
3506 previous => previous%NEXT
3507 current => current%NEXT
3509 if(dbg_set(dbg_log)) &
3510 &
write(ipt,*)
"%%%%%%%%%%% END OF DIMENSION LIST %%%%%%%%%%%%%"
The documentation for this interface was generated from the following file: