Esempio n. 1
0
# responsibility for the accuracy, completeness, or usefulness of any
# information, apparatus, product, or process disclosed, or represents that
# its use would not infringe privately owned rights.
#

# $Id$

import DST
import SOM
import hlr_utils

filename = "numinfo.dat"

som = SOM.SOM()
so1 = SOM.SO()
so1.id = ("bank1", (0, 0))
so1.y = 111.0
so1.var_y = 23.0
som.append(so1)
so2 = SOM.SO()
so2.id = ("bank2", (0, 0))
so2.y = 143.0
so2.var_y = 27.0
som.append(so2)

ofile = open(filename, "w")

nif = DST.NumInfoDST(ofile)
nif.writeSOM(som)
nif.release_resource()
Esempio n. 2
0
# for any purpose and without fee.
#
# This material was prepared as an account of work sponsored by an agency of
# the United States Government.  Neither the United States Government nor the
# United States Department of Energy, nor any of their employees, makes any
# warranty, express or implied, or assumes any legal liability or
# responsibility for the accuracy, completeness, or usefulness of any
# information, apparatus, product, or process disclosed, or represents that
# its use would not infringe privately owned rights.
#

# $Id$

import sys
import DST

filename = sys.argv[1]

ifile = open(filename, "r")

nif = DST.NumInfoDST(ifile)

som = nif.getSOM()

nif.release_resource()

print som.attr_list
print "Y Label:", som.getYLabel()
print "Y Units:", som.getYUnits()
print som