deleted unused function

This commit is contained in:
Christoph Kords 2013-05-22 21:20:00 +00:00
parent 399a0218c7
commit 75ee54146b
1 changed files with 1 additions and 24 deletions

View File

@ -6,29 +6,6 @@ from optparse import OptionParser
# -----------------------------
def writeHeader(myfile,stat,geomtype):
# -----------------------------
myfile.write('2\theader\n')
myfile.write(string.replace('$Id$','\n','\\n')+
'\t' + ' '.join(sys.argv[1:]) + '\n')
if geomtype == 'nodebased':
myfile.write('node')
for i in range(stat['NumberOfNodalScalars']):
myfile.write('\t%s'%''.join(stat['LabelOfNodalScalar'][i].split()))
elif geomtype == 'ipbased':
myfile.write('elem\tip')
for i in range(stat['NumberOfElementalScalars']):
myfile.write('\t%s'%''.join(stat['LabelOfElementalScalar'][i].split()))
myfile.write('\n')
return True
# -----------------------------
def findTag(filename,tag):
# -----------------------------