Ignore:
Timestamp:
Mar 20, 2014 8:40:49 AM (10 years ago)
Author:
raasch
Message:

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/lpm_sort_arrays.f90

    r1319 r1320  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! ONLY-attribute added to USE-statements,
     23! kind-parameters added to all INTEGER and REAL declaration statements,
     24! kinds are defined in new module kinds,
     25! comment fields (!:) to be used for variable explanations added to
     26! all variable declaration statements
    2327!
    2428! Former revisions:
     
    4145!------------------------------------------------------------------------------!
    4246
    43     USE arrays_3d
    44     USE control_parameters
    45     USE cpulog
    46     USE grid_variables
    47     USE indices
    48     USE particle_attributes
     47    USE control_parameters,                                                     &
     48        ONLY:  message_string, dz
     49
     50    USE cpulog,                                                                 &
     51        ONLY:  cpu_log, log_point_s
     52
     53    USE grid_variables,                                                         &
     54        ONLY:  ddx, dx, ddy, dy
     55
     56    USE indices,                                                                &
     57        ONLY:  nxl, nxr, nyn, nys, nzb, nzt
     58
     59    USE kinds
     60
     61    USE particle_attributes,                                                    &
     62        ONLY:  number_of_particles, offset_ocean_nzt, part_1, part_2, particles,&
     63               particle_type, prt_count, prt_start_index, sort_count
    4964
    5065    IMPLICIT NONE
    5166
    52     INTEGER ::  i, ilow, j, k, n
     67    INTEGER(iwp) ::  i                                            !:
     68    INTEGER(iwp) ::  ilow                                         !:
     69    INTEGER(iwp) ::  j                                            !:
     70    INTEGER(iwp) ::  k                                            !:
     71    INTEGER(iwp) ::  n                                            !:
    5372
    54     TYPE(particle_type), DIMENSION(:), POINTER ::  particles_temp
     73    TYPE(particle_type), DIMENSION(:), POINTER ::  particles_temp !:
    5574
    5675
Note: See TracChangeset for help on using the changeset viewer.