Print report heading.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(inout) | :: | head |
The variable designating whether the heading is to be printed ( |
||
integer, | intent(in) | :: | lunit |
The logical unit number to which the heading is written. |
impure subroutine dodphd(head, lunit) !! Print report heading. ! Routines Called (NONE) ! Date Written 860529 (YYMMDD) ! Revision Date 920619 (YYMMDD) logical, intent(inout) :: head !! The variable designating whether the heading is to be printed (`head = .true.`) !! or not (`head = .false.`). integer, intent(in) :: lunit !! The logical unit number to which the heading is written. ! Variable Definitions (alphabetically) ! HEAD: The variable designating whether the heading is to be printed (HEAD=.TRUE.) ! or not (HEAD=.FALSE.). ! LUNIT: The logical unit number to which the heading is written. if (head) then write (lunit, 1000) head = .false. end if ! Format statements 1000 format( & ' ********************************************************* '/ & ' * ODRPACK95 version 1.00 of 12-27-2005 (REAL (wp)) * '/ & ' ********************************************************* '/ & ) end subroutine dodphd