-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleOcchab.py
29 lines (19 loc) · 899 Bytes
/
ModuleOcchab.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from ModuleAbstract import ModuleAbstract
from DecoratorImport import DecoratorImport
class ModuleOcchab(ModuleAbstract, DecoratorImport):
def __init__(self) -> None:
super(DecoratorImport, self).__init__(self)
def which_module(self) -> str:
return "Module Occhab"
def process_transient_data(self) -> None:
print("[ModuleOcchab] process_transient_data")
def check_transient_data(self) -> None:
print("[ModuleOcchab] check_transient_data")
def import_data_to_destination(self) -> None:
print("[ModuleOcchab] import_data_to_destination")
def remove_data_from_destination(self) -> None:
print("[ModuleOcchab] remove_data_from_destination")
def report_plot(self) -> None:
print("[ModuleOcchab] report_plot")
def compute_bounding_box(self) -> None:
print("[ModuleOcchab] compute_bounding_box")