da_deallocate_global_sonde_sfc.inc

References to this file elsewhere.
1 subroutine da_deallocate_global_sonde_sfc(iv_glob, re_glob, jo_grad_y_glob)
2 
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
6 
7    implicit none
8 
9    type (iv_type), intent(inout) :: iv_glob        ! Innovation vector
10    type (y_type),  intent(inout) :: re_glob        ! residual vector
11    type (y_type),  intent(inout) :: jo_grad_y_glob ! Grad_y(Jo)
12 
13    if (trace_use_dull) call da_trace_entry("da_deallocate_global_sonde_sfc")
14 
15    deallocate(iv_glob%sonde_sfc)
16    deallocate(re_glob%sonde_sfc)
17    deallocate(jo_grad_y_glob%sonde_sfc)
18 
19    if (trace_use_dull) call da_trace_exit("da_deallocate_global_sonde_sfc")
20    
21 end subroutine da_deallocate_global_sonde_sfc
22 
23