Deallocates allocatable arrays in an encounter snapshot
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(encounter_storage), | intent(inout) | :: | self | Encounter storage object |
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