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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/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 !!!

#import pygolem_lite


from numpy import *
#from pygolem_lite.config import *
from pygolem_lite.modules import *
#from matplotlib.pyplot import *
import time
from shutil import copy, move
import os, sys


def graphs(file_type):

    try:
      name = "NI Turbo 6251"
  
  
      # graph all
      out = get_data('Nidatap_6251', 'ch', "" ,xlim=[0,40],  integrated=False, reduction=False ) #  ylim=[None, 11],   
    
      multiplot(out, name , 'graph0', (10,3),  100,  'vertical', file_type)

      os.system('convert -resize 150x120\! graph0.png icon.png')
    except:
      print "Nidatap_6251 failed"
    
    
    try:
      name = "NI Turbo 6358"

      
      ## integrated 
      out = get_data('Nidatap_6358', 'ch', "", xlim=[0,40], integrated=True , reduction=True)
      paralel_multiplot(out, name + ' Integrated' , 'graph2', (6,len(out)*2),  100,  'vertical', file_type)
      
      # graph all
      out = get_data('Nidatap_6358', 'ch', "" , xlim=[0,40],integrated=False, reduction=False )
    
      multiplot(out, name , 'graph1', (6,len(out)*2),  100,  'vertical', file_type)
      
      # icona
      #out = get_data('Nidatap', "", "" , xlabel = "",integrated=False, reduction=True )
      #paralel_multiplot(out, "" , 'icon', (4,3), 40)

      os.system('convert -resize 150x120\! graph1.png icon.png')
    except:
      print "Nidatap_6358 failed"
      

    print "done"

def acquisition():
    for name in ['Nidatap_6358', 'Nidatap_6251']:
	[tvec, data] = load_adv(name)
	save_adv(name ,tvec, data)



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

Navigation