Files
ncs/script/tutorial/13_CustomPlot.py
boccioli_m 79e9aac763 Startup
2015-09-02 10:39:31 +02:00

19 lines
657 B
Python

"""
Custom plot: Example of creating a 1D plot for a 2D scan where each scanned row is a series
"""
#Setting the 1d preference would create in the place of the matrix plot, a 1d plot where
#each scanned column is a series
#set_preference(Preference.PLOT_TYPES, {'ai1':1})
p = plot(None, context="1d Plot")[0]
def AfterReadout(record, scan):
if record.setpoints[1] == scan.getStart()[1]:
p.addSeries(LinePlotSeries(str(record.positions[0])))
p.getSeries(p.numberOfSeries-1).appendData(record.positions[1], record.values[0])
ascan((ao1,ao2), (ai1), (0,10), (20,30), (20,20), 0.1, after_read=AfterReadout)