Ignore:
Timestamp:
Mar 3, 2021 4:10:18 PM (4 years ago)
Author:
raasch
Message:

small re-formatting to follow the coding standard, typo in file appendix removed, more meaningful variable names assigned, redundant code removed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/init_masks.f90

    r4895 r4896  
    2424! -----------------
    2525! $Id$
     26! small re-formatting to follow the coding standard
     27!
     28! 4895 2021-03-03 15:39:08Z suehring
    2629! Allow only mask_k_over_surface >= 1 for terrain-following mask output
    2730!
     
    159162    DO  mid = 1, masks
    160163
    161        do_mask     (mid,:) = data_output_masks(mid,:)
     164       do_mask(mid,:)      = data_output_masks(mid,:)
    162165       do_mask_user(mid,:) = data_output_masks_user(mid,:)
    163        mask      (mid,1,:) = mask_x(mid,:)
    164        mask      (mid,2,:) = mask_y(mid,:)
    165        mask      (mid,3,:) = mask_z(mid,:)
     166
     167       mask(mid,1,:) = mask_x(mid,:)
     168       mask(mid,2,:) = mask_y(mid,:)
     169       mask(mid,3,:) = mask_z(mid,:)
    166170!
    167171!--    Flag a mask as terrain following
Note: See TracChangeset for help on using the changeset viewer.