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/cosp/mod_llnl_stats.F90

    r3233 r5082  
    119119       do j=Nlevels,1,-1 !top->surf
    120120        sc_ratio = beta_tot(pr,i,j)/beta_mol(pr,j)
    121         if ((sc_ratio .le. s_att) .and. (flag_sat .eq. 0)) flag_sat = j
    122         if (Ze_tot(pr,i,j) .lt. -30.) then  !radar can't detect cloud
    123          if ( (sc_ratio .gt. s_cld) .or. (flag_sat .eq. j) ) then  !lidar sense cloud
     121        if ((sc_ratio <= s_att) .and. (flag_sat == 0)) flag_sat = j
     122        if (Ze_tot(pr,i,j) < -30.) then  !radar can't detect cloud
     123         if ( (sc_ratio > s_cld) .or. (flag_sat == j) ) then  !lidar sense cloud
    124124            lidar_only_freq_cloud(pr,j)=lidar_only_freq_cloud(pr,j)+1. !top->surf
    125125            flag_cld=1
     
    129129        endif
    130130       enddo !levels
    131        if (flag_cld .eq. 1) tcc(pr)=tcc(pr)+1.
     131       if (flag_cld == 1) tcc(pr)=tcc(pr)+1.
    132132     enddo !columns
    133133   enddo !points
Note: See TracChangeset for help on using the changeset viewer.