Пример #1
0
def plotsc1():
    cfg = tasks.GpplotConfig()
    cfg.caltable = 'sc1.cal'
    cfg.dest = 'sc1.pdf'
    cfg.maxtimegap = 15  # plot_maxtimegap
    cfg.phaseonly = True
    tasks.gpplot(cfg)
Пример #2
0
def plotpeel2(idx):
    idx = int(idx)
    assert idx >= 0 and idx < len(peels)

    gpeel2 = gpeel2fmt.format(idx=idx)

    cfg = tasks.GpplotConfig()
    cfg.caltable = gpeel2
    cfg.dest = f'peel2_{idx}.pdf'
    cfg.maxtimegap = plot_maxtimegap
    tasks.gpplot(cfg)
Пример #3
0
def plotpeel1(idx):
    idx = int(idx)
    assert idx >= 0 and idx < len(peels)

    gpeel1 = gpeel1fmt.format(idx=idx)

    cfg = tasks.GpplotConfig()
    cfg.caltable = gpeel1
    cfg.dest = f'peel1_{idx}.pdf'
    cfg.maxtimegap = plot_maxtimegap
    cfg.phaseonly = True
    tasks.gpplot(cfg)
Пример #4
0
def plot_fs():
    cfg = tasks.GpplotConfig()
    cfg.caltable = fs
    cfg.dest = 'fs.pdf'
    cfg.maxtimegap = plot_maxtimegap
    tasks.gpplot(cfg)
Пример #5
0
def plot_g0():
    cfg = tasks.GpplotConfig()
    cfg.caltable = g0
    cfg.dest = 'g0.pdf'
    cfg.maxtimegap = plot_maxtimegap
    tasks.gpplot(cfg)