##// END OF EJS Templates
carpeta figure:...
carpeta figure: imagenes de las opciones open,crear,guardar,play,stop mainwindow: se añadio eventos basicos y se ordeno en orden de eventos y luego metodos usados por dichos eventos ui_mainwindow: se modifico algunas opciones de la interfaz grafica nombre de proyecto, y se le añadio nombres a los frames de proyecto,voltage,spectra,correlation

File last commit:

r169:661bb8af254a
r253:5dec07d455af
Show More
Correlation.py
59 lines | 1.2 KiB | text/x-python | PythonLexer
'''
Created on Feb 7, 2012
@author $Author$
@version $Id$
'''
from JROData import JROData, Noise
from JROHeader import RadarControllerHeader, ProcessingHeader, SystemHeader, BasicHeader
class Correlation(JROData):
'''
classdocs
'''
data = None
nLags = None
lagsList = None
def __init__(self):
'''
Constructor
'''
self.m_RadarControllerHeader = RadarControllerHeader()
self.m_ProcessingHeader = ProcessingHeader()
self.m_SystemHeader = SystemHeader()
self.m_BasicHeader = BasicHeader()
self.m_NoiseObj = Noise()
self.type = "Correlation"
self.dataType = None
self.nHeights = 0
self.nChannels = 0
self.channelList = None
self.heightList = None
self.flagNoData = True
self.flagResetProcessing = False
self.data = None
self.nLags = 0
self.tauList = None
self.pairList = None