| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=:), | public, | allocatable | :: | file_1 | |||
| character(len=:), | public, | allocatable | :: | file_2 | |||
| integer, | public | :: | comm | ||||
| integer, | public | :: | nlat | ||||
| integer, | public | :: | nlon | ||||
| integer, | public | :: | npes | ||||
| integer, | public | :: | rank | ||||
| type(ClientThread), | public | :: | c | ||||
| type(FakeBundle), | public, | allocatable | :: | bundle(:) | |||
| type(StringVector), | public | :: | vars |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FakeExtData), | intent(inout) | :: | this |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FakeExtData), | intent(inout), | target | :: | this | ||
| type(CommandLineOptions), | intent(in) | :: | options | |||
| integer, | intent(in) | :: | comm | |||
| class(AbstractDirectoryService), | intent(inout), | target | :: | d_s | ||
| character(len=*), | intent(in) | :: | port_name |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(FakeExtData), | intent(inout), | target | :: | this | ||
| integer, | intent(in) | :: | step |
type FakeExtData type (ClientThread) :: c character(len=:), allocatable :: file_1 character(len=:), allocatable :: file_2 type (StringVector) :: vars type (FakeBundle), allocatable :: bundle(:) integer :: comm integer :: rank integer :: npes integer :: nlat integer :: nlon contains procedure :: init procedure :: run procedure :: finalize end type FakeExtData