Ignore:
Timestamp:
Oct 7, 2015 11:56:08 PM (9 years ago)
Author:
knoop
Message:

Code annotations made doxygen readable

File:
1 edited

Legend:

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

    r1354 r1682  
    1  MODULE user_actions_mod
    2 
     1!> @file user_actions.f90
    32!--------------------------------------------------------------------------------!
    43! This file is part of PALM.
     
    2019! Current revisions:
    2120! ------------------
    22 !
     21! Code annotations made doxygen readable
    2322!
    2423! Former revisions:
     
    5049! Description:
    5150! ------------
    52 ! Execution of user-defined actions before or after single timesteps
    53 !------------------------------------------------------------------------------!
     51!> Execution of user-defined actions before or after single timesteps
     52!------------------------------------------------------------------------------!
     53 MODULE user_actions_mod
     54 
    5455
    5556    PRIVATE
     
    6566
    6667!------------------------------------------------------------------------------!
    67 ! Call for all grid points
     68! Description:
     69! ------------
     70!> Call for all grid points
    6871!------------------------------------------------------------------------------!
    6972    SUBROUTINE user_actions( location )
     
    8588       IMPLICIT NONE
    8689
    87        CHARACTER (LEN=*) ::  location !:
    88 
    89        INTEGER(iwp) ::  i !:
    90        INTEGER(iwp) ::  j !:
    91        INTEGER(iwp) ::  k !:
     90       CHARACTER (LEN=*) ::  location !<
     91
     92       INTEGER(iwp) ::  i !<
     93       INTEGER(iwp) ::  j !<
     94       INTEGER(iwp) ::  k !<
    9295
    9396       CALL cpu_log( log_point(24), 'user_actions', 'start' )
     
    173176
    174177!------------------------------------------------------------------------------!
    175 ! Call for grid point i,j
     178! Description:
     179! ------------
     180!> Call for grid point i,j
    176181!------------------------------------------------------------------------------!
    177182    SUBROUTINE user_actions_ij( i, j, location )
Note: See TracChangeset for help on using the changeset viewer.