Skip to content
Snippets Groups Projects
SavePlot1D-v1.rst 1.61 KiB
Newer Older
.. algorithm::

.. summary::

.. alias::

.. properties::

Description
-----------

Save 1D plots to a png file, as part of autoreduction. Multiple spectra
in the same workspace will be represented by curves on the same plot.
Groupped workspaces will be shown as subplots. If the workspace has more
than one spectra, but less or equal to ten, labels will be shown.

.. Note::

 The figures contain lines between points, no error bars.

.. Note::

 Requires matplotlib version>= 1.2.0
 
 Usage
-----

.. testcode:: SavePlot1D

    #create some workspaces
    CreateWorkspace(OutputWorkspace='w1',DataX='1,2,3,4,5,1,2,3,4,5',DataY='1,4,5,3,2,2,3,1',DataE='1,2,2,1,1,1,1,1',NSpec='2',UnitX='DeltaE')
    CreateWorkspace(OutputWorkspace='w2',DataX='1,2,3,4,5,1,2,3,4,5',DataY='4,2,5,3,3,1,3,1', DataE='1,2,2,1,1,1,1,1',NSpec='2',UnitX='Momentum',VerticalAxisUnit='Wavelength',VerticalAxisValues='2,3',YUnitLabel='Something')
    wGroup=GroupWorkspaces("w1,w2")
    
    #write to a file
    try:
        import mantid
        filename=mantid.config.getString("defaultsave.directory")+"SavePlot1D.png"
        SavePlot1D(InputWorkspace=wGroup,OutputFilename=filename)
        print "Success: You can now view SavePlot1D.png"
    except:
        print "Some problem occured"
          
.. testcleanup:: SavePlot1D

   DeleteWorkspace("wGroup")
   import os,mantid   
   filename=mantid.config.getString("defaultsave.directory")+"SavePlot1D.png"
   os.remove(filename)

Output:

.. testoutput:: SavePlot1D

    Success: You can now view SavePlot1D.png

The file should look like

.. figure:: /images/SavePlot1D.png
   :alt: SavePlot1D.png