summaryrefslogtreecommitdiff
path: root/Ganlib/src/LCMGCL.f
diff options
context:
space:
mode:
Diffstat (limited to 'Ganlib/src/LCMGCL.f')
-rw-r--r--Ganlib/src/LCMGCL.f59
1 files changed, 59 insertions, 0 deletions
diff --git a/Ganlib/src/LCMGCL.f b/Ganlib/src/LCMGCL.f
new file mode 100644
index 0000000..c58249e
--- /dev/null
+++ b/Ganlib/src/LCMGCL.f
@@ -0,0 +1,59 @@
+*DECK LCMGCL
+ SUBROUTINE LCMGCL(IPLIST,ISET,ILONG,HDATA)
+*
+*-----------------------------------------------------------------------
+*
+*Purpose:
+* Copy a character variable from a list into memory.
+*
+*Copyright:
+* Copyright (C) 2000 Ecole Polytechnique de Montreal
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation; either
+* version 2.1 of the License, or (at your option) any later version
+*
+*Author(s): A. Hebert
+*
+*Parameters: input
+* IPLIST address of the table.
+* ISET position of the block in the list.
+* ILONG dimension of the character variable.
+*
+*Parameters: output
+* HDATA character variable.
+*
+*-----------------------------------------------------------------------
+*
+ USE GANLIB
+*----
+* SUBROUTINE ARGUMENTS
+*----
+ TYPE(C_PTR) IPLIST
+ INTEGER ISET,ILONG
+ CHARACTER*(*) HDATA(ILONG)
+*----
+* LOCAL VARIABLES
+*----
+ TYPE(C_PTR) JPLIST
+ INTEGER, ALLOCATABLE, DIMENSION(:) :: IDATA
+*
+ ILE1=(LEN(HDATA(1))+3)/4
+ CALL LCMLEL(IPLIST,ISET,JLONG,ITYLCM)
+ IF(ITYLCM.NE.10) CALL XABORT('LCMGCD: LIST EXPECTED.')
+ IF(JLONG.GT.ILONG) CALL XABORT('LCMGCD: HDATA OVERFLOW.')
+ JPLIST=LCMLIL(IPLIST,ISET,JLONG)
+ DO JSET=1,ILONG
+ CALL LCMLEL(JPLIST,JSET,ILE2,ITYLCM)
+ IF(ITYLCM.NE.3) CALL XABORT('LCMGCL: CHARACTER EXPECTED.')
+ ALLOCATE(IDATA(ILE2))
+ CALL LCMGDL(JPLIST,JSET,IDATA)
+ HDATA(JSET)=' '
+ WRITE(HDATA(JSET),'(100A4)') (IDATA(I),I=1,MIN(ILE1,ILE2))
+ DEALLOCATE(IDATA)
+ ENDDO
+ DO ISET=JLONG+1,ILONG
+ HDATA(ISET)=' '
+ ENDDO
+ RETURN
+ END