rmvs_final_cb Subroutine

public subroutine rmvs_final_cb(self)

Finalize the RMVS massive body object - deallocates all allocatables

Arguments

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

RMVS central body object


Calls

proc~~rmvs_final_cb~~CallsGraph proc~rmvs_final_cb rmvs_final_cb interface~rmvs_util_dealloc_cb rmvs_cb%rmvs_util_dealloc_cb proc~rmvs_final_cb->interface~rmvs_util_dealloc_cb

Source Code

      subroutine rmvs_final_cb(self)
         !! author: David A. Minton
         !!
         !! Finalize the RMVS massive body object - deallocates all allocatables
         implicit none
         ! Arguments
         type(rmvs_cb),  intent(inout) :: self 
            !! RMVS central body object
         call self%dealloc()
         return
      end subroutine rmvs_final_cb