Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (11 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/filtrez/lmdz_filtreg.F90

    r5116 r5117  
    7878    INTEGER :: sdd1_type, sdd2_type
    7979
    80     if (iim == 1) return ! no filtre in 2D y-z
     80    IF (iim == 1) return ! no filtre in 2D y-z
    8181
    8282    IF (first) THEN
     
    8989    ENDIF
    9090
    91     IF(ifiltre==1.or.ifiltre==-1) &
     91    IF(ifiltre==1.OR.ifiltre==-1) &
    9292            stop 'Pas de transformee simple dans cette version'
    9393
     
    425425    IMPLICIT NONE
    426426    ! Arguments:
    427     integer, intent(in) :: N
    428     integer, intent(in) :: NP
    429     integer, intent(out) :: NROT
    430     real, intent(inout) :: A(NP, NP)
    431     real, intent(out) :: D(NP)
    432     real, intent(out) :: V(NP, NP)
     427    INTEGER, INTENT(IN) :: N
     428    INTEGER, INTENT(IN) :: NP
     429    INTEGER, INTENT(OUT) :: NROT
     430    REAL, INTENT(INOUT) :: A(NP, NP)
     431    REAL, INTENT(OUT) :: D(NP)
     432    REAL, INTENT(OUT) :: V(NP, NP)
    433433
    434434    ! local variables:
     
    562562    INTEGER :: i, j
    563563    REAL :: sum
    564     real, external :: ssum
     564    REAL, external :: ssum
    565565    do j = 1, im
    566566      do i = 1, im
     
    631631    !-----------------------------------------------------------
    632632
    633     if (iim == 1) return ! No filtre in 2D y-z
     633    IF (iim == 1) return ! No filtre in 2D y-z
    634634
    635635    pi = 2. * ASIN(1.)
Note: See TracChangeset for help on using the changeset viewer.