Interface for Signal and Noise propagation introduced
This commit is contained in:
parent
15fb785b2d
commit
84f6bd0930
11
esbo_etc/classes/ITransmissive.py
Normal file
11
esbo_etc/classes/ITransmissive.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
|
|
||||||
|
class ITransmissive(ABC):
|
||||||
|
@abstractmethod
|
||||||
|
def calcSignal(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def calcNoise(self):
|
||||||
|
pass
|
@ -1 +1,3 @@
|
|||||||
from esbo_etc.classes.config import *
|
from esbo_etc.classes.config import *
|
||||||
|
from esbo_etc.classes.ITransmissive import *
|
||||||
|
from esbo_etc.classes.target import *
|
Loading…
x
Reference in New Issue
Block a user