Source code :: main

[Return]
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/python2
# -*- coding: utf-8 -*-

import matplotlib
matplotlib.rcParams['backend'] = 'Agg'
matplotlib.rc('font',  size='10')
matplotlib.rc('text', usetex=True)  # FIXME !! nicer but slower !!!  


from numpy import *
from pygolem_lite.modules import *
import time
import os, sys

def prepare_data():
  data = loadtxt('Nidatap.lvm')
  tvec = arange(len(data)) * 5e-6   # 200kHz
  save_adv('Nidatap', tvec, data)
  print "prepared data"
  

def plot_data(file_type):

    name = "NI Basic"
    # graph all
    out = get_data('Nidatap', 'ch', "" ,xlim=[0,40],integrated=False )
    multiplot(out, name , 'graph1', (6,len(out)*2),  100,  'vertical', file_type)

    os.system('convert -resize 150x120\! graph1.png icon.png')

    ## integrated 
    out = get_data('Nidatap', 'ch', "",xlim=[0,40] , integrated=True )
    multiplot(out, name + ' Integrated' , 'graph2', (6,len(out)*2),  100,  'vertical', file_type)

def main():
    if sys.argv[1] ==  "acquisition":
	prepare_data()
    if sys.argv[1] ==  "plots":
	plot_data('png')
	#plot_data('svg')
	saveconst('status', 0)
    


if __name__ == "__main__":
    main()
    
    

Navigation