- Timestamp:
- Jul 4, 2025, 10:42:17 AM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/phy_common/init_print_control_mod.F90
r1791 r3829 4 4 ! not included there because of circular dependecy issues 5 5 6 IMPLICIT NONE 7 6 8 CONTAINS 7 9 8 10 SUBROUTINE init_print_control 9 USE print_control_mod, ONLY : set_print_control, & 10 prt_level, lunout, debug 11 USE print_control_mod, ONLY : set_print_control 11 12 USE ioipsl_getin_p_mod, ONLY : getin_p 12 13 USE mod_phys_lmdz_para, ONLY: is_omp_root, is_master 13 14 IMPLICIT NONE 14 15 15 !INTEGER :: lunout ! default output file identifier (6==screen)16 ! INTEGER :: prt_level ! Output level 17 ! LOGICAL :: debug ! flag to specify if in "debug mode" 16 INTEGER :: lunout ! default output file identifier (6==screen) 17 INTEGER :: prt_level ! Output level (0: none) 18 LOGICAL :: debug ! flag to specify if in "debug mode" (i.e. extra outputs) 18 19 LOGICAL :: opened 19 20 INTEGER :: number 20 21 21 !Config Key = prt_level 22 !Config Desc = niveau d'impressions de débogage 23 !Config Def = 0 24 !Config Help = Niveau d'impression pour le débogage 25 !Config (0 = minimum d'impression) 26 ! prt_level = 0 ! default set in print_control_mod) 22 prt_level = 0 ! default (0: minimum verbosity) 27 23 CALL getin_p('prt_level',prt_level) 28 24 29 !Config Key = lunout 30 !Config Desc = unite de fichier pour les impressions 31 !Config Def = 6 32 !Config Help = unite de fichier pour les impressions 33 !Config (defaut sortie standard = 6) 34 ! lunout=6 ! default set in print_control_mod) 25 lunout=6 ! default (i.e. standard output = 6) 35 26 CALL getin_p('lunout', lunout) 36 27 … … 47 38 ENDIF 48 39 49 !Config Key = debug 50 !Config Desc = mode debogage 51 !Config Def = false 52 !Config Help = positionne le mode debogage 53 54 ! debug = .FALSE. ! default set in print_control_mod) 40 debug = .FALSE. ! default 55 41 CALL getin_p('debug',debug) 56 42
Note: See TracChangeset
for help on using the changeset viewer.