##// END OF EJS Templates
This is the new organization by packages and scripts for Signal Chain, this version contains new features and bugs fixed until August 2014
This is the new organization by packages and scripts for Signal Chain, this version contains new features and bugs fixed until August 2014

File last commit:

r462:8e6542235c80
r487:89975db10cce
Show More
Imaging_Plots.py
97 lines | 4.6 KiB | text/x-python | PythonLexer
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393 import os, sys
path = os.path.split(os.getcwd())[0]
sys.path.append(path)
from controller import *
desc = "EWDrifts+Imaging+Faraday Experiments"
filename = "imaging_plots.xml"
controllerObj = Project()
controllerObj.setup(id = '191', name='test01', description=desc)
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 path = '/home/dsuarez/EW_Faraday_imaging'
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462 path = '/media/datos/IMAGING/IMAGING/abril2014'
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393
readUnitConfObj = controllerObj.addReadUnit(datatype='Spectra',
path=path,
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 startDate='2013/09/27',
endDate='2013/09/27',
startTime='19:00:00',
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393 endTime='23:59:59',
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462 delay=2,
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393 online=1,
walk=1)
opObj11 = readUnitConfObj.addOperation(name='printNumberOfBlock')
######################## IMAGING #############################################
procUnitConfObj1 = controllerObj.addProcUnit(datatype='Spectra', inputId=readUnitConfObj.getId())
Daniel Valdez
Se configura los scripts para Procesamiento y Graficos del experimento Imaging Setiembre 2013
r420 # opObj11 = procUnitConfObj1.addOperation(name='IncohInt', optype='other')
# opObj11.addParameter(name='n', value='2', format='float')
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393
opObj11 = procUnitConfObj1.addOperation(name='SpectraPlot', optype='other')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 opObj11.addParameter(name='id', value='2000', format='int')
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393 opObj11.addParameter(name='wintitle', value='Imaging', format='str')
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462 # opObj11.addParameter(name='zmin', value='35', format='int')
# opObj11.addParameter(name='zmax', value='45', format='int')
Daniel Valdez
Se configura los scripts para Procesamiento y Graficos del experimento Imaging Setiembre 2013
r420 # opObj11.addParameter(name='ymin', value='0', format='int')
# opObj11.addParameter(name='ymax', value='300', format='int')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 opObj11.addParameter(name='save', value='1', format='int')
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462 opObj11.addParameter(name='figpath', value='/home/dsuarez/Pictures/imaging_abril2014', format='str')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 opObj11.addParameter(name='wr_period', value='5', format='int')
opObj11.addParameter(name='ftp', value='1', format='int')
opObj11.addParameter(name='server', value='jro-app.igp.gob.pe', format='str')
opObj11.addParameter(name='folder', value='/home/wmaster/graficos', format='str')
opObj11.addParameter(name='username', value='wmaster', format='str')
opObj11.addParameter(name='password', value='mst2010vhf', format='str')
opObj11.addParameter(name='ftp_wei', value='0', format='int')
opObj11.addParameter(name='exp_code', value='13', format='int')
opObj11.addParameter(name='sub_exp_code', value='0', format='int')
opObj11.addParameter(name='plot_pos', value='0', format='int')
Daniel Valdez
Se configura los scripts para Procesamiento y Graficos del experimento Imaging Setiembre 2013
r420 # opObj11 = procUnitConfObj1.addOperation(name='RTIPlot', optype='other')
# opObj11.addParameter(name='id', value='101', format='int')
# opObj11.addParameter(name='wintitle', value='Imaging', format='str')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 # opObj11.addParameter(name='xmin', value='19', format='float')
Daniel Valdez
Se configura los scripts para Procesamiento y Graficos del experimento Imaging Setiembre 2013
r420 # opObj11.addParameter(name='xmax', value='24', format='float')
# opObj11.addParameter(name='save', value='1', format='int')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 # # opObj11.addParameter(name='figfile', value='rti-imaging.png', format='str')
# opObj11.addParameter(name='figpath', value='/home/dsuarez/Pictures/imaging_last_night', format='str')
Daniel Valdez
Se configura los scripts para Procesamiento y Graficos del experimento Imaging Setiembre 2013
r420 # opObj11.addParameter(name='ftp', value='1', format='int')
# opObj11.addParameter(name='ftpratio', value='3', format='int')
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 opObj11 = procUnitConfObj1.addOperation(name='CoherenceMap', optype='other')
opObj11.addParameter(name='id', value='2001', format='int')
opObj11.addParameter(name='wintitle', value='Imaging', format='str')
opObj11.addParameter(name='xmin', value='17', format='float')
opObj11.addParameter(name='xmax', value='24', format='float')
opObj11.addParameter(name='save', value='1', format='int')
Daniel Valdez
procesado del experimento Imaging Abril 2014.
r462 opObj11.addParameter(name='figpath', value='/home/dsuarez/Pictures/imaging_abril2014', format='str')
Daniel Valdez
Scripts para procesamiento y ploteo del Experimento Imaging+ISR Setiembre 2013
r422 opObj11.addParameter(name='wr_period', value='5', format='int')
opObj11.addParameter(name='ftp', value='1', format='int')
opObj11.addParameter(name='server', value='jro-app.igp.gob.pe', format='str')
opObj11.addParameter(name='folder', value='/home/wmaster/graficos', format='str')
opObj11.addParameter(name='username', value='wmaster', format='str')
opObj11.addParameter(name='password', value='mst2010vhf', format='str')
opObj11.addParameter(name='ftp_wei', value='0', format='int')
opObj11.addParameter(name='exp_code', value='13', format='int')
opObj11.addParameter(name='sub_exp_code', value='0', format='int')
opObj11.addParameter(name='plot_pos', value='0', format='int')
Daniel Valdez
Scripts para procesamiento y generacion de graficos para Imaging
r393
print "Escribiendo el archivo XML"
controllerObj.writeXml(filename)
print "Leyendo el archivo XML"
controllerObj.readXml(filename)
controllerObj.createObjects()
controllerObj.connectObjects()
controllerObj.run()