source: branches/petra/src/verboutput.f90 @ 37

Last change on this file since 37 was 37, checked in by pesei, 9 years ago

Wet dep quick fix and other small changes. Wet depo quick fix not final yet.

File size: 3.0 KB
Line 
1!**********************************************************************
2! Copyright 1998-2015                                                 *
3! Andreas Stohl, Petra Seibert, A. Frank, Gerhard Wotawa,             *
4! Caroline Forster, Sabine Eckhardt, John Burkhart, Harald Sodemann   *
5!                                                                     *
6! This file is part of FLEXPART.                                      *
7!                                                                     *
8! FLEXPART is free software: you can redistribute it and/or modify    *
9! it under the terms of the GNU General Public License as published by*
10! the Free Software Foundation, either version 3 of the License, or   *
11! (at your option) any later version.                                 *
12!                                                                     *
13! FLEXPART is distributed in the hope that it will be useful,         *
14! but WITHOUT ANY WARRANTY; without even the implied warranty of      *
15! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       *
16! GNU General Public License for more details.                        *
17!                                                                     *
18! You should have received a copy of the GNU General Public License   *
19! along with FLEXPART.  If not, see <http://www.gnu.org/licenses/>.   *
20!**********************************************************************
21
22  subroutine verboutput (iverbosity, iverbositymin, infostring)
23 
24  !**********************************************************************
25  !                                                                     *
26  !             SUBROUTINE VERBOUTPUT                                   *
27  !                                                                     *
28  !**********************************************************************
29  !                                                                     *
30  !             AUTHOR:      PETRA sEIBERT                              *
31  !             DATE:        2015-03-07                                 *
32  !             LAST UPDATE: 2000-10-17, Andreas Stohl                  *
33  !                                                                     *
34  !**********************************************************************
35  !  Changes:
36  !
37  !**********************************************************************
38  !                                                                     *
39  ! DESCRIPTION:                                                        *
40  !                                                                     *
41  ! write debugging information to standard output
42  ! depending on the verbosity level
43  !
44  !**********************************************************************
45
46  implicit none
47 
48  integer :: iverbosity ! verbosity level of the current run
49  integer :: iverbositymin ! min. verbosity level required to produce output
50  character(*) :: infostring
51 
52  if (iverbosity .ge. iverbositymin) print*, '>'//infostring
53 
54  end subroutine verboutput
55 
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG