Index: trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90
===================================================================
--- trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90	(revision 3203)
+++ trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90	(revision 3205)
@@ -131,14 +131,16 @@
 
 therestart1D = .false. ! Default value
-inquire(file = 'start1D.txt',exist = therestart1D)
-if (startfiles_1D .and. .not. therestart1D) then
-    write(*,*) 'There is no "start1D.txt" file!'
-    write(*,*) 'Initialization is done with default values.'
-endif
 therestartfi = .false. ! Default value
-inquire(file = 'startfi.nc',exist = therestartfi)
-if (.not. therestartfi) then
-    write(*,*) 'There is no "startfi.nc" file!'
-    write(*,*) 'Initialization is done with default values.'
+if (startfiles_1D) then
+    inquire(file = 'start1D.txt',exist = therestart1D)
+    if (startfiles_1D .and. .not. therestart1D) then
+        write(*,*) 'There is no "start1D.txt" file!'
+        write(*,*) 'Initialization is done with default values.'
+    endif
+    inquire(file = 'startfi.nc',exist = therestartfi)
+    if (.not. therestartfi) then
+        write(*,*) 'There is no "startfi.nc" file!'
+        write(*,*) 'Initialization is done with default values.'
+    endif
 endif
 
