copy%om_c = orig%om_c
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(localisation_vars), | intent(in) | :: | orig | |||
type(localisation_vars), | intent(out) | :: | copy |
subroutine wann_spread_copy(orig, copy)
!==================================================================!
! !
!==================================================================!
implicit none
type(localisation_vars), intent(in) :: orig
type(localisation_vars), intent(out) :: copy
copy%om_i = orig%om_i
copy%om_d = orig%om_d
copy%om_od = orig%om_od
copy%om_tot = orig%om_tot
copy%om_iod = orig%om_iod
copy%om_nu = orig%om_nu
!! copy%om_c = orig%om_c
!~ copy%om_1 = orig%om_1
!~ copy%om_2 = orig%om_2
!~ copy%om_3 = orig%om_3
return
end subroutine wann_spread_copy