@brief Compute ESP charges fitted by modified Merz-Kollman method @details This is a C interface for a Fortran subroutine
@param[in] c_handle OQP handle @author Vladimir Mironov @date Mar, 2023 Initial release
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(oqp_handle_t) | :: | c_handle |
subroutine resp_charges_C(c_handle) bind(C, name="resp_charges") use c_interop, only: oqp_handle_t, oqp_handle_get_info, oqp_handle_refresh_ptr use strings, only: Cstring use types, only: information type(oqp_handle_t) :: c_handle type(information), pointer :: inf inf => oqp_handle_get_info(c_handle) call oqp_resp_charges(inf) end subroutine resp_charges_C