##// END OF EJS Templates
Adicion de directorios de procesamiento y utilitarios
Miguel Valdez -
r10:9523c526b618
parent child
Show More
1 NO CONTENT: modified file
NO CONTENT: modified file
@@ -3,7 +3,7 import plplot
3
3
4 from BasicGraph import *
4 from BasicGraph import *
5
5
6 class Spectrum():
6 class Spectrum:
7
7
8 graphObjDict = {}
8 graphObjDict = {}
9 showColorbar = False
9 showColorbar = False
@@ -169,7 +169,7 class Spectrum():
169 powObj = self.graphObjDict[key]
169 powObj = self.graphObjDict[key]
170 powObj.basicXYPlot(power, heis)
170 powObj.basicXYPlot(power, heis)
171
171
172 class CrossSpectrum():
172 class CrossSpectrum:
173 graphObjDict = {}
173 graphObjDict = {}
174 showColorbar = False
174 showColorbar = False
175 showPowerProfile = True
175 showPowerProfile = True
@@ -114,6 +114,14 class SystemHeader:
114
114
115 return 1
115 return 1
116
116
117 def copy(self):
118
119 obj = SystemHeader()
120 obj.size = self.size
121
122
123 return obj
124
117 class RadarControllerHeader:
125 class RadarControllerHeader:
118 size = 0
126 size = 0
119 expType = 0
127 expType = 0
@@ -181,6 +189,14 class RadarControllerHeader:
181
189
182 return 1
190 return 1
183
191
192 def copy(self):
193
194 obj = RadarControllerHeader()
195 obj.size = self.size
196
197
198 return obj
199
184 class ProcessingHeader:
200 class ProcessingHeader:
185 size = 0
201 size = 0
186 dataType = 0
202 dataType = 0
@@ -243,3 +259,11 class ProcessingHeader:
243
259
244
260
245 return 1
261 return 1
262
263 def copy(self):
264
265 obj = ProcessingHeader()
266 obj.size = self.size
267
268
269 return obj No newline at end of file
@@ -15,3 +15,6 class Correlation(Data):
15 Constructor
15 Constructor
16 '''
16 '''
17 pass
17 pass
18
19 def copy(self):
20 pass No newline at end of file
@@ -16,3 +16,6 class Data:
16 '''
16 '''
17 pass
17 pass
18
18
19 def copy(self):
20 pass
21 No newline at end of file
@@ -16,3 +16,6 class Spectra(Data):
16 '''
16 '''
17 pass
17 pass
18
18
19 def copy(self):
20 pass
21 No newline at end of file
@@ -10,9 +10,21 class Voltage(Data):
10 '''
10 '''
11
11
12
12
13 m_RadarControllerHeader= RadarControllerHeader()
14
15 m_ProcessingHeader= ProcessingHeader()
16
17 m_SystemHeader= SystemHeader()
18
19 m_BasicHeader= BasicHeader()
20
21
13 def __init__(self):
22 def __init__(self):
14 '''
23 '''
15 Constructor
24 Constructor
16 '''
25 '''
17 pass
26 pass
18
27
28 def copy(self):
29 pass
30 No newline at end of file
@@ -4,7 +4,7 Created on Feb 7, 2012
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 class CorrelationProcessor():
7 class CorrelationProcessor:
8 '''
8 '''
9 classdocs
9 classdocs
10 '''
10 '''
@@ -4,7 +4,7 Created on Feb 7, 2012
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 class SpectraProcessor():
7 class SpectraProcessor:
8 '''
8 '''
9 classdocs
9 classdocs
10 '''
10 '''
@@ -4,7 +4,7 Created on Feb 7, 2012
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 class VoltageProcessor():
7 class VoltageProcessor:
8 '''
8 '''
9 classdocs
9 classdocs
10 '''
10 '''
@@ -4,7 +4,7 Created on Feb 7, 2012
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 class FtpServer():
7 class FtpServer:
8 '''
8 '''
9 classdocs
9 classdocs
10 '''
10 '''
@@ -4,7 +4,7 Created on Feb 7, 2012
4 @author: roj-idl71
4 @author: roj-idl71
5 '''
5 '''
6
6
7 class FtpServerList():
7 class FtpServerList:
8 '''
8 '''
9 classdocs
9 classdocs
10 '''
10 '''
@@ -15,3 +15,5 class FtpServerList():
15 Constructor
15 Constructor
16 '''
16 '''
17 pass
17 pass
18 m_FtpServer= FtpServer()
19
General Comments 0
You need to be logged in to leave comments. Login now