The TELEMAC-MASCARET system  trunk
gredelpts_read_dataset.f
Go to the documentation of this file.
1 ! ******************************
2  SUBROUTINE gredelpts_read_dataset
3 ! ******************************
4  &(local_value,npoinmax,npoin,it,fu,ende)
5 !
6 !***********************************************************************
7 ! PARALLEL V6P0 21/08/2010
8 !***********************************************************************
9 !
10 !brief
11 !
12 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
13 !+ 13/07/2010
14 !+ V6P0
15 !+ Translation of French comments within the FORTRAN sources into
16 !+ English comments
17 !
18 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
19 !+ 21/08/2010
20 !+ V6P0
21 !+ Creation of DOXYGEN tags for automated documentation and
22 !+ cross-referencing of the FORTRAN sources
23 !
24 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 !| AT |---|
26 !| ENDE |---|
27 !| FU |---|
28 !| LOCAL_VALUE |---|
29 !| NPOIN |---|
30 !| NPOINMAX |---|
31 !| NVALUE |---|
32 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33 !
34  IMPLICIT NONE
35 !
36  INTEGER, INTENT(IN) :: NPOINMAX,NPOIN,FU
37  INTEGER, INTENT(OUT) :: IT
38 !
39  REAL, INTENT(OUT) :: LOCAL_VALUE(npoinmax)
40 !
41  LOGICAL, INTENT(OUT) :: ENDE
42 
43  INTEGER IPOIN
44 !
45  ENDE = .TRUE.
46 !
47  READ(fu,end=999) it, (local_value(ipoin),ipoin=1,npoin)
48 !
49  ENDE = .FALSE.
50 !
51  999 RETURN
52  END SUBROUTINE gredelpts_read_dataset
subroutine gredelpts_read_dataset(LOCAL_VALUE, NPOINMAX, NPOIN, IT, FU, ENDE)