18 lines
342 B
Python
18 lines
342 B
Python
import nixio
|
|
from pyrelacs.util.logging import config_logging
|
|
|
|
|
|
log = config_logging()
|
|
|
|
|
|
class Sinus:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
@staticmethod
|
|
def run(config, mccdaq, nix_block: nixio.Block, figure) -> None:
|
|
log.debug(config)
|
|
log.debug(mccdaq)
|
|
log.debug(nix_block)
|
|
log.debug(figure)
|