whm_final_system Subroutine

public subroutine whm_final_system(self)

Finalize the WHM nbody system object - deallocates all allocatables

Arguments

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

WHM nbody system object


Calls

proc~~whm_final_system~~CallsGraph proc~whm_final_system whm_final_system interface~swiftest_util_dealloc_system swiftest_nbody_system%swiftest_util_dealloc_system proc~whm_final_system->interface~swiftest_util_dealloc_system

Source Code

      subroutine whm_final_system(self)
         !! author: David A. Minton
         !!
         !! Finalize the WHM nbody system object - deallocates all allocatables
         implicit none
         ! Arguments
         type(whm_nbody_system),  intent(inout) :: self 
            !! WHM nbody system object
         call self%dealloc()
         return
      end subroutine whm_final_system