!!****f* source/pathToUnits/MyUnit/MyUnit_init !! !! NAME !! MyUnit_init !! !! SYNOPSIS !! MyUnit_init(integer(in) :: exampleDummyArg) !! !! DESCRIPTION !! !! Put the description of the MyUnit_init here. !! !! !! ARGUMENTS !! !! exampleDummyArg - explain argument !! !! NOTES !! !! The "_init" files for a unit take the place of the !! first_call in Flash2 routines !! MyUnit_init should be called only once !! from the driver to; (1) initialize all runtime parameters, !! (2) initialize other unit scope variables and (3) to do !! other one time tasks. !! !!*** subroutine MyUnit_init(exampleDummyArg) integer, intent(in) :: exampleDummyArg return end subroutine MyUnit_init