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/readaerosol_optic.F90

    r3630 r5082  
    7878!****************************************************************************************
    7979! Read and interpolate sulfate
    80   IF ( flag_aerosol .EQ. 1 .OR. &
    81        flag_aerosol .EQ. 6 ) THEN
     80  IF ( flag_aerosol == 1 .OR. &
     81       flag_aerosol == 6 ) THEN
    8282
    8383     CALL readaerosol_interp(id_ASSO4M_phy, itap, pdtphys, rjourvrai, debut, pplay, paprs, t_seri, sulfate, sulfate_pi,loadso4)
     
    8888
    8989! Read and interpolate bcsol and bcins
    90   IF ( flag_aerosol .EQ. 2 .OR. &
    91        flag_aerosol .EQ. 6 ) THEN
     90  IF ( flag_aerosol == 2 .OR. &
     91       flag_aerosol == 6 ) THEN
    9292
    9393     ! Get bc aerosol distribution
     
    103103
    104104! Read and interpolate pomsol and pomins
    105   IF ( flag_aerosol .EQ. 3 .OR. &
    106        flag_aerosol .EQ. 6 ) THEN
     105  IF ( flag_aerosol == 3 .OR. &
     106       flag_aerosol == 6 ) THEN
    107107
    108108     CALL readaerosol_interp(id_ASPOMM_phy, itap, pdtphys, rjourvrai, debut, pplay, paprs, t_seri, pomsol, pomsol_pi, load_tmp3)
     
    117117
    118118! Read and interpolate csssm, ssssm, assssm
    119   IF (flag_aerosol .EQ. 4 .OR. &
    120       flag_aerosol .EQ. 6 ) THEN
     119  IF (flag_aerosol == 4 .OR. &
     120      flag_aerosol == 6 ) THEN
    121121
    122122      CALL readaerosol_interp(id_SSSSM_phy ,itap, pdtphys, rjourvrai, debut, pplay, paprs, t_seri, sssupco, sssupco_pi,  load_tmp5)
     
    132132
    133133! Read and interpolate cidustm
    134   IF (flag_aerosol .EQ. 5 .OR.  &
    135       flag_aerosol .EQ. 6 ) THEN
     134  IF (flag_aerosol == 5 .OR.  &
     135      flag_aerosol == 6 ) THEN
    136136
    137137      CALL readaerosol_interp(id_CIDUSTM_phy, itap, pdtphys, rjourvrai, debut, pplay, paprs, t_seri, cidust, cidust_pi, loaddust)
Note: See TracChangeset for help on using the changeset viewer.