Ignore:
Timestamp:
Jul 6, 2015, 6:22:14 PM (9 years ago)
Author:
Ehouarn Millour
Message:

Create the "obsolete" directory where old and unused stuff should go. And move some obsolete routines there.
Minor correction in "print_control_mod": use "opened" argument to inquire instead of "exist".
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/print_control_mod.F90

    r2311 r2321  
    1414  IMPLICIT NONE
    1515
    16     LOGICAL :: exist
     16    LOGICAL :: opened
    1717    INTEGER :: number
    1818   
     
    3535    IF (is_omp_root) THEN
    3636      IF (lunout /= 5 .and. lunout /= 6) THEN
    37          INQUIRE(FILE='lmdz.out_0000',EXIST=exist,NUMBER=number)
    38          IF (exist) THEN
     37         INQUIRE(FILE='lmdz.out_0000',OPENED=opened,NUMBER=number)
     38         IF (opened) THEN
    3939           lunout=number
    4040         ELSE
Note: See TracChangeset for help on using the changeset viewer.