hvs_vtk_config_load Subroutine

public subroutine hvs_vtk_config_load(me, conf, thandle)

Read the VTK output configuration from a Lua script.

Arguments

Type IntentOptional Attributes Name
type(hvs_vtk_config_type), intent(out) :: me

The VTK configuration settings to fill.

type(flu_State) :: conf

Handle of the Lua script to load the configuration from.

integer, intent(in) :: thandle

Table handle to the table providing the VTK settings.


Calls

proc~~hvs_vtk_config_load~~CallsGraph proc~hvs_vtk_config_load hvs_vtk_config_load proc~tem_abort tem_abort proc~hvs_vtk_config_load->proc~tem_abort mpi_abort mpi_abort proc~tem_abort->mpi_abort

Called by

proc~~hvs_vtk_config_load~~CalledByGraph proc~hvs_vtk_config_load hvs_vtk_config_load proc~hvs_output_load hvs_output_load proc~hvs_output_load->proc~hvs_vtk_config_load proc~tem_load_trackingconfig tem_load_trackingConfig proc~tem_load_trackingconfig->proc~hvs_output_load proc~tem_load_tracking tem_load_tracking proc~tem_load_tracking->proc~tem_load_trackingconfig

Contents

Source Code


Source Code

  subroutine hvs_vtk_config_load(me, conf, thandle)
    !> The VTK configuration settings to fill.
    type(hvs_vtk_config_type), intent(out) :: me

    !> Handle of the Lua script to load the configuration from.
    type(flu_state) :: conf

    !> Table handle to the table providing the VTK settings.
    integer, intent(in) :: thandle
    ! ----------------------------------------------------------------------!
    write(logUnit(0),*) 'Using dummy hvs_vtk_config_load because'
    write(logUnit(0),*) 'Executable is configured with --no_vtk'
    call tem_abort()

  end subroutine hvs_vtk_config_load