Added eplf_input

This commit is contained in:
Anthony Scemama 2009-06-19 11:38:34 +02:00
parent 1f98448f75
commit 70c3eba68c
1 changed files with 26 additions and 0 deletions

26
bin/eplf_input.py Executable file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env python
import sys,os,time
from resultsFile import *
# Check command line
if len(sys.argv) != 2:
print "usage: "+sys.argv[0]+" file.out"
sys.exit(2)
firstArg = sys.argv[1]
file = open("eplf_grid.data","w")
print >>file, "&eplf_grid"
print >>file, " Npoints=80,80,80"
print >>file, "/"
file.close()
file = getFile(firstArg)
print firstArg, 'recognized as', str(file).split('.')[-1].split()[0]
from qcio import qcio
write_qcioFile(file,"QCIO_File")