Finalizes object and frees memeory.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(h5hut_obj), | intent(inout) | :: | this |
A H5hut object |
impure subroutine h5hut_obj_Final(this) !> Finalizes object and frees memeory. implicit none class(h5hut_obj), intent(inout) :: this !! A H5hut object ! Close file call this%hdf5%Close() ! Finalize internal objects call this%hdf5%Finalize() ! Nullify pointers this%parallel => null() return end subroutine h5hut_obj_Final