CommandLineOptions Derived Type

type, public :: CommandLineOptions


Inherits

type~~commandlineoptions~3~~InheritsGraph type~commandlineoptions~3 CommandLineOptions StringVector StringVector type~commandlineoptions~3->StringVector requested_variables

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: file_1
character(len=:), public, allocatable :: file_2
character(len=:), public, allocatable :: server_type
integer, public :: npes_client
integer, public :: npes_server
logical, public :: debug
type(StringVector), public :: requested_variables

Source Code

   type CommandLineOptions
      character(len=:), allocatable :: file_1, file_2
      type (StringVector) :: requested_variables

      integer :: npes_client
      integer :: npes_server
      logical :: debug
      character(len=:),allocatable :: server_type ! 'mpi' or 'openmp'
   end type CommandLineOptions