#include "implicit_f.inc"
#include "units_c.inc"
Go to the source code of this file.
|
| subroutine | writc (unit, length, tabint) |
| integer function | wiout (length, tabint) |
| integer function | wistdo (length, tabint) |
◆ wiout()
| integer function wiout |
( |
integer | length, |
|
|
integer, dimension(*) | tabint ) |
Definition at line 85 of file analyse_out.F.
86
87
88
89#include "implicit_f.inc"
90
91
92
93#include "units_c.inc"
94
95
96
97 INTEGER LENGTH
98 INTEGER TABINT(*)
99C
100 CALL writc(iout,length,tabint)
102 RETURN
103
integer function wiout(length, tabint)
subroutine writc(unit, length, tabint)
◆ wistdo()
| integer function wistdo |
( |
integer | length, |
|
|
integer, dimension(*) | tabint ) |
Definition at line 113 of file analyse_out.F.
114
115
116
117#include "implicit_f.inc"
118
119
120
121#include "units_c.inc"
122
123
124
125 INTEGER LENGTH
126 INTEGER TABINT(*)
127
128 CALL writc(istdo,length,tabint)
129
131 RETURN
integer function wistdo(length, tabint)
◆ writc()
| subroutine writc |
( |
integer | unit, |
|
|
integer | length, |
|
|
integer, dimension(*) | tabint ) |
Definition at line 31 of file analyse_out.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39 INTEGER LENGTH, UNIT
40 INTEGER TABINT(*)
41
42
43
44 CHARACTER*80 MESSAGE
45 INTEGER I, LMESS
46
47 message = ' '
48
49 lmess = 0
50
51 DO i=1, length
52 lmess = lmess + 1
53
54 IF (tabint(i) == 10) THEN
55 IF (lmess > 1) THEN
56 WRITE(unit,'(A)') message(1:lmess-1)
57 ELSE
58 WRITE(unit,'(A)') ' '
59 ENDIF
60 lmess = 0
61 ELSEIF ( lmess ==80 ) THEN
62 message(lmess:lmess)=char(tabint(i))
63 WRITE(unit,'(A)') message(1:lmess)
64 lmess = 0
65 ELSE
66 message(lmess:lmess)=char(tabint(i))
67 ENDIF
68
69 ENDDO
70
71 IF (lmess > 0) THEN
72 WRITE(unit,'(A)') message(1:lmess)
73 ENDIF
74
75 RETURN