- Timestamp:
- Jul 28, 2017, 2:36:57 PM (7 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/phy_common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/phy_common/init_print_control_mod.F90
r1682 r1761 23 23 !Config Help = Niveau d'impression pour le débogage 24 24 !Config (0 = minimum d'impression) 25 prt_level = 0 25 ! prt_level = 0 ! default set in print_control_mod) 26 26 CALL getin_p('prt_level',prt_level) 27 27 … … 31 31 !Config Help = unite de fichier pour les impressions 32 32 !Config (defaut sortie standard = 6) 33 lunout=6 33 ! lunout=6 ! default set in print_control_mod) 34 34 CALL getin_p('lunout', lunout) 35 35 … … 51 51 !Config Help = positionne le mode debogage 52 52 53 debug = .FALSE. 53 ! debug = .FALSE. ! default set in print_control_mod) 54 54 CALL getin_p('debug',debug) 55 55 -
trunk/LMDZ.COMMON/libf/phy_common/print_control_mod.F90
r1682 r1761 2 2 MODULE print_control_mod 3 3 4 INTEGER,SAVE :: lunout ! default output file identifier (6==screen)5 INTEGER,SAVE :: prt_level ! debug output level6 LOGICAL,SAVE :: debug ! flag to specify if in "debug mode"4 INTEGER,SAVE :: lunout=6 ! default output file identifier (6==screen) 5 INTEGER,SAVE :: prt_level=0 ! debug output level 6 LOGICAL,SAVE :: debug=.FALSE. ! flag to specify if in "debug mode" 7 7 !$OMP THREADPRIVATE(lunout,prt_level,debug) 8 8
Note: See TracChangeset
for help on using the changeset viewer.