Skip to content

Commit

Permalink
Update fms_diag_reduction_methods.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
ganganoaa authored Jul 24, 2023
1 parent 731486b commit 151c992
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions diag_manager/fms_diag_reduction_methods.F90
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,12 @@ subroutine fms_diag_update_extremum(flag, buffer_obj, field_data, recon_bounds,
class(*), pointer :: ptr_buffer(:,:,:,:,:) !< Pointer to 5D buffer for remapping

!> Unpack recon_bounds
is = recon_bounds%bounds3D%get_imin()
js = recon_bounds%bounds3D%get_jmin()
ks = recon_bounds%bounds3D%get_kmin()
ie = recon_bounds%bounds3D%get_imax()
je = recon_bounds%bounds3D%get_jmax()
ke = recon_bounds%bounds3D%get_kmax()
is = recon_bounds%get_bounds3D()%get_imin()
js = recon_bounds%get_bounds3D()%get_jmin()
ks = recon_bounds%get_bounds3D()%get_kmin()
ie = recon_bounds%get_bounds3D()%get_imax()
je = recon_bounds%get_bounds3D()%get_jmax()
ke = recon_bounds%get_bounds3D()%get_kmax()
hi = recon_bounds%get_hi()
f1 = recon_bounds%get_fis()
f2 = recon_bounds%get_fie()
Expand Down Expand Up @@ -437,12 +437,12 @@ subroutine update_scalar_extremum(flag, field_data, buffer, mask, sample, recon_
k1 = running_indx2(3)

!> Unpack bounds (/is, js, ks, ie, je, ke, hi, f1, f2, hj, f3, f4/)
is = recon_bounds%bounds3D%get_imin()
js = recon_bounds%bounds3D%get_jmin()
ks = recon_bounds%bounds3D%get_kmin()
ie = recon_bounds%bounds3D%get_imax()
je = recon_bounds%bounds3D%get_jmax()
ke = recon_bounds%bounds3D%get_kmax()
is = recon_bounds%get_bounds3D()%get_imin()
js = recon_bounds%get_bounds3D()%get_jmin()
ks = recon_bounds%get_bounds3D()%get_kmin()
ie = recon_bounds%get_bounds3D()%get_imax()
je = recon_bounds%get_bounds3D()%get_jmax()
ke = recon_bounds%get_bounds3D()%get_kmax()
hi = recon_bounds%get_hi()
hj = recon_bounds%get_hj()

Expand Down Expand Up @@ -548,12 +548,12 @@ subroutine update_array_extremum(flag, field_data, buffer, mask, sample, recon_b
integer :: f3, f4 !< Updated starting and ending indices in the J dimension

!> Unpack bounds (/is, js, ks, ie, je, ke, hi, f1, f2, hj, f3, f4/)
is = recon_bounds%bounds3D%get_imin()
js = recon_bounds%bounds3D%get_jmin()
ks = recon_bounds%bounds3D%get_kmin()
ie = recon_bounds%bounds3D%get_imax()
je = recon_bounds%bounds3D%get_jmax()
ke = recon_bounds%bounds3D%get_kmax()
is = recon_bounds%get_bounds3D()%get_imin()
js = recon_bounds%get_bounds3D()%get_jmin()
ks = recon_bounds%get_bounds3D()%get_kmin()
ie = recon_bounds%get_bounds3D()%get_imax()
je = recon_bounds%get_bounds3D()%get_jmax()
ke = recon_bounds%get_bounds3D()%get_kmax()
hi = recon_bounds%get_hi()
f1 = recon_bounds%get_fis()
f2 = recon_bounds%get_fie()
Expand Down

0 comments on commit 151c992

Please sign in to comment.