##// END OF EJS Templates
Adding the first version of Controller.py and experiment.cfg....
Adding the first version of Controller.py and experiment.cfg. Modified: - Graphics/VoltagePlot.py; Adding index plot or figure number in plotData Method - Model/Voltage.py; Adding new attributes - Model/Spectra.py; Adding new attributes - Processing/VoltageProcessor.py; Integration Method was modified to consider Nbloks and Time[min] as input - Processing/SpectraProcessor.py; Integration Method was modified to consider Nbloks and Time[min] as input

File last commit:

r104:851c0a59dacb
r104:851c0a59dacb
Show More
Voltage.py
62 lines | 1.3 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 Voltage(JROData):
'''
classdocs
'''
data = None
nProfiles = None
profileIndex = 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 = "Voltage"
#data es un numpy array de 3 dmensiones (perfiles, alturas y canales)
self.data = None
self.dataType = None
self.nHeights = 0
self.nChannels = 0
self.channelList = None
self.heightList = None
self.flagNoData = True
self.flagResetProcessing = False
self.nAvg = None
self.profileIndex = None
self.nProfiles = None