diff --git a/script/local.py b/script/local.py index bc103574..ffb3b5c8 100644 --- a/script/local.py +++ b/script/local.py @@ -2,9 +2,6 @@ import random import ch.psi.pshell.dev.Readable.ReadableArray as ReadableArray class SimulatedOutput(Writable): - def getName(self): - return "SimulatedOutput" - def write(self, value): pass @@ -13,9 +10,6 @@ class SimulatedInput(Readable): def __init__(self): self.x = 0.0 - def getName(self): - return "SimulatedInput" - def read(self): self.x = self.x + 0.2 noise = (random.random() - 0.5) / 20.0 @@ -39,9 +33,6 @@ def integrate_image(): class ImageIntegrator(ReadableArray): - def getName(self): - return "integration" - def getSize(self): (width,height) = scienta.getImageSize().tolist() return width