!!****f* source/pathToUnits/MyUnit/MyUnitMain/Impl1/MyUnit_data !! !! NAME !! MyUnit_data !! !! SYNOPSIS !! use MyUnit_data !! !! !! NOTES !! !! This file contains all the common data needed by functions in !! MyUnit. This data includes the runtime parameters, the !! constants or any other data needed from other units in the code. !! All the data items are !! initialized by the function "MyUnit_init". !!*** Module MyUnit_data !list of runtime paramters needed by all the functions FlashMyUnit !these are examples integer, save :: mu_var1 real, save :: mu_var2,mu_var3 logical, save :: mu_var4 !list of physical parameters real, save :: mu_pi !add other variables here !list of local but MyUnit scope variables real, save : mu_var5 end Module MyUnit_data