Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F10275426
hzxmld.F
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
859 B
Subscribers
None
hzxmld.F
View Options
SUBROUTINE HZXMLD(iunit,name,dval)
c
c Write XML doubleParameter element.
c
c iunit = LUN for output
c name = "name" attribute of intParameter element
c dval = element contents (value of parameter)
c
IMPLICIT NONE
CHARACTER*(*) name
INTEGER iunit
DOUBLE PRECISION dval
c Buffer for formatting numbers in output
CHARACTER*14 buff
INTEGER buflen
PARAMETER (buflen=14)
c Complete element to write out
CHARACTER*100 elem
c Function to find number of occupied characters in a string (KERNLIB)
INTEGER lenocc
write (buff,'(D14.7)') dval
call cleft(buff,1,buflen)
elem = '<hep:doubleParameter name="'//name//'">'//
& buff(1:lenocc(buff))//'</hep:doubleParameter>'
write (iunit,'(A)') elem(1:lenocc(elem))
RETURN
END
File Metadata
Details
Attached
Mime Type
text/x-fortran
Expires
Fri, Apr 4, 9:33 PM (15 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4700922
Default Alt Text
hzxmld.F (859 B)
Attached To
rHZSTEERSVN hzsteersvn
Event Timeline
Log In to Comment