[Dart-dev] DART/branches Revision: 10744

dart at ucar.edu dart at ucar.edu
Mon Nov 14 07:44:23 MST 2016


hendric at ucar.edu
2016-11-14 07:44:23 -0700 (Mon, 14 Nov 2016)
34
adding comments from code review.



Modified: DART/branches/rma_fixed_filenames/io/io_filenames_mod.f90
===================================================================
--- DART/branches/rma_fixed_filenames/io/io_filenames_mod.f90	2016-11-11 21:08:40 UTC (rev 10743)
+++ DART/branches/rma_fixed_filenames/io/io_filenames_mod.f90	2016-11-14 14:44:23 UTC (rev 10744)
@@ -117,10 +117,15 @@
 ! File info type is public so the restart names can be passed to read and write routines
 ! using, for example, file_info_type%restart_files_out_prior
 type file_info_type
-   type(file_options_type) :: options
+   type(file_options_type) :: options !>todo FIXME JPH : all options inline
 
-   type(restart_names_type) :: restart_files_in
-   type(restart_names_type) :: restart_files_out_prior
+   type(restart_names_type) :: restart_files_in !>todo FIXME ?:: only have one
+                                                !> file list and have multiple
+                                                !> and multiple file_info_types
+                                                !> for input, output, preassim,
+                                                !> postassim
+   type(restart_names_type) :: restart_files_out_prior ! JPH preassim
+   !type(restart_names_type) :: restart_files_out_postassim !JPH
    type(restart_names_type) :: restart_files_out
 
 end type


More information about the Dart-dev mailing list