~reducedmodelling/fluidity/fluidity_enkf_reduced_pert

1 by hhiester
deleting initialisation as none of tools are used any longer.
1
!    Copyright (C) 2006 Imperial College London and others.
2
!    
3
!    Please see the AUTHORS file in the main source directory for a full list
4
!    of copyright holders.
5
!
6
!    Prof. C Pain
7
!    Applied Modelling and Computation Group
8
!    Department of Earth Science and Engineering
9
!    Imperial College London
10
!
11
!    amcgsoftware@imperial.ac.uk
2392 by tmb1
Changing isntances of Chris' person email address to the group
12
!    
1 by hhiester
deleting initialisation as none of tools are used any longer.
13
!    This library is free software; you can redistribute it and/or
14
!    modify it under the terms of the GNU Lesser General Public
15
!    License as published by the Free Software Foundation,
16
!    version 2.1 of the License.
17
!
18
!    This library is distributed in the hope that it will be useful,
19
!    but WITHOUT ANY WARRANTY; without even the implied warranty of
20
!    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21
!    Lesser General Public License for more details.
22
!
23
!    You should have received a copy of the GNU Lesser General Public
24
!    License along with this library; if not, write to the Free Software
25
!    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
26
!    USA
27
28
module fldebug_parameters
29
  !!< Debug specific global parameters
30
31
  implicit none
32
33
  !------------------------------------------------------------------------
34
  ! Parameters controlling diagnostic output.
35
  !------------------------------------------------------------------------
36
37
  integer, save :: current_debug_level=1, global_debug_level=1
38
  !! These defaults are an assumption which may not be true on all platforms.
39
  integer, save :: debug_error_unit=0, debug_log_unit=6
40
41
end module fldebug_parameters
42