Running Algorithms In Python
From MantidProject
- Each algorithm has a corresponding Python function of the same name
- The arguments of the function are the parameters taken by the algorithm
- Calling the function with the appropriate arguments executes the algorithm
- For example, loading a RAW file into a workspace called Result is achieved simply using the following command
LoadRaw('path-to-file','Result')
