encounter_final_bounding_box Subroutine

public subroutine encounter_final_bounding_box(self)

Finalize the bounding box object

Arguments

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

Contents


Source Code

      subroutine encounter_final_bounding_box(self)
         !! author: David A. Minton
         !!
         !! Finalize the bounding box object
         implicit none
         ! Arguments
         type(encounter_bounding_box), intent(inout) :: self

         call self%dealloc()

         return
      end subroutine encounter_final_bounding_box