Index: LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.f90
===================================================================
--- LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.f90	(revision 6123)
+++ LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.f90	(revision 6124)
@@ -91,5 +91,5 @@
   USE regr_horiz_time_climoz_m, ONLY: regr_horiz_time_climoz
   USE indice_sol_mod
-  USE conf_phys_m, ONLY: conf_phys
+  USE conf_phys_m, ONLY: conf_phys, read_climoz
   USE init_ssrf_m, ONLY: start_init_subsurf
   USE phys_state_var_mod, ONLY: beta_aridity, delta_tsurf, awake_dens, cv_gen, &
@@ -128,5 +128,4 @@
   !LOGICAL :: flag_bc_internal_mixture
   !REAL    :: bl95_b0, bl95_b1
-  INTEGER :: read_climoz                        !--- Read ozone climatology
   LOGICAL :: filtre_oro=.false.
 
@@ -137,5 +136,5 @@
 ! Physics configuration
 !*******************************************************************************
-  CALL conf_phys( read_climoz )
+  CALL conf_phys
   CALL phys_state_var_init(read_climoz)
 
Index: LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
===================================================================
--- LMDZ6/trunk/libf/phylmd/conf_phys_m.f90	(revision 6123)
+++ LMDZ6/trunk/libf/phylmd/conf_phys_m.f90	(revision 6124)
@@ -56,9 +56,15 @@
     !$OMP THREADPRIVATE(alp_offset)
 
-
+    INTEGER, SAVE, protected:: read_climoz ! read ozone climatology
+    !     Allowed values are 0, 1 and 2
+    !     0: do not read an ozone climatology
+    !     1: read a single ozone climatology that will be used day and night
+    !     2: read two ozone climatologies, the average day and night
+    !     climatology and the daylight climatology
+    !$OMP THREADPRIVATE(read_climoz)
 
 CONTAINS
 
-  SUBROUTINE conf_phys( read_climoz )
+  SUBROUTINE conf_phys
 
         USE compbl_mod_h
@@ -121,11 +127,4 @@
     ! PC
     ! Per-gas routing switches (Concentration "effective")
-
-    INTEGER, INTENT(OUT):: read_climoz ! read ozone climatology, OpenMP shared
-    ! Allowed values are 0, 1 and 2
-    ! 0: do not read an ozone climatology
-    ! 1: read a single ozone climatology that will be used day and night
-    ! 2: read two ozone climatologies, the average day and night
-    ! climatology and the daylight climatology
 
     !-----------------------------------------------------------------
Index: LMDZ6/trunk/libf/phylmd/physiq_mod.F90
===================================================================
--- LMDZ6/trunk/libf/phylmd/physiq_mod.F90	(revision 6123)
+++ LMDZ6/trunk/libf/phylmd/physiq_mod.F90	(revision 6124)
@@ -67,5 +67,5 @@
     USE conf_phys_m , ONLY : aerosol_couple
     USE conf_phys_m , ONLY : chemistry_couple
-    USE conf_phys_m , ONLY : flag_aerosol
+    USE conf_phys_m , ONLY : flag_aerosol, read_climoz
     USE conf_phys_m , ONLY : flag_bc_internal_mixture
     USE conf_phys_m , ONLY : solarlong0,alp_offset,flag_aer_feedback,flag_aerosol_strat
@@ -1063,15 +1063,9 @@
     ! VARIABLES RELATED TO OZONE CLIMATOLOGIES
     ! Note that pressure vectors are in Pa and in stricly ascending order
-    INTEGER,SAVE :: read_climoz                ! Read ozone climatology
-    !     Allowed values are 0, 1 and 2
-    !     0: do not read an ozone climatology
-    !     1: read a single ozone climatology that will be used day and night
-    !     2: read two ozone climatologies, the average day and night
-    !     climatology and the daylight climatology
     INTEGER,SAVE :: ncid_climoz                ! NetCDF file identifier
     REAL, ALLOCATABLE, SAVE :: press_cen_climoz(:) ! Pressure levels
     REAL, ALLOCATABLE, SAVE :: press_edg_climoz(:) ! Edges of pressure intervals
     REAL, ALLOCATABLE, SAVE :: time_climoz(:)      ! Time vector
-    !$OMP THREADPRIVATE(read_climoz, ncid_climoz, press_cen_climoz)
+    !$OMP THREADPRIVATE(ncid_climoz, press_cen_climoz)
     !$OMP THREADPRIVATE(press_edg_climoz, time_climoz)
 
@@ -1265,5 +1259,5 @@
        !
        !     appel a la lecture du run.def physique
-       CALL conf_phys( read_climoz )
+       CALL conf_phys
 
        CALL init_etat0_limit_unstruct
