New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 9169 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/SAO_SRC/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2017-12-26T17:32:56+01:00 (6 years ago)
Author:
gm
Message:

dev_merge_2017: all SRC: finalize the removal of useless warning when reading namelist_cfg + remove all nn_closea + nn_msh replaced by a logical

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/SAO_SRC/nemogcm.F90

    r9019 r9169  
    115115      READ  ( numnam_ref, namctl, IOSTAT = ios, ERR = 901 ) 
    116116901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namctl in reference namelist', .TRUE. ) 
    117       ! 
    118117      REWIND( numnam_cfg )              ! Namelist namctl in confguration namelist 
    119118      READ  ( numnam_cfg, namctl, IOSTAT = ios, ERR = 902 ) 
    120 902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namctl in configuration namelist', .TRUE. ) 
     119902   IF( ios >  0 )  CALL ctl_nam ( ios , 'namctl in configuration namelist', .TRUE. ) 
    121120      ! 
    122121      REWIND( numnam_ref )              ! Namelist namcfg in reference namelist : Control prints 
    123122      READ  ( numnam_ref, namcfg, IOSTAT = ios, ERR = 903 ) 
    124 903   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namcfg in reference namelist', .TRUE. ) 
    125  
     123903   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namcfg in reference namelist', .TRUE. ) 
    126124      REWIND( numnam_cfg )              ! Namelist namcfg in confguration namelist : Control prints & Benchmark 
    127125      READ  ( numnam_cfg, namcfg, IOSTAT = ios, ERR = 904 ) 
    128 904   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namcfg in configuration namelist', .TRUE. )    
     126904   IF( ios >  0 )  CALL ctl_nam ( ios , 'namcfg in configuration namelist', .TRUE. )    
    129127 
    130128      !                             !--------------------------! 
Note: See TracChangeset for help on using the changeset viewer.