!!****f* source/pathToUnits/MyUnit/MyUnit_finalize !! !! NAME !! MyUnit_finalize !! !! SYNOPSIS !! MyUnit_finalize(integer(in) :: exampleDummyArg) !! !! DESCRIPTION !! !! Put the description of the MyUnit_finalize here. !! !! !! ARGUMENTS !! !! exampleDummyArg - explain argument !! !! NOTES !! !! The "_finalize" files for a unit are called at program !! end. They typically deallocate storage created during the !! initialization process. They might also write final !! information to the Logfile. !! !!*** subroutine MyUnit_finalize(exampleDummyArg) integer, intent(in) :: exampleDummyArg return end subroutine MyUnit_finalize