/tomo/pyhst

To get this branch, use:
bzr branch http://darksoft.org/webbzr/tomo/pyhst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import sys
import numpy

try:    
	f=open("test.par","r")
except:
	print(" problems reading file %s", "test.par")
	raise Exception, " EXITING "

parameters = f.read()
f.close()

sinograms = numpy.zeros((2,1024,768)) 

import PyHST