|
Last change
on this file since 5356 was
2,
checked in by lmdz, 26 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | SUBROUTINE readhist(typfile,unitlec, |
|---|
| 2 | s ucov,vcov,h,pext,ptime,pdt,ifin) |
|---|
| 3 | c%W% %G% |
|---|
| 4 | c======================================================================= |
|---|
| 5 | c |
|---|
| 6 | c Author: Frederic Hourdin original: 11/11/92 |
|---|
| 7 | c ------- |
|---|
| 8 | c |
|---|
| 9 | c Subject: |
|---|
| 10 | c ------ |
|---|
| 11 | c |
|---|
| 12 | c Method: |
|---|
| 13 | c -------- |
|---|
| 14 | c |
|---|
| 15 | c Interface: |
|---|
| 16 | c ---------- |
|---|
| 17 | c |
|---|
| 18 | c Input: |
|---|
| 19 | c ------ |
|---|
| 20 | c |
|---|
| 21 | c Output: |
|---|
| 22 | c ------- |
|---|
| 23 | c |
|---|
| 24 | c======================================================================= |
|---|
| 25 | IMPLICIT NONE |
|---|
| 26 | c----------------------------------------------------------------------- |
|---|
| 27 | c Declararations: |
|---|
| 28 | c --------------- |
|---|
| 29 | |
|---|
| 30 | #include "dimensions.h" |
|---|
| 31 | #include "comconst.h" |
|---|
| 32 | #include "control.h" |
|---|
| 33 | #include "paramet.h" |
|---|
| 34 | |
|---|
| 35 | c Arguments: |
|---|
| 36 | c ---------- |
|---|
| 37 | |
|---|
| 38 | INTEGER typfile,unitlec |
|---|
| 39 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm),h(ip1jmp1,llm) |
|---|
| 40 | REAL pext(ip1jmp1) |
|---|
| 41 | REAL pdt,ptime |
|---|
| 42 | |
|---|
| 43 | c Local: |
|---|
| 44 | c ------ |
|---|
| 45 | |
|---|
| 46 | INTEGER ifin |
|---|
| 47 | |
|---|
| 48 | c----------------------------------------------------------------------- |
|---|
| 49 | |
|---|
| 50 | ifin=0 |
|---|
| 51 | IF(typfile.EQ.0) THEN |
|---|
| 52 | READ(unitlec,err=9999) ptime,vcov,ucov,h,pext |
|---|
| 53 | pdt=iecri*dtvr |
|---|
| 54 | ELSE |
|---|
| 55 | READ(unitlec,err=9999) ptime,pdt,vcov,ucov,h,pext |
|---|
| 56 | ENDIF |
|---|
| 57 | PRINT*,ptime,pdt |
|---|
| 58 | |
|---|
| 59 | RETURN |
|---|
| 60 | 9999 CONTINUE |
|---|
| 61 | ifin=1 |
|---|
| 62 | RETURN |
|---|
| 63 | END |
|---|
Note: See
TracBrowser
for help on using the repository browser.