artiq.experiment: update examples

This commit is contained in:
Robert Jördens 2016-01-25 16:03:01 -07:00
parent 765001054d
commit 905063c1b1
15 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
import logging
from artiq.language import *
from artiq.experiment import *
class SubComponent1(HasEnvironment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class PhotonHistogram(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class BlinkForever(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class DDSTest(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class Handover(EnvExperiment):

View File

@ -1,6 +1,6 @@
import sys
from artiq.language import *
from artiq.experiment import *
class Mandelbrot(EnvExperiment):

View File

@ -1,6 +1,6 @@
# Copyright (C) 2014, 2015 Robert Jordens <jordens@gmail.com>
from artiq.language import *
from artiq.experiment import *
class PulseNotReceivedError(Exception):

View File

@ -2,7 +2,7 @@
import numpy as np
from artiq.language import *
from artiq.experiment import *
from artiq.wavesynth.coefficients import SplineSource

View File

@ -5,7 +5,7 @@ import random
import numpy as np
from scipy.optimize import curve_fit
from artiq.language import *
from artiq.experiment import *
def model(x, F0):

View File

@ -1,7 +1,7 @@
from itertools import count
from time import sleep
from artiq.language import *
from artiq.experiment import *
class RunForever(EnvExperiment):

View File

@ -1,6 +1,6 @@
import time
from artiq.language import *
from artiq.experiment import *
class _PayloadNOP(EnvExperiment):

View File

@ -1,6 +1,6 @@
from operator import itemgetter
from artiq.language import *
from artiq.experiment import *
class DDSSetter(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class TerminateAll(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class AluminumSpectroscopy(EnvExperiment):

View File

@ -1,4 +1,4 @@
from artiq.language import *
from artiq.experiment import *
class SimpleSimulation(EnvExperiment):