DISPATCH
scene_mod.f90
1 !===============================================================================
2 !> This module is a placeholder for scene information, solving the problem of
3 !> making a piece of information available btw any two points in the code, without
4 !> having to worry about module dependency. Since this module does not depend
5 !> on anything else, we can put shared information here
6 !===============================================================================
7 MODULE scene_mod
8  implicit none
9  public
10  type, public:: scene_t
11  integer:: n_repeat(3) = 1
12  integer:: n_patch
13  integer:: n_initial = 0
14  integer:: n_add = 0
15  integer:: n_patch_total = 0
16  integer:: patch_n(3) = 0
17  real:: f_zoom(3)=1.0
18  end type
19  type(scene_t):: scene
20 END MODULE scene_mod
This module is a placeholder for scene information, solving the problem of making a piece of informat...
Definition: scene_mod.f90:7