encounter_final_storage Subroutine

public subroutine encounter_final_storage(self)

Deallocates allocatable arrays in an encounter snapshot

Arguments

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

Encounter storage object


Calls

proc~~encounter_final_storage~~CallsGraph proc~encounter_final_storage encounter_final_storage interface~encounter_util_dealloc_storage encounter_storage%encounter_util_dealloc_storage proc~encounter_final_storage->interface~encounter_util_dealloc_storage

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