!!****f* source/pathToUnits/MyUnit/MyUnit !! !! NAME !! MyUnit !! !! SYNOPSIS !! MyUnit(integer(in) :: exampleDummyArg, !! real(out) :: anotherDummyArg) !! !! DESCRIPTION !! !! Put the description of the MyUnit here. !! !! !! ARGUMENTS !! !! exampleDummyArg - explain argument !! anotherDummyArg - explain argument !! !! EXAMPLE !! Give an example of the routine usage !! !! NOTES !! !! In this case, MyUnit is just a stub, meaning !! that it is an empty implementation and does nothing. !! This file is the stub for the main driver of MyUnit, !! for example Hydro.F90 is the main driver for the Hydro unit !! !!*** subroutine MyUnit (exampleDummyArg, anotherDummyArg) integer, intent(in) :: exampleDummyArg real, intent(out) :: anotherDummyArg anotherDummyArg = validDefaultValue return end subroutine MyUnit