Ignore:
Timestamp:
Jul 19, 2024, 5:41:58 PM (2 months ago)
Author:
abarral
Message:

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cospv2/lmdz_cosp_interface.F90

    r4619 r5082  
    275275        cfg%Lisccp, cfg%Lmisr, cfg%Lmodis, cfg%Lrttov
    276276
    277     if (overlaplmdz.ne.overlap) then
     277    if (overlaplmdz/=overlap) then
    278278       print*,'Attention overlaplmdz different de overlap lu dans namelist '
    279279    endif
     
    282282   print*,'On passe par using_xios'
    283283 ELSE
    284    if (cosp_init_flag .eq. 0) then
     284   if (cosp_init_flag == 0) then
    285285
    286286      ! Initialize the distributional parameters for hydrometeors in radar simulator.
     
    311311
    312312!!! Ici on modifie les cles logiques pour les outputs selon les champs actives dans les .xml
    313   if ((itap.ge.1).and.(first_write))then
     313  if ((itap>=1).and.(first_write))then
    314314    IF (using_xios) call read_xiosfieldactive(cfg)
    315315    first_write=.false.
    316316
    317 if (cosp_init_flag .eq. 0) then
     317if (cosp_init_flag == 0) then
    318318
    319319    ! Initialize the distributional parameters for hydrometeors in radar simulator.
     
    384384! 3) Masque terre/mer a partir de la variable fracTerLic
    385385        do ip = 1, Npoints
    386           if (fracTerLic(ip).ge.0.5) then
     386          if (fracTerLic(ip)>=0.5) then
    387387             land(ip) = 1.
    388388          else
     
    424424
    425425
    426 if (cosp_init_flag .eq. 1) then      ! cosp_init_flag = 1
     426if (cosp_init_flag == 1) then      ! cosp_init_flag = 1
    427427
    428428!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     
    538538      endif ! debut_cosp
    539539
    540 if (cosp_init_flag .eq. 1) then
     540if (cosp_init_flag == 1) then
    541541
    542542!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Note: See TracChangeset for help on using the changeset viewer.