source: LMDZ6/branches/LMDZ_ECRad/libf/phylmd/ecrad/drhook/yomhook_dummy.F90 @ 4947

Last change on this file since 4947 was 4728, checked in by idelkadi, 11 months ago

Update of ecrad in the LMDZ_ECRad branch of LMDZ:

  • version 1.6.1 of ecrad
  • files are no longer grouped in the same ecrad directory.
  • the structure of ecrad offline is preserved to facilitate updating in LMDZ
  • cfg.bld modified to take into account the new added subdirectories.
  • the interface routines and those added in ecrad are moved to the phylmd directory
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.