Example #1
0
def peakstats(scan):
    "Set up peakstats"
    ps = PeakStats(_get_obj_fields([scan.motor])[0],
                   gs.MASTER_DET_FIELD,
                   edge_count=3)
    gs.PS = ps
    return ps
    def __init__(self,
                 y,
                 x=None,
                 *,
                 legend_keys=None,
                 xlim=None,
                 ylim=None,
                 ax=None,
                 fig=None,
                 **kwargs):
        super().__init__()
        if fig is not None:
            if ax is not None:
                raise ValueError("Values were given for both `fig` and `ax`. "
                                 "Only one can be used; prefer ax.")
            warnings.warn("The `fig` keyword arugment of LivePlot is "
                          "deprecated and will be removed in the future. "
                          "Instead, use the new keyword argument `ax` to "
                          "provide specific Axes to plot on.")
            ax = fig.gca()
        if ax is None:
            fig, ax = plt.subplots()
        self.ax = ax

        if legend_keys is None:
            legend_keys = []
        self.legend_keys = ['scan_id'] + legend_keys
        if x is not None:
            self.x, *others = _get_obj_fields([x])
        else:
            self.x = None
        self.y, *others = _get_obj_fields([y])
        self.ax.set_ylabel(y)
        self.ax.set_xlabel(x or 'sequence #')
        if xlim is not None:
            self.ax.set_xlim(*xlim)
        if ylim is not None:
            self.ax.set_ylim(*ylim)
        self.ax.margins(.1)
        self.kwargs = kwargs
        self.lines = []
        self.legend = None
        self.legend_title = " :: ".join([name for name in self.legend_keys])
Example #3
0
def raster(scan):
    "Set up a LiveRaster by inspect a scan and gs."
    if len(scan.shape) != 2:
        return None
    # first motor is 'slow' -> Y axis
    ylab, xlab = _get_obj_fields(scan.motors)
    # shape goes in (rr, cc)
    # extents go in (x, y)
    return LiveRaster(scan.shape,
                      gs.MASTER_DET_FIELD,
                      xlabel=xlab,
                      ylabel=ylab,
                      extent=list(chain(*scan.extents[::-1])))