deleted unused function
This commit is contained in:
parent
399a0218c7
commit
75ee54146b
|
@ -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):
|
def findTag(filename,tag):
|
||||||
# -----------------------------
|
# -----------------------------
|
||||||
|
|
Loading…
Reference in New Issue