Ticket #6664: Dummy.py

File Dummy.py, 329 bytes (added by Owen Arnold, 8 years ago)
Line 
1from mantid.kernel import *
2from mantid.api import *
3 
4class Dummy(PythonAlgorithm):
5       
6        def PyInit(self):
7                #self.declareProperty(MatrixWorkspaceProperty("LHSWorkspace", "", Direction.Input), "Input workspace")
8                pass
9
10        def PyExec(self):
11                # Run the algorithm
12                pass
13 
14# Register algorithm with Mantid
15registerAlgorithm(Dummy)