rmvs_final_tp Subroutine

public subroutine rmvs_final_tp(self)

Finalize the RMVS test particle object - deallocates all allocatables

Arguments

Type IntentOptional Attributes Name
type(rmvs_tp), intent(inout) :: self

RMVS test particle object


Calls

proc~~rmvs_final_tp~~CallsGraph proc~rmvs_final_tp rmvs_final_tp interface~rmvs_util_dealloc_tp rmvs_tp%rmvs_util_dealloc_tp proc~rmvs_final_tp->interface~rmvs_util_dealloc_tp

Source Code

      subroutine rmvs_final_tp(self)
         !! author: David A. Minton
         !!
         !! Finalize the RMVS test particle object - deallocates all allocatables
         implicit none
         ! Arguments
         type(rmvs_tp),  intent(inout) :: self 
            !! RMVS test particle object
         call self%dealloc()
         return
      end subroutine rmvs_final_tp