Skip to content

Commit

Permalink
Whitespace and comment fixes. mom-ocean#334.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Hannah committed Nov 2, 2016
1 parent 7bb14ed commit 1057172
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/framework/MOM_diag_mediator.F90
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ subroutine set_axes_info(G, GV, param_file, diag_cs, set_vertical)
call diag_remap_set_vertical_axes(diag_cs%diag_remap_cs(i), G, GV, param_file)
! This fetches the 1D-axis id for layers and interfaces and overwrite id_zl and id_zi from above
nz = diag_remap_get_nz(diag_cs%diag_remap_cs(i))
if (nz>0) then ! This coordinate was defined

! If nz > 0 this vertical coordinate has been configured so can be used.
if (nz>0) then
call diag_remap_get_vertical_ids(diag_cs%diag_remap_cs(i), id_zL, id_zi)
! Axes for z layers
call define_axes_group(diag_cs, (/ id_xh, id_yh, id_zL /), diag_cs%remap_axesTL(i), &
Expand Down

0 comments on commit 1057172

Please sign in to comment.