source: branches/GRISLIv3/SOURCES/Ant40_files/fake-routines-ant_mod.f90 @ 483

Last change on this file since 483 was 483, checked in by aquiquet, 3 months ago

Cleaning branch: edit of fake modules

File size: 748 bytes
Line 
1!> \file fake-routines-ant_mod.f90
2!! Module qui contient des routines vides
3!<
4
5!> \namespace fake_ant
6!! Module qui contient des routines vides
7!! \author ...
8!! \date ...
9!! @note Used module
10!! @note   - use module3D_phy
11!<
12
13module fake_ant
14
15use runparam, only: itracebug
16
17implicit none
18
19integer :: fake
20
21contains
22!____________________________________________________
23subroutine initial_heino
24
25if (itracebug.eq.1)  call tracebug(' Entree dans routine fake initial_heino')
26fake=1
27
28return
29end subroutine initial_heino
30
31!____________________________________________________
32subroutine track_change_T
33
34if (itracebug.eq.1)  call tracebug(' Entree dans routine fake track_change_T')
35fake=1
36return
37end subroutine track_change_T
38
39end module fake_ant
40!
Note: See TracBrowser for help on using the repository browser.