CommandLineOptions Derived Type

type, public :: CommandLineOptions


Inherits

type~~commandlineoptions~~InheritsGraph type~commandlineoptions CommandLineOptions StringVector StringVector type~commandlineoptions->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 :: nodes_oserver
integer, public :: npes_client
integer, public :: num_collection
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 :: nodes_oserver
      integer :: num_collection

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