!!****f* source/pathToUnits/MyUnit/MyUnit_foo2 !! !! NAME !! MyUnit_foo2 !! !! SYNOPSIS !! MyUnit_foo2(integer(in) :: exampleDummyArg, !! real(:),pointer :: examplePointerArg) !! !! DESCRIPTION !! !! Put the description of the MyUnit_foo2 here. !! !! !! ARGUMENTS !! !! exampleDummyArg - explain argument !! examplePointerArg - explain argument !! !! NOTES !! !! In this case, MyUnit_foo2 is just a stub, meaning !! that it is an empty implementation and does nothing. !! It is the stub for one of the public functions of MyUnit. !! An example in the Hydro unit would be function that calculates !! new a timestep if diffusion is turned on in Hydro. However, the !! documentation at this level should describe all the functionality !! including examples of input and output values if possible, since !! this is what shows up on the web. !! !!*** subroutine MyUnit_foo2 (exampleDummyArg, examplePointerArg) integer, intent(in) :: exampleDummyArg real,dimension(:),pointer :: examplePointerArg return end subroutine MyUnit_foo2