-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIOPaths.py
More file actions
53 lines (29 loc) · 1.31 KB
/
IOPaths.py
File metadata and controls
53 lines (29 loc) · 1.31 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class IOPaths:
def __init__(self):
## Input/Output paths
self.wehe_traces_path = ''
self.wehe_test_results_path = ''
self.ns3_results_path = ''
self.wehe_p_tomography_path = ''
self.analysis_out_path = ''
def get_wehe_traces_path(self):
return self.wehe_traces_path
def set_wehe_traces_path(self, wehe_traces_paths):
self.wehe_traces_path = wehe_traces_paths
def get_ns3_results_path(self):
return self.ns3_results_path
def set_ns3_results_path(self, ns3_results_path):
self.ns3_results_path = ns3_results_path
def get_analysis_out_path(self):
return self.analysis_out_path
def set_analysis_out_path(self, analysis_out_path):
self.analysis_out_path = analysis_out_path
def get_wehe_test_results_path(self):
return self.wehe_test_results_path
def set_wehe_test_results_path(self, wehe_test_results_path):
self.wehe_test_results_path = wehe_test_results_path
def get_wehe_p_tomography_path(self):
return self.wehe_p_tomography_path
def set_wehe_p_tomography_path(self, wehe_p_tomography_path):
self.wehe_p_tomography_path = wehe_p_tomography_path
ioPaths = IOPaths()