Definition at line 51 of file MOM_hor_index.F90.
◆ hit_assign()
HIT_assign copies one hor_index_type into another. It is accessed via an assignment (=) operator.
- Parameters
-
[out] | hi1 | Horizontal index type to copy to |
[in] | hi2 | Horizontal index type to copy from |
Definition at line 95 of file MOM_hor_index.F90.
95 type(hor_index_type),
intent(out) :: hi1
96 type(hor_index_type),
intent(in) :: hi2
100 hi1%isc = hi2%isc ; hi1%iec = hi2%iec ; hi1%jsc = hi2%jsc ; hi1%jec = hi2%jec
101 hi1%isd = hi2%isd ; hi1%ied = hi2%ied ; hi1%jsd = hi2%jsd ; hi1%jed = hi2%jed
102 hi1%isg = hi2%isg ; hi1%ieg = hi2%ieg ; hi1%jsg = hi2%jsg ; hi1%jeg = hi2%jeg
104 hi1%IscB = hi2%IscB ; hi1%IecB = hi2%IecB ; hi1%JscB = hi2%JscB ; hi1%JecB = hi2%JecB
105 hi1%IsdB = hi2%IsdB ; hi1%IedB = hi2%IedB ; hi1%JsdB = hi2%JsdB ; hi1%JedB = hi2%JedB
106 hi1%IsgB = hi2%IsgB ; hi1%IegB = hi2%IegB ; hi1%JsgB = hi2%JsgB ; hi1%JegB = hi2%JegB
108 hi1%idg_offset = hi2%idg_offset ; hi1%jdg_offset = hi2%jdg_offset
109 hi1%symmetric = hi2%symmetric
The documentation for this interface was generated from the following file:
- /home/adcroft/GitHub/workspace/Gaea-stats-MOM6-examples/MOM6-examples/src/MOM6/src/framework/MOM_hor_index.F90