| 50 | == Arguments of `init_parallel_pdaf` == |
| 51 | |
| 52 | The routine `init_parallel_pdaf` has two arguments, which are the following: |
| 53 | {{{ |
| 54 | SUBROUTINE init_parallel_pdaf(dim_ens, screen) |
| 55 | }}} |
| 56 | * `dim_ens`: An integer defining the ensemble size. This allows to check the consistency of the ensemble size with the number of processes of the program. If the ensemble size is specified after the call to `init_parallel_pdaf` (as in the example) it is recommended to set this argument to 0. In this case no consistency check is performed. |
| 57 | * `screen`: An integer defining whether information output is written to the screen (i.e. standard output). The following choices are available: |
| 58 | * 0: quite mode - no information is displayed. |
| 59 | * 1: Display standard information about the configuration of the processes (recommended) |
| 60 | * 2: Display detailed information for debugging |
| 61 | |
| 62 | |