Ticket #6664: Dummy.py
File Dummy.py, 329 bytes (added by Owen Arnold, 8 years ago) |
---|
Line | |
---|---|
1 | from mantid.kernel import * |
2 | from mantid.api import * |
3 | |
4 | class 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 |
15 | registerAlgorithm(Dummy) |