-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change all fms2 fileobj instances to fms2io_fileobj #1327
Conversation
class(FmsNetcdfFile_t), INTENT(INOUT) :: fms2io_fileobj !< Fms2_io fileobj to write to | ||
character(len=*), INTENT(IN) :: varname !< Name of the variable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you should add these spaces to line up the comments because then YOU become the owner of those lines. I think you can remove the spaces between fms2io_fileobj
and !<
instead to make the comments line up.
@@ -742,7 +744,8 @@ subroutine fill_subaxis(this, starting_index, ending_index, axis_id, parent_id, | |||
integer , intent(in) :: starting_index !< Starting index of the subRegion for the PE | |||
integer , intent(in) :: ending_index !< Ending index of the subRegion for the PE | |||
integer , intent(in) :: axis_id !< Axis id to assign to the subaxis | |||
integer , intent(in) :: parent_id !< The id of the parent axis, the subaxis belongs to | |||
integer , intent(in) :: parent_id !< The id of the parent axis, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you modify this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line count issue most likely
subroutine write_axis_metadata(this, fms2io_fileobj, edges_in_file, parent_axis) | ||
class(fmsDiagAxis_type), target, INTENT(IN) :: this !< diag_axis obj | ||
class(FmsNetcdfFile_t), INTENT(INOUT) :: fms2io_fileobj !< Fms2_io fileobj to write the data to | ||
logical, INTENT(IN) :: edges_in_file !< .True. if the edges to this axis are | ||
!! already in the file | ||
class(fmsDiagAxis_type), OPTIONAL, target, INTENT(IN) :: parent_axis !< If the axis is a subaxis, axis | ||
!! object for the parent axis | ||
!! (this will be used to get some | ||
!! of the metadata info) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are there so many differences here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spacing, uriel told me I better keep everything looking pretty
easier to start over |
Description
The changes in this pr include changing all instances of the FmsNetcdfFile_t types named
fileobj
tofms2io_fileobj
Fixes # (issue)
How Has This Been Tested?
autotools with gcc/13.1.0 , netcdf/4.9.2, mpich/4.1.2 , hdf5/1.14.1-2 , libyaml/0.2.5
Checklist:
make distcheck
passes