##// END OF EJS Templates
Se agrega el folder "graphics" que contiene figure.py y mpldriver.py...
Se agrega el folder "graphics" que contiene figure.py y mpldriver.py figure.py contiene las clases: Figure, Axes mpldriver.py driver para matplotlib En el modelo se creado: jroplot.py, aqui se ha agregado la clase Scope, para hacer graficos tipo osciloscopio. El archivo de prueba: test4NewSignalChain.py contiene un ejemplo.

File last commit:

r169:661bb8af254a
r190:cfcc2c9608cc
Show More
CorrelationIO.py
39 lines | 779 B | text/x-python | PythonLexer
'''
Created on 23/01/2012
@author $Author$
@version $Id$
'''
import os, sys
import numpy
import glob
import fnmatch
import time, datetime
path = os.path.split(os.getcwd())[0]
sys.path.append(path)
from Model.JROHeader import *
from Model.Voltage import Voltage
from IO.JRODataIO import JRODataReader
from IO.JRODataIO import JRODataWriter
class CorrelationReader(JRODataReader):#JRODataReader para lectura de correlaciones en archivos HDF5
def __init__(self):
pass
class CorrelationWriter(JRODataWriter):#JRODataWriter para escritura de correlaciones en archivos HDF5
def __init__(self):
pass
def puData(self):
pass
def writeBlock(self):
pass