Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (7 weeks ago)
Author:
abarral
Message:

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/ecsort_shared.h

    r3908 r5158  
    421421      if (imod == 0) iadd = 0
    422422      ista(1) = 1
    423       do j=2,inumt
     423      DO j=2,inumt
    424424        ista(j) = ista(j-1) + inc + iadd
    425425        if (iadd > 0 .and. j > imod) iadd = 0
    426426      enddo
    427427      ista(inumt+1) = n + 1
    428       do j=1,inumt
     428      DO j=1,inumt
    429429        ichunk(j) = ista(j+1) - ista(j)
    430430      enddo
     
    452452    ITID = OML_MY_THREAD()
    453453!$OMP DO SCHEDULE(DYNAMIC,1)
    454     do j=1,inumt
     454    DO j=1,inumt
    455455      j1 = ista(j)
    456456      inum = ichunk(j)
     
    490490    inc = 2
    491491    imax = (inumt+inc-1)/inc
    492     do jj=1,imax
     492    DO jj=1,imax
    493493      if (LLdebug) write(0,1001) jj,'<before_merge> jj,inc,imax,inumt=',jj,inc,imax,inumt
    494494!$OMP PARALLEL PRIVATE(j,j1,j2,inum,iamax,ibmax,jmid,iret,ZHOOK_SUBHANDLE3,ITID)
     
    496496      ITID = OML_MY_THREAD()
    497497!$OMP DO SCHEDULE(DYNAMIC,1)
    498       do j=1,inumt,inc
     498      DO j=1,inumt,inc
    499499        j1 = j
    500500        j2 = j + inc - 1
     
    568568    allocate(data(n))
    569569!$OMP DO SCHEDULE(DYNAMIC,1)
    570     do j=1,sda
     570    DO j=1,sda
    571571      data(1:n) = a(iindex(1:n),j)
    572572      a(1:n,j) = data(1:n)
     
    580580    allocate(data(n))
    581581!$OMP DO SCHEDULE(DYNAMIC,1)
    582     do i=1,lda
     582    DO i=1,lda
    583583      data(1:n) = a(i,iindex(1:n))
    584584      a(i,1:n) = data(1:n)
     
    613613WRITE(0,1000) jj,cdstr//': n,key,k1,k2,kadd,a(index(k1:k2)+kadd,:)=',&
    614614     &                     n,key,k1,k2,kadd
    615 do j=k1,k2
     615DO j=k1,k2
    616616  i = index(j)+kadd
    617617  WRITE(0,'(2i6)',advance='no') j,i-kadd
     
    649649  i = left
    650650  j = 2*left
    651   do while (j <= right)
     651  DO while (j <= right)
    652652    if (j < right) then
    653653      if (a(index(j)) < a(index(j+1))) j = j + 1
Note: See TracChangeset for help on using the changeset viewer.