source: LMDZ6/trunk/libf/phylmd/ecrad/drhook/yomhook_dummy.F90 @ 4773

Last change on this file since 4773 was 4773, checked in by idelkadi, 7 months ago
  • Update of Ecrad in LMDZ The same organization of the Ecrad offline version is retained in order to facilitate the updating of Ecrad in LMDZ and the comparison between online and offline results. version 1.6.1 of Ecrad (https://github.com/lguez/ecrad.git)
  • Implementation of the double call of Ecrad in LMDZ


File size: 961 bytes
Line 
1! (C) Copyright 2014- ECMWF.
2!
3! This software is licensed under the terms of the Apache Licence Version 2.0
4! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5!
6! In applying this licence, ECMWF does not waive the privileges and immunities
7! granted to it by virtue of its status as an intergovernmental organisation
8! nor does it submit to any jurisdiction.
9!
10! DR_HOOK is a profiling and debugging system for the IFS, and should
11! be called at the beginning and end of each subroutine. This is a
12! dummy implementation for offline packages.
13
14module yomhook
15
16  public
17
18  save
19
20  integer, parameter :: jphook = selected_real_kind(13,300)
21  logical :: lhook = .false.
22 
23contains
24
25  subroutine dr_hook(proc_name, iswitch, proc_key)
26
27    character(len=*), intent(in)    :: proc_name
28    integer,          intent(in)    :: iswitch
29    real(jphook),     intent(inout) :: proc_key
30    ! Do nothing!
31
32  end subroutine dr_hook
33
34end module yomhook
Note: See TracBrowser for help on using the repository browser.