encounter_final_storage Subroutine

public subroutine encounter_final_storage(self)

Deallocates allocatable arrays in an encounter snapshot

Arguments

TypeIntentOptionalAttributesName
type(encounter_storage), intent(inout) :: self

Encounter storage object


Contents


Source Code

      subroutine encounter_final_storage(self)
         !! author: David A. Minton
         !!
         !! Deallocates allocatable arrays in an encounter snapshot
         implicit none
         ! Arguments
         type(encounter_storage),  intent(inout) :: self 
         !! Encounter storage object

         call self%dealloc()

         return
      end subroutine encounter_final_storage