Browse Source

Fix plotting: plots drop outliers, average doesn't

Yentl Van Tendeloo 7 years ago
parent
commit
7b60309e8c

+ 16 - 16
calibration/averages

@@ -1,17 +1,17 @@
            read_root: 0.00001406669616699
-           read_dict: 0.00000502352771425
-      read_dict_keys: 0.00001240247356490
-          read_value: 0.00000413408296372
-      read_dict_node: 0.00001154646457214
-     rule_generation: 0.00001681335830906
-      read_dict_edge: 0.00000712745246632
-         create_node: 0.00000410104562863
-    create_nodevalue: 0.00000520616297385
-         create_dict: 0.00001288164211797
-         delete_edge: 0.00000661631899889
-         delete_node: 0.00004409997758739
-   read_reverse_dict: 0.00002403594468997
-         create_edge: 0.00000684445992237
-       read_outgoing: 0.00000520984656801
-       read_incoming: 0.00000729428724981
-           read_edge: 0.00000465274053185
+           read_dict: 0.00000460127038355
+      read_dict_keys: 0.00001678063432883
+          read_value: 0.00000388661630500
+      read_dict_node: 0.00001020808859528
+     rule_generation: 0.00001543215873893
+      read_dict_edge: 0.00000642558526942
+         create_node: 0.00000379181167487
+    create_nodevalue: 0.00000501364247391
+         create_dict: 0.00001028065706205
+         delete_edge: 0.00000683382081240
+         delete_node: 0.00004755891187096
+   read_reverse_dict: 0.00002557890755790
+         create_edge: 0.00000601282282066
+       read_outgoing: 0.00000520600098073
+       read_incoming: 0.00000645903181994
+           read_edge: 0.00000449162172644

+ 10 - 8
calibration/calibrate.py

@@ -15,24 +15,26 @@ with open("calibration/averages", 'w') as averages:
     with open("calibration/plot", 'w') as plot:
         for op in operations:
             avg = sum(operations[op]) / len(operations[op])
-            op_min = 0.0
-            op_max = max(operations[op])
+            op_max = avg * 3
             new_list = []
 
             with open("calibration/distribution_%s" % op, 'w') as f:
                 for t in sorted(operations[op]):
-                    f.write("%f\n" % t)
+                    if t < op_max:
+                        f.write("%.17f\n" % t)
 
             averages.write("%20s: %.17f\n" % (op, avg))
 
             plot.write("set terminal postscript enhanced colour portrait size 6,6\n")
-            plot.write("n = 2000\n")
-            plot.write("min=%s\n" % op_min)
+            plot.write("set xtics rotate by -45\n")
+            plot.write("n = 20\n")
             plot.write("max=%s\n" % op_max)
-            plot.write("width=(max-min)/n\n")
-            plot.write("hist(x, width)=width*floor(x/width)+width/2.0\n")
+            plot.write("width=max/n\n")
+            plot.write("set boxwidth width absolute\n")
+            plot.write("set style fill solid 1.0 noborder\n")
+            plot.write("rounded(x)=width*floor(x/width)+width/2\n")
             plot.write("set out 'calibration/plot_%s.eps'\n" % op)
             plot.write("set ylabel 'Frequency (time)'\n")
             plot.write("set xlabel 'Duration (s)'\n")
             plot.write("set title 'Operation %s'\n" % op.replace("_", "\\_"))
-            plot.write("plot 'calibration/distribution_%s' u (hist($1,width)):(1.0) smooth freq w boxes\n" % op)
+            plot.write("plot 'calibration/distribution_%s' u (rounded($1)):(1) smooth freq w boxes title ''\n" % op)

+ 125 - 80
calibration/plot

@@ -1,176 +1,221 @@
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=4.14848327637e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=4.2200088501e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_root.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_root'
-plot 'calibration/distribution_read_root' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_root' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.38485032716e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.38038111507e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_dict.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_dict'
-plot 'calibration/distribution_read_dict' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_dict' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=3.24402952028e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=5.03419029865e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_dict_keys.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_dict\_keys'
-plot 'calibration/distribution_read_dict_keys' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_dict_keys' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.14897763975e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.1659848915e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_value.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_value'
-plot 'calibration/distribution_read_value' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_value' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=3.46018288303e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=3.06242657858e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_dict_node.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_dict\_node'
-plot 'calibration/distribution_read_dict_node' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_dict_node' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.77202125739e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=4.62964762168e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
+set out 'calibration/plot_rule_generation.eps'
+set ylabel 'Frequency (time)'
+set xlabel 'Duration (s)'
+set title 'Operation rule\_generation'
+plot 'calibration/distribution_rule_generation' u (rounded($1)):(1) smooth freq w boxes title ''
+set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
+n = 20
+max=1.92767558082e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_dict_edge.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_dict\_edge'
-plot 'calibration/distribution_read_dict_edge' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_dict_edge' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.22940839718e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.13754350246e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_create_node.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation create\_node'
-plot 'calibration/distribution_create_node' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_create_node' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.45440804238e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.50409274217e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_create_nodevalue.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation create\_nodevalue'
-plot 'calibration/distribution_create_nodevalue' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_create_nodevalue' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=3.16804486348e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=3.08419711862e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_create_dict.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation create\_dict'
-plot 'calibration/distribution_create_dict' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_create_dict' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=2.09075791715e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=2.05014624372e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_delete_edge.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation delete\_edge'
-plot 'calibration/distribution_delete_edge' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_delete_edge' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=0.000149018497674
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=0.000142676735613
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_delete_node.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation delete\_node'
-plot 'calibration/distribution_delete_node' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_delete_node' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=7.80455920161e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=7.67367226737e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_reverse_dict.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_reverse\_dict'
-plot 'calibration/distribution_read_reverse_dict' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_reverse_dict' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.76965480963e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.8038468462e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_create_edge.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation create\_edge'
-plot 'calibration/distribution_create_edge' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_create_edge' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.47346065375e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.56180029422e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_outgoing.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_outgoing'
-plot 'calibration/distribution_read_outgoing' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_outgoing' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.96564026483e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.93770954598e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_incoming.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_incoming'
-plot 'calibration/distribution_read_incoming' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_incoming' u (rounded($1)):(1) smooth freq w boxes title ''
 set terminal postscript enhanced colour portrait size 6,6
+set xtics rotate by -45
 n = 20
-min=0.0
-max=1.57895939131e-05
-width=(max-min)/n
-hist(x, width)=width*floor(x/width)+width/2.0
+max=1.34748651793e-05
+width=max/n
+set boxwidth width absolute
+set style fill solid 1.0 noborder
+rounded(x)=width*floor(x/width)+width/2
 set out 'calibration/plot_read_edge.eps'
 set ylabel 'Frequency (time)'
 set xlabel 'Duration (s)'
 set title 'Operation read\_edge'
-plot 'calibration/distribution_read_edge' u (hist($1,width)):(1.0) smooth freq w boxes
+plot 'calibration/distribution_read_edge' u (rounded($1)):(1) smooth freq w boxes title ''

+ 88 - 181
calibration/plot_create_dict.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_create_dict.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,83 +512,81 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 941 M
+854 1228 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 941 M
+770 1228 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1434 M
+854 1673 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1434 M
+770 1673 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1927 M
+854 2118 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1927 M
+770 2118 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 15000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2420 M
+854 2564 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2420 M
+770 2564 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2913 M
+854 3009 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2913 M
+770 3009 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 25000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3406 M
+854 3454 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3406 M
+770 3454 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 30000)]
 ] -46.7 MRshow
 1.000 UL
@@ -605,98 +603,114 @@ stroke
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1313 448 M
+1313 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1313 308 M
+1313 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1772 448 M
+1772 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1772 308 M
+1772 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2231 448 M
+2231 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2231 308 M
+2231 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2690 448 M
+2690 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2690 308 M
+2690 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3149 448 M
+3149 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3149 308 M
+3149 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3608 448 M
+3608 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3608 308 M
+3608 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -704,9 +718,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -714,7 +728,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -732,132 +746,25 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_create_dict' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-999 448 N
-0 1 V
-146 0 V
-0 -1 V
--146 0 V
-Z stroke
-1145 448 N
-0 165 V
-145 0 V
-0 -165 V
--145 0 V
-Z stroke
-1290 448 N
-0 2992 V
-146 0 V
-0 -2992 V
--146 0 V
-Z stroke
-1436 448 N
-0 2235 V
-145 0 V
-0 -2235 V
--145 0 V
-Z stroke
-1581 448 N
-0 1877 V
-145 0 V
-0 -1877 V
--145 0 V
-Z stroke
-1726 448 N
-0 234 V
-146 0 V
-0 -234 V
--146 0 V
-Z stroke
-1872 448 N
-0 34 V
-145 0 V
-0 -34 V
--145 0 V
-Z stroke
-2017 448 N
-0 35 V
-146 0 V
-0 -35 V
--146 0 V
-Z stroke
-2163 448 N
-0 23 V
-145 0 V
-0 -23 V
--145 0 V
-Z stroke
-2308 448 N
-0 68 V
-146 0 V
-0 -68 V
--146 0 V
-Z stroke
-2454 448 N
-0 73 V
-145 0 V
-0 -73 V
--145 0 V
-Z stroke
-2599 448 N
-0 33 V
-145 0 V
-0 -33 V
--145 0 V
-Z stroke
-2744 448 N
-0 49 V
-146 0 V
-0 -49 V
--146 0 V
-Z stroke
-2890 448 N
-0 28 V
-145 0 V
-0 -28 V
--145 0 V
-Z stroke
-3035 448 N
-0 84 V
-146 0 V
-0 -84 V
--146 0 V
-Z stroke
-3181 448 N
-0 42 V
-145 0 V
-0 -42 V
--145 0 V
-Z stroke
-3326 448 N
-0 91 V
-145 0 V
-0 -91 V
--145 0 V
-Z stroke
-3471 448 N
-0 91 V
-146 0 V
-0 -91 V
--146 0 V
-Z stroke
-3617 448 N
-0 39 V
-145 0 V
-0 -39 V
--145 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 996 783 142 2 BoxColFill
+1.000 1137 783 143 311 BoxColFill
+1.000 1279 783 142 2965 BoxColFill
+1.000 1420 783 143 2234 BoxColFill
+1.000 1562 783 142 1267 BoxColFill
+1.000 1703 783 143 79 BoxColFill
+1.000 1845 783 143 63 BoxColFill
+1.000 1987 783 142 22 BoxColFill
+1.000 2128 783 143 17 BoxColFill
+1.000 2270 783 142 27 BoxColFill
+1.000 2411 783 143 31 BoxColFill
+1.000 2553 783 142 58 BoxColFill
+1.000 2694 783 143 19 BoxColFill
+1.000 2836 783 142 30 BoxColFill
+1.000 2977 783 143 23 BoxColFill
+1.000 3119 783 143 69 BoxColFill
+1.000 3261 783 142 46 BoxColFill
+1.000 3402 783 143 80 BoxColFill
+1.000 3544 783 142 34 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -866,9 +773,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 138 - 187
calibration/plot_create_edge.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_create_edge.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,217 +512,258 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 831 M
+854 1173 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 831 M
+770 1173 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1215 M
+854 1562 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1215 M
+770 1562 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1598 M
+854 1952 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1598 M
+770 1952 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 15000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1982 M
+854 2341 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1982 M
+770 2341 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2365 M
+854 2731 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2365 M
+770 2731 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 25000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2749 M
+854 3120 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2749 M
+770 3120 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 30000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3132 M
+854 3510 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3132 M
+770 3510 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 35000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3516 M
+854 3899 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3516 M
+770 3899 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 40000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3899 M
-63 0 V
-3150 0 R
--63 0 V
+854 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-770 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 45000)]
-] -46.7 MRshow
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+1175 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000002)]
-] -46.7 MCshow
+1175 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1256 448 M
+1497 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1256 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000004)]
-] -46.7 MCshow
+1497 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1657 448 M
+1818 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1657 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000006)]
-] -46.7 MCshow
+1818 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2059 448 M
+2139 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2059 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000008)]
-] -46.7 MCshow
+2139 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2461 448 M
+2461 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2461 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000010)]
-] -46.7 MCshow
+2461 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2862 448 M
+2782 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2862 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000012)]
-] -46.7 MCshow
+2782 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3264 448 M
+3103 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3264 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000014)]
-] -46.7 MCshow
+3103 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3665 448 M
+3424 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3665 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000016)]
-] -46.7 MCshow
+3424 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+3746 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000018)]
-] -46.7 MCshow
+3746 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
+1.000 UL
+LTb
+LCb setrgbcolor
+4067 783 M
+0 63 V
+0 3053 R
+0 -63 V
+stroke
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -730,9 +771,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -740,7 +781,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -758,114 +799,24 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_create_edge' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-854 448 N
-0 1 V
-131 0 V
-0 -1 V
--131 0 V
-Z stroke
-985 448 N
-0 905 V
-178 0 V
-0 -905 V
--178 0 V
-Z stroke
-1163 448 N
-0 3124 V
-178 0 V
-0 -3124 V
--178 0 V
-Z stroke
-1341 448 N
-0 1640 V
-177 0 V
-0 -1640 V
--177 0 V
-Z stroke
-1518 448 N
-0 417 V
-178 0 V
-0 -417 V
--178 0 V
-Z stroke
-1696 448 N
-0 82 V
-267 0 V
-0 -82 V
--267 0 V
-Z stroke
-1963 448 N
-0 30 V
-266 0 V
-0 -30 V
--266 0 V
-Z stroke
-2229 448 N
-0 24 V
-178 0 V
-0 -24 V
--178 0 V
-Z stroke
-2407 448 N
-0 35 V
-178 0 V
-0 -35 V
--178 0 V
-Z stroke
-2585 448 N
-0 53 V
-177 0 V
-0 -53 V
--177 0 V
-Z stroke
-2762 448 N
-0 17 V
-178 0 V
-0 -17 V
--178 0 V
-Z stroke
-2940 448 N
-0 11 V
-178 0 V
-0 -11 V
--178 0 V
-Z stroke
-3118 448 N
-0 13 V
-177 0 V
-0 -13 V
--177 0 V
-Z stroke
-3295 448 N
-0 13 V
-267 0 V
-0 -13 V
--267 0 V
-Z stroke
-3562 448 N
-0 11 V
-266 0 V
-0 -11 V
--266 0 V
-Z stroke
-3828 448 N
-0 16 V
-178 0 V
-0 -16 V
--178 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1144 783 146 2 BoxColFill
+1.000 1289 783 146 1582 BoxColFill
+1.000 1434 783 145 2975 BoxColFill
+1.000 1578 783 146 1407 BoxColFill
+1.000 1723 783 146 290 BoxColFill
+1.000 1868 783 146 45 BoxColFill
+1.000 2013 783 146 17 BoxColFill
+1.000 2158 783 146 5 BoxColFill
+1.000 2303 783 146 18 BoxColFill
+1.000 2448 783 146 27 BoxColFill
+1.000 2593 783 146 49 BoxColFill
+1.000 2738 783 146 22 BoxColFill
+1.000 2883 783 145 13 BoxColFill
+1.000 3027 783 146 6 BoxColFill
+1.000 3172 783 146 9 BoxColFill
+1.000 3317 783 146 10 BoxColFill
+1.000 3462 783 146 10 BoxColFill
+1.000 3607 783 146 11 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -874,9 +825,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 128 - 150
calibration/plot_create_node.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_create_node.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:00 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:00 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,239 +512,283 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 831 M
+854 1095 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 831 M
+770 1095 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1215 M
+854 1406 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1215 M
+770 1406 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1598 M
+854 1718 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1598 M
+770 1718 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 15000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1982 M
+854 2029 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1982 M
+770 2029 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2365 M
+854 2341 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2365 M
+770 2341 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 25000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2749 M
+854 2653 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2749 M
+770 2653 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 30000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3132 M
+854 2964 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3132 M
+770 2964 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 35000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3516 M
+854 3276 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3516 M
+770 3276 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 40000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
+854 3587 M
+63 0 V
+3150 0 R
+-63 0 V
+stroke
+770 3587 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 45000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
 854 3899 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
 770 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 45000)]
+[ [(Helvetica) 140.0 0.0 true true 0 ( 50000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
+0 63 V
+0 3053 R
+0 -63 V
+stroke
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000001)]
+] -46.7 MLshow
+grestore
+1.000 UL
+LTb
+LCb setrgbcolor
+1146 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
+1146 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000002)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1175 448 M
+1438 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1175 308 M
+1438 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000003)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1497 448 M
+1730 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1497 308 M
+1730 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000004)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1818 448 M
+2022 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1818 308 M
+2022 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000005)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2139 448 M
+2314 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2139 308 M
+2314 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000006)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2461 448 M
+2607 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2461 308 M
+2607 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000007)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2782 448 M
+2899 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2782 308 M
+2899 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000008)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3103 448 M
+3191 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3103 308 M
+3191 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000009)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3424 448 M
+3483 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3424 308 M
+3483 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000010)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3746 448 M
+3775 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3746 308 M
+3775 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000011)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.000012)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -752,9 +796,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -762,7 +806,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -780,84 +824,18 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_create_node' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-854 448 N
-0 462 V
-147 0 V
-0 -462 V
--147 0 V
-Z stroke
-1001 448 N
-0 3320 V
-297 0 V
-0 -3320 V
--297 0 V
-Z stroke
-1298 448 N
-0 1705 V
-395 0 V
-0 -1705 V
--395 0 V
-Z stroke
-1693 448 N
-0 135 V
-296 0 V
-0 -135 V
--296 0 V
-Z stroke
-1989 448 N
-0 23 V
-296 0 V
-0 -23 V
--296 0 V
-Z stroke
-2285 448 N
-0 18 V
-395 0 V
-0 -18 V
--395 0 V
-Z stroke
-2680 448 N
-0 7 V
-296 0 V
-0 -7 V
--296 0 V
-Z stroke
-2976 448 N
-0 3 V
-297 0 V
-0 -3 V
--297 0 V
-Z stroke
-3273 448 N
-0 7 V
-296 0 V
-0 -7 V
--296 0 V
-Z stroke
-3569 448 N
-0 15 V
-296 0 V
-0 -15 V
--296 0 V
-Z stroke
-3865 448 N
-0 19 V
-202 0 V
-0 -19 V
--202 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1060 783 167 570 BoxColFill
+1.000 1393 783 167 2819 BoxColFill
+1.000 1559 783 167 247 BoxColFill
+1.000 1725 783 167 887 BoxColFill
+1.000 1891 783 167 57 BoxColFill
+1.000 2223 783 167 12 BoxColFill
+1.000 2556 783 167 11 BoxColFill
+1.000 2722 783 167 3 BoxColFill
+1.000 2888 783 167 3 BoxColFill
+1.000 3054 783 167 10 BoxColFill
+1.000 3386 783 167 16 BoxColFill
+1.000 3718 783 168 16 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -866,9 +844,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 93 - 149
calibration/plot_create_nodevalue.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_create_nodevalue.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,83 +512,81 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 941 M
+854 1228 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 941 M
+770 1228 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1434 M
+854 1673 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1434 M
+770 1673 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1927 M
+854 2118 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1927 M
+770 2118 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 15000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2420 M
+854 2564 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2420 M
+770 2564 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2913 M
+854 3009 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2913 M
+770 3009 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 25000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3406 M
+854 3454 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3406 M
+770 3454 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 30000)]
 ] -46.7 MRshow
 1.000 UL
@@ -605,110 +603,128 @@ stroke
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1256 448 M
+1256 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1256 308 M
+1256 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1657 448 M
+1657 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1657 308 M
+1657 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2059 448 M
+2059 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2059 308 M
+2059 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2461 448 M
+2461 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2461 308 M
+2461 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2862 448 M
+2862 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2862 308 M
+2862 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3264 448 M
+3264 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3264 308 M
+3264 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3665 448 M
+3665 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3665 308 M
+3665 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -716,9 +732,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -726,7 +742,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -744,96 +760,24 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_create_nodevalue' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1073 448 N
-0 9 V
-292 0 V
-0 -9 V
--292 0 V
-Z stroke
-1365 448 N
-0 1867 V
-219 0 V
-0 -1867 V
--219 0 V
-Z stroke
-1584 448 N
-0 3341 V
-146 0 V
-0 -3341 V
--146 0 V
-Z stroke
-1730 448 N
-0 499 V
-219 0 V
-0 -499 V
--219 0 V
-Z stroke
-1949 448 N
-0 35 V
-219 0 V
-0 -35 V
--219 0 V
-Z stroke
-2168 448 N
-0 15 V
-219 0 V
-0 -15 V
--219 0 V
-Z stroke
-2387 448 N
-0 6 V
-219 0 V
-0 -6 V
--219 0 V
-Z stroke
-2606 448 N
-0 4 V
-146 0 V
-0 -4 V
--146 0 V
-Z stroke
-2752 448 N
-0 7 V
-219 0 V
-0 -7 V
--219 0 V
-Z stroke
-2971 448 N
-0 13 V
-220 0 V
-0 -13 V
--220 0 V
-Z stroke
-3191 448 N
-0 19 V
-146 0 V
-0 -19 V
--146 0 V
-Z stroke
-3337 448 N
-0 22 V
-219 0 V
-0 -22 V
--219 0 V
-Z stroke
-3556 448 N
-0 15 V
-292 0 V
-0 -15 V
--292 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1156 783 152 24 BoxColFill
+1.000 1307 783 152 758 BoxColFill
+1.000 1458 783 152 1070 BoxColFill
+1.000 1609 783 152 2909 BoxColFill
+1.000 1760 783 152 423 BoxColFill
+1.000 1911 783 152 31 BoxColFill
+1.000 2062 783 152 7 BoxColFill
+1.000 2213 783 152 18 BoxColFill
+1.000 2364 783 152 7 BoxColFill
+1.000 2515 783 152 2 BoxColFill
+1.000 2666 783 152 4 BoxColFill
+1.000 2817 783 152 6 BoxColFill
+1.000 2968 783 152 10 BoxColFill
+1.000 3119 783 152 9 BoxColFill
+1.000 3270 783 152 5 BoxColFill
+1.000 3421 783 152 13 BoxColFill
+1.000 3572 783 152 13 BoxColFill
+1.000 3723 783 152 15 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -842,9 +786,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 126 - 200
calibration/plot_delete_edge.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_delete_edge.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,250 +512,283 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 879 M
+854 1129 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 879 M
+770 1129 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1311 M
+854 1475 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1311 M
+770 1475 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1742 M
+854 1822 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1742 M
+770 1822 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2174 M
+854 2168 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2174 M
+770 2168 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2605 M
+854 2514 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2605 M
+770 2514 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3036 M
+854 2860 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3036 M
+770 2860 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 12000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3468 M
+854 3207 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3468 M
+770 3207 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 14000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
+854 3553 M
+63 0 V
+3150 0 R
+-63 0 V
+stroke
+770 3553 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 16000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
 854 3899 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
 770 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 16000)]
+[ [(Helvetica) 140.0 0.0 true true 0 ( 18000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1146 448 M
+1146 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1146 308 M
+1146 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1438 448 M
+1438 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1438 308 M
+1438 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1730 448 M
+1730 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1730 308 M
+1730 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2022 448 M
+2022 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2022 308 M
+2022 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2314 448 M
+2314 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2314 308 M
+2314 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2607 448 M
+2607 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2607 308 M
+2607 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2899 448 M
+2899 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2899 308 M
+2899 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3191 448 M
+3191 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3191 308 M
+3191 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3483 448 M
+3483 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3483 308 M
+3483 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3775 448 M
+3775 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3775 308 M
+3775 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -763,9 +796,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -773,7 +806,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -791,132 +824,25 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_delete_edge' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1007 448 N
-0 497 V
-152 0 V
-0 -497 V
--152 0 V
-Z stroke
-1159 448 N
-0 2731 V
-153 0 V
-0 -2731 V
--153 0 V
-Z stroke
-1312 448 N
-0 1884 V
-153 0 V
-0 -1884 V
--153 0 V
-Z stroke
-1465 448 N
-0 3143 V
-152 0 V
-0 -3143 V
--152 0 V
-Z stroke
-1617 448 N
-0 1553 V
-153 0 V
-0 -1553 V
--153 0 V
-Z stroke
-1770 448 N
-0 517 V
-153 0 V
-0 -517 V
--153 0 V
-Z stroke
-1923 448 N
-0 170 V
-152 0 V
-0 -170 V
--152 0 V
-Z stroke
-2075 448 N
-0 78 V
-153 0 V
-0 -78 V
--153 0 V
-Z stroke
-2228 448 N
-0 67 V
-153 0 V
-0 -67 V
--153 0 V
-Z stroke
-2381 448 N
-0 94 V
-152 0 V
-0 -94 V
--152 0 V
-Z stroke
-2533 448 N
-0 117 V
-153 0 V
-0 -117 V
--153 0 V
-Z stroke
-2686 448 N
-0 89 V
-153 0 V
-0 -89 V
--153 0 V
-Z stroke
-2839 448 N
-0 77 V
-152 0 V
-0 -77 V
--152 0 V
-Z stroke
-2991 448 N
-0 88 V
-153 0 V
-0 -88 V
--153 0 V
-Z stroke
-3144 448 N
-0 92 V
-153 0 V
-0 -92 V
--153 0 V
-Z stroke
-3297 448 N
-0 62 V
-152 0 V
-0 -62 V
--152 0 V
-Z stroke
-3449 448 N
-0 49 V
-153 0 V
-0 -49 V
--153 0 V
-Z stroke
-3602 448 N
-0 46 V
-153 0 V
-0 -46 V
--153 0 V
-Z stroke
-3755 448 N
-0 47 V
-152 0 V
-0 -47 V
--152 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1004 783 150 390 BoxColFill
+1.000 1153 783 151 1115 BoxColFill
+1.000 1303 783 151 2650 BoxColFill
+1.000 1453 783 151 2836 BoxColFill
+1.000 1603 783 150 1022 BoxColFill
+1.000 1752 783 151 429 BoxColFill
+1.000 1902 783 151 81 BoxColFill
+1.000 2052 783 150 56 BoxColFill
+1.000 2201 783 151 42 BoxColFill
+1.000 2351 783 151 53 BoxColFill
+1.000 2501 783 150 54 BoxColFill
+1.000 2650 783 151 58 BoxColFill
+1.000 2800 783 151 47 BoxColFill
+1.000 2950 783 151 49 BoxColFill
+1.000 3100 783 150 57 BoxColFill
+1.000 3249 783 151 77 BoxColFill
+1.000 3399 783 151 73 BoxColFill
+1.000 3549 783 150 45 BoxColFill
+1.000 3698 783 151 46 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -925,9 +851,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 103 - 165
calibration/plot_delete_node.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_delete_node.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,210 +512,222 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-686 448 M
+686 723 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 448 M
+602 723 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 941 M
+686 1120 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 941 M
+602 1120 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 50)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 1434 M
+686 1517 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 1434 M
+602 1517 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 100)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 1927 M
+686 1914 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 1927 M
+602 1914 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 150)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 2420 M
+686 2311 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 2420 M
+602 2311 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 200)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 2913 M
+686 2708 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 2913 M
+602 2708 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 250)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 3406 M
+686 3105 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 3406 M
+602 3105 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 300)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 3899 M
+686 3502 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 3899 M
+602 3502 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 350)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 448 M
-0 63 V
-0 3388 R
-0 -63 V
+686 3899 M
+63 0 V
+3318 0 R
+-63 0 V
 stroke
-686 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+602 3899 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 400)]
+] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-1062 448 M
+686 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1062 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+686 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00001)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1437 448 M
+1109 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1437 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+1109 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00002)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1813 448 M
+1531 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1813 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+1531 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00003)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2189 448 M
+1954 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2189 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+1954 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00004)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2564 448 M
+2377 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2564 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0.0001)]
-] -46.7 MCshow
+2377 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00005)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2940 448 M
+2799 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2940 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0.00012)]
-] -46.7 MCshow
+2799 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00006)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3316 448 M
+3222 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-3316 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0.00014)]
-] -46.7 MCshow
+3222 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00007)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3691 448 M
+3644 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-3691 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0.00016)]
-] -46.7 MCshow
+3644 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00008)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 0.00018)]
-] -46.7 MCshow
+4067 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00009)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -723,9 +735,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 686 3899 N
-686 448 L
+686 723 L
 3381 0 V
-0 3451 V
+0 3176 V
 -3381 0 V
 Z stroke
 1.000 UP
@@ -733,7 +745,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2311 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -751,90 +763,16 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_delete_node' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-966 448 N
-0 207 V
-140 0 V
-0 -207 V
--140 0 V
-Z stroke
-1106 448 N
-0 1430 V
-140 0 V
-0 -1430 V
--140 0 V
-Z stroke
-1246 448 N
-0 3234 V
-140 0 V
-0 -3234 V
--140 0 V
-Z stroke
-1386 448 N
-0 2149 V
-140 0 V
-0 -2149 V
--140 0 V
-Z stroke
-1526 448 N
-0 325 V
-140 0 V
-0 -325 V
--140 0 V
-Z stroke
-1666 448 N
-0 276 V
-140 0 V
-0 -276 V
--140 0 V
-Z stroke
-1806 448 N
-0 276 V
-140 0 V
-0 -276 V
--140 0 V
-Z stroke
-1946 448 N
-0 148 V
-140 0 V
-0 -148 V
--140 0 V
-Z stroke
-2086 448 N
-0 59 V
-139 0 V
-0 -59 V
--139 0 V
-Z stroke
-2225 448 N
-0 10 V
-210 0 V
-0 -10 V
--210 0 V
-Z stroke
-2435 448 N
-0 10 V
-560 0 V
-0 -10 V
--560 0 V
-Z stroke
-2995 448 N
-0 10 V
-840 0 V
-0 -10 V
--840 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 866 723 303 17 BoxColFill
+1.000 1168 723 302 986 BoxColFill
+1.000 1469 723 303 3177 BoxColFill
+1.000 1771 723 302 1192 BoxColFill
+1.000 2072 723 303 597 BoxColFill
+1.000 2374 723 302 120 BoxColFill
+1.000 2675 723 303 223 BoxColFill
+1.000 2977 723 302 136 BoxColFill
+1.000 3278 723 303 65 BoxColFill
+1.000 3580 723 302 41 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -843,9 +781,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 686 3899 N
-686 448 L
+686 723 L
 3381 0 V
-0 3451 V
+0 3176 V
 -3381 0 V
 Z stroke
 1.000 UP

+ 89 - 161
calibration/plot_read_dict.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_dict.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:27:59 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:27:59 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,105 +512,103 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-938 448 M
+938 783 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 448 M
+854 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 831 M
+938 1129 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 831 M
+854 1129 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 1215 M
+938 1475 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 1215 M
+854 1475 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 40000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 1598 M
+938 1822 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 1598 M
+854 1822 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 60000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 1982 M
+938 2168 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 1982 M
+854 2168 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 80000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 2365 M
+938 2514 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 2365 M
+854 2514 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 100000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 2749 M
+938 2860 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 2749 M
+854 2860 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 120000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 3132 M
+938 3207 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 3132 M
+854 3207 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 140000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 3516 M
+938 3553 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 3516 M
+854 3553 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 160000)]
 ] -46.7 MRshow
 1.000 UL
@@ -627,110 +625,114 @@ stroke
 1.000 UL
 LTb
 LCb setrgbcolor
-938 448 M
+938 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-938 308 M
+938 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1329 448 M
+1385 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1329 308 M
+1385 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1720 448 M
+1832 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1720 308 M
+1832 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2111 448 M
+2279 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2111 308 M
+2279 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2503 448 M
+2726 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2503 308 M
+2726 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2894 448 M
+3173 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2894 308 M
+3173 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3285 448 M
+3620 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3285 308 M
+3620 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3676 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3676 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-4067 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -738,9 +740,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 938 3899 N
-938 448 L
+938 783 L
 3129 0 V
-0 3451 V
+0 3116 V
 -3129 0 V
 Z stroke
 1.000 UP
@@ -748,7 +750,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -766,96 +768,22 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_dict' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1141 448 N
-0 126 V
-271 0 V
-0 -126 V
--271 0 V
-Z stroke
-1412 448 N
-0 2071 V
-203 0 V
-0 -2071 V
--203 0 V
-Z stroke
-1615 448 N
-0 3119 V
-203 0 V
-0 -3119 V
--203 0 V
-Z stroke
-1818 448 N
-0 1146 V
-203 0 V
-0 -1146 V
--203 0 V
-Z stroke
-2021 448 N
-0 281 V
-203 0 V
-0 -281 V
--203 0 V
-Z stroke
-2224 448 N
-0 70 V
-204 0 V
-0 -70 V
--204 0 V
-Z stroke
-2428 448 N
-0 19 V
-135 0 V
-0 -19 V
--135 0 V
-Z stroke
-2563 448 N
-0 12 V
-203 0 V
-0 -12 V
--203 0 V
-Z stroke
-2766 448 N
-0 12 V
-203 0 V
-0 -12 V
--203 0 V
-Z stroke
-2969 448 N
-0 11 V
-203 0 V
-0 -11 V
--203 0 V
-Z stroke
-3172 448 N
-0 14 V
-203 0 V
-0 -14 V
--203 0 V
-Z stroke
-3375 448 N
-0 17 V
-204 0 V
-0 -17 V
--204 0 V
-Z stroke
-3579 448 N
-0 5 V
-270 0 V
-0 -5 V
--270 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1247 783 155 75 BoxColFill
+1.000 1401 783 155 48 BoxColFill
+1.000 1555 783 155 2025 BoxColFill
+1.000 1709 783 156 2817 BoxColFill
+1.000 1864 783 155 27 BoxColFill
+1.000 2018 783 155 932 BoxColFill
+1.000 2172 783 155 202 BoxColFill
+1.000 2481 783 155 54 BoxColFill
+1.000 2635 783 155 17 BoxColFill
+1.000 2789 783 155 3 BoxColFill
+1.000 2943 783 156 8 BoxColFill
+1.000 3098 783 155 11 BoxColFill
+1.000 3252 783 155 8 BoxColFill
+1.000 3406 783 155 2 BoxColFill
+1.000 3560 783 156 10 BoxColFill
+1.000 3715 783 155 10 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -864,9 +792,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 938 3899 N
-938 448 L
+938 783 L
 3129 0 V
-0 3451 V
+0 3116 V
 -3129 0 V
 Z stroke
 1.000 UP

+ 133 - 192
calibration/plot_read_dict_edge.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_dict_edge.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:00 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:00 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,217 +512,247 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 831 M
+854 1228 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 831 M
+770 1228 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1215 M
+854 1673 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1215 M
+770 1673 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1598 M
+854 2118 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1598 M
+770 2118 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1982 M
+854 2564 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1982 M
+770 2564 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2365 M
+854 3009 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2365 M
+770 3009 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2749 M
+854 3454 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2749 M
+770 3454 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 12000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3132 M
+854 3899 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3132 M
+770 3899 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 14000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3516 M
-63 0 V
-3150 0 R
--63 0 V
+854 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-770 3516 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 16000)]
-] -46.7 MRshow
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3899 M
-63 0 V
-3150 0 R
--63 0 V
+1175 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-770 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 18000)]
-] -46.7 MRshow
+1175 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+1497 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000002)]
-] -46.7 MCshow
+1497 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1256 448 M
+1818 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1256 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000004)]
-] -46.7 MCshow
+1818 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1657 448 M
+2139 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1657 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000006)]
-] -46.7 MCshow
+2139 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2059 448 M
+2461 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2059 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000008)]
-] -46.7 MCshow
+2461 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2461 448 M
+2782 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2461 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000010)]
-] -46.7 MCshow
+2782 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2862 448 M
+3103 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2862 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000012)]
-] -46.7 MCshow
+3103 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3264 448 M
+3424 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3264 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000014)]
-] -46.7 MCshow
+3424 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3665 448 M
+3746 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3665 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000016)]
-] -46.7 MCshow
+3746 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000018)]
-] -46.7 MCshow
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -730,9 +760,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -740,7 +770,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -758,114 +788,25 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_dict_edge' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-854 448 N
-0 85 V
-132 0 V
-0 -85 V
--132 0 V
-Z stroke
-986 448 N
-0 2225 V
-178 0 V
-0 -2225 V
--178 0 V
-Z stroke
-1164 448 N
-0 3395 V
-178 0 V
-0 -3395 V
--178 0 V
-Z stroke
-1342 448 N
-0 1293 V
-178 0 V
-0 -1293 V
--178 0 V
-Z stroke
-1520 448 N
-0 257 V
-178 0 V
-0 -257 V
--178 0 V
-Z stroke
-1698 448 N
-0 68 V
-267 0 V
-0 -68 V
--267 0 V
-Z stroke
-1965 448 N
-0 21 V
-267 0 V
-0 -21 V
--267 0 V
-Z stroke
-2232 448 N
-0 15 V
-178 0 V
-0 -15 V
--178 0 V
-Z stroke
-2410 448 N
-0 26 V
-177 0 V
-0 -26 V
--177 0 V
-Z stroke
-2587 448 N
-0 31 V
-178 0 V
-0 -31 V
--178 0 V
-Z stroke
-2765 448 N
-0 33 V
-178 0 V
-0 -33 V
--178 0 V
-Z stroke
-2943 448 N
-0 39 V
-178 0 V
-0 -39 V
--178 0 V
-Z stroke
-3121 448 N
-0 62 V
-178 0 V
-0 -62 V
--178 0 V
-Z stroke
-3299 448 N
-0 73 V
-267 0 V
-0 -73 V
--267 0 V
-Z stroke
-3566 448 N
-0 59 V
-267 0 V
-0 -59 V
--267 0 V
-Z stroke
-3833 448 N
-0 68 V
-178 0 V
-0 -68 V
--178 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1009 783 156 62 BoxColFill
+1.000 1164 783 156 1220 BoxColFill
+1.000 1319 783 155 2537 BoxColFill
+1.000 1473 783 156 2691 BoxColFill
+1.000 1628 783 156 1239 BoxColFill
+1.000 1783 783 156 444 BoxColFill
+1.000 1938 783 156 122 BoxColFill
+1.000 2093 783 156 51 BoxColFill
+1.000 2248 783 155 47 BoxColFill
+1.000 2402 783 156 48 BoxColFill
+1.000 2557 783 156 35 BoxColFill
+1.000 2712 783 156 32 BoxColFill
+1.000 2867 783 156 36 BoxColFill
+1.000 3022 783 156 61 BoxColFill
+1.000 3177 783 155 81 BoxColFill
+1.000 3331 783 156 97 BoxColFill
+1.000 3486 783 156 90 BoxColFill
+1.000 3641 783 156 99 BoxColFill
+1.000 3796 783 156 97 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -874,9 +815,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 111 - 221
calibration/plot_read_dict_keys.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_dict_keys.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:27:59 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:27:59 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,206 +512,197 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+770 783 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 448 M
+686 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 793 M
+770 1406 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 793 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 200)]
+686 1406 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1138 M
+770 2029 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1138 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 400)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
-770 1483 M
-63 0 V
-3234 0 R
--63 0 V
-stroke
-686 1483 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 600)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
-770 1828 M
-63 0 V
-3234 0 R
--63 0 V
-stroke
-686 1828 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 800)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
-770 2174 M
-63 0 V
-3234 0 R
--63 0 V
-stroke
-686 2174 M
+686 2029 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2519 M
+770 2653 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2519 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1200)]
+686 2653 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2864 M
+770 3276 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2864 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1400)]
+686 3276 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3209 M
+770 3899 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 3209 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1600)]
+686 3899 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3554 M
-63 0 V
-3234 0 R
--63 0 V
+770 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-686 3554 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1800)]
-] -46.7 MRshow
+770 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3899 M
-63 0 V
-3234 0 R
--63 0 V
+1182 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-686 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
-] -46.7 MRshow
+1182 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 5x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+1594 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-770 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000005)]
-] -46.7 MCshow
+1594 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1320 448 M
+2006 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1320 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000010)]
-] -46.7 MCshow
+2006 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.5x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1869 448 M
+2419 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1869 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000015)]
-] -46.7 MCshow
+2419 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2419 448 M
+2831 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2419 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000020)]
-] -46.7 MCshow
+2831 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2.5x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2968 448 M
+3243 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2968 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000025)]
-] -46.7 MCshow
+3243 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 3x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3517 448 M
+3655 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3517 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000030)]
-] -46.7 MCshow
+3655 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 3.5x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000035)]
-] -46.7 MCshow
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -719,9 +710,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP
@@ -729,7 +720,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -747,120 +738,19 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_dict_keys' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-770 448 N
-0 3332 V
-164 0 V
-934 448 L
--164 0 V
-Z stroke
-934 448 N
-0 1620 V
-178 0 V
-0 -1620 V
--178 0 V
-Z stroke
-1112 448 N
-0 645 V
-178 0 V
-0 -645 V
--178 0 V
-Z stroke
-1290 448 N
-0 1170 V
-178 0 V
-0 -1170 V
--178 0 V
-Z stroke
-1468 448 N
-0 297 V
-179 0 V
-0 -297 V
--179 0 V
-Z stroke
-1647 448 N
-0 412 V
-178 0 V
-0 -412 V
--178 0 V
-Z stroke
-1825 448 N
-0 278 V
-178 0 V
-0 -278 V
--178 0 V
-Z stroke
-2003 448 N
-0 121 V
-178 0 V
-0 -121 V
--178 0 V
-Z stroke
-2181 448 N
-0 459 V
-179 0 V
-0 -459 V
--179 0 V
-Z stroke
-2360 448 N
-0 321 V
-178 0 V
-0 -321 V
--178 0 V
-Z stroke
-2538 448 N
-0 85 V
-178 0 V
-0 -85 V
--178 0 V
-Z stroke
-2716 448 N
-0 57 V
-178 0 V
-0 -57 V
--178 0 V
-Z stroke
-2894 448 N
-0 12 V
-179 0 V
-0 -12 V
--179 0 V
-Z stroke
-3073 448 N
-0 17 V
-178 0 V
-0 -17 V
--178 0 V
-Z stroke
-3251 448 N
-0 10 V
-178 0 V
-0 -10 V
--178 0 V
-Z stroke
-3429 448 N
-0 12 V
-178 0 V
-0 -12 V
--178 0 V
-Z stroke
-3607 448 N
-0 14 V
-179 0 V
-0 -14 V
--179 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 977 783 209 185 BoxColFill
+1.000 1185 783 208 2812 BoxColFill
+1.000 1392 783 209 1646 BoxColFill
+1.000 1600 783 208 878 BoxColFill
+1.000 1807 783 209 395 BoxColFill
+1.000 2015 783 208 97 BoxColFill
+1.000 2222 783 209 306 BoxColFill
+1.000 2430 783 208 61 BoxColFill
+1.000 2637 783 209 31 BoxColFill
+1.000 2845 783 208 2 BoxColFill
+1.000 3052 783 209 5 BoxColFill
+1.000 3260 783 208 3 BoxColFill
+1.000 3467 783 209 2 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -869,9 +759,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP

+ 88 - 193
calibration/plot_read_dict_node.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_dict_node.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:00 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:00 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,202 +512,205 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+770 783 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 448 M
+686 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 879 M
+770 1228 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 879 M
+686 1228 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 200)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1311 M
+770 1673 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1311 M
+686 1673 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 400)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1742 M
+770 2118 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1742 M
+686 2118 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 600)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2174 M
+770 2564 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2174 M
+686 2564 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 800)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2605 M
+770 3009 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2605 M
+686 3009 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3036 M
+770 3454 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 3036 M
+686 3454 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1200)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3468 M
-63 0 V
-3234 0 R
--63 0 V
-stroke
-686 3468 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1400)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
 770 3899 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
 686 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1600)]
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1400)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+770 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-770 308 M
+770 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1241 448 M
+1241 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1241 308 M
+1241 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1712 448 M
+1712 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1712 308 M
+1712 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2183 448 M
+2183 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2183 308 M
+2183 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2654 448 M
+2654 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2654 308 M
+2654 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3125 448 M
+3125 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3125 308 M
+3125 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3596 448 M
+3596 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3596 308 M
+3596 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3.5x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -715,9 +718,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP
@@ -725,7 +728,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -743,132 +746,24 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_dict_node' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-933 448 N
-0 26 V
-163 0 V
-0 -26 V
--163 0 V
-Z stroke
-1096 448 N
-0 3281 V
-163 0 V
-0 -3281 V
--163 0 V
-Z stroke
-1259 448 N
-0 552 V
-163 0 V
-0 -552 V
--163 0 V
-Z stroke
-1422 448 N
-0 183 V
-163 0 V
-0 -183 V
--163 0 V
-Z stroke
-1585 448 N
-0 47 V
-163 0 V
-0 -47 V
--163 0 V
-Z stroke
-1748 448 N
-0 9 V
-163 0 V
-0 -9 V
--163 0 V
-Z stroke
-1911 448 N
-0 19 V
-163 0 V
-0 -19 V
--163 0 V
-Z stroke
-2074 448 N
-0 185 V
-163 0 V
-0 -185 V
--163 0 V
-Z stroke
-2237 448 N
-0 464 V
-163 0 V
-0 -464 V
--163 0 V
-Z stroke
-2400 448 N
-0 405 V
-163 0 V
-0 -405 V
--163 0 V
-Z stroke
-2563 448 N
-0 160 V
-163 0 V
-0 -160 V
--163 0 V
-Z stroke
-2726 448 N
-0 209 V
-163 0 V
-0 -209 V
--163 0 V
-Z stroke
-2889 448 N
-0 201 V
-163 0 V
-0 -201 V
--163 0 V
-Z stroke
-3052 448 N
-0 134 V
-163 0 V
-0 -134 V
--163 0 V
-Z stroke
-3215 448 N
-0 88 V
-163 0 V
-0 -88 V
--163 0 V
-Z stroke
-3378 448 N
-0 37 V
-163 0 V
-0 -37 V
--163 0 V
-Z stroke
-3541 448 N
-0 26 V
-163 0 V
-0 -26 V
--163 0 V
-Z stroke
-3704 448 N
-0 4 V
-163 0 V
-0 -4 V
--163 0 V
-Z stroke
-3867 448 N
-0 6 V
-162 0 V
-0 -6 V
--162 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1058 783 146 1285 BoxColFill
+1.000 1203 783 145 2754 BoxColFill
+1.000 1347 783 145 50 BoxColFill
+1.000 1491 783 145 135 BoxColFill
+1.000 1635 783 146 17 BoxColFill
+1.000 1780 783 145 8 BoxColFill
+1.000 1924 783 145 19 BoxColFill
+1.000 2068 783 145 208 BoxColFill
+1.000 2212 783 146 317 BoxColFill
+1.000 2357 783 145 560 BoxColFill
+1.000 2501 783 145 139 BoxColFill
+1.000 2645 783 145 190 BoxColFill
+1.000 2789 783 146 103 BoxColFill
+1.000 2934 783 145 132 BoxColFill
+1.000 3078 783 145 195 BoxColFill
+1.000 3222 783 145 57 BoxColFill
+1.000 3366 783 146 50 BoxColFill
+1.000 3511 783 145 28 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -877,9 +772,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP

+ 129 - 184
calibration/plot_read_edge.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_edge.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,345 +512,290 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+854 783 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 879 M
+854 1095 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 879 M
+770 1095 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1311 M
+854 1406 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 1311 M
+770 1406 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1742 M
+854 1718 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 1742 M
+770 1718 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2174 M
+854 2029 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 2174 M
+770 2029 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2605 M
+854 2341 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 2605 M
+770 2341 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3036 M
+854 2653 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 3036 M
+770 2653 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3468 M
+854 2964 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 3468 M
+770 2964 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 7000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3899 M
+854 3276 M
 63 0 V
-3234 0 R
+3150 0 R
 -63 0 V
 stroke
-686 3899 M
+770 3276 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+854 3587 M
+63 0 V
+3150 0 R
+-63 0 V
+stroke
+770 3587 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 9000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+854 3899 M
+63 0 V
+3150 0 R
+-63 0 V
+stroke
+770 3899 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-770 308 M
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1182 448 M
+1313 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1182 308 M
+1313 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1594 448 M
+1772 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1594 308 M
+1772 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2006 448 M
+2231 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2006 308 M
+2231 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2419 448 M
+2690 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2419 308 M
+2690 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2831 448 M
+3149 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2831 308 M
+3149 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3243 448 M
+3608 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3243 308 M
+3608 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3655 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3655 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-4067 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
-[(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3899 N
-770 448 L
-3297 0 V
-0 3451 V
--3297 0 V
+854 3899 N
+854 783 L
+3213 0 V
+0 3116 V
+-3213 0 V
 Z stroke
 1.000 UP
 1.000 UL
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
 grestore
 LTb
 LCb setrgbcolor
-2418 98 M
+2460 98 M
 [ [(Helvetica) 140.0 0.0 true true 0 (Duration \(s\))]
 ] -46.7 MCshow
 LTb
 LCb setrgbcolor
-2418 4109 M
+2460 4109 M
 [ [(Helvetica) 140.0 0.0 true true 0 (Operation read_edge)]
 ] -46.7 MCshow
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_edge' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1095 448 N
-0 169 V
-163 0 V
-0 -169 V
--163 0 V
-Z stroke
-1258 448 N
-0 3022 V
-244 0 V
-0 -3022 V
--244 0 V
-Z stroke
-1502 448 N
-0 2241 V
-244 0 V
-0 -2241 V
--244 0 V
-Z stroke
-1746 448 N
-0 298 V
-163 0 V
-0 -298 V
--163 0 V
-Z stroke
-1909 448 N
-0 146 V
-162 0 V
-0 -146 V
--162 0 V
-Z stroke
-2071 448 N
-0 51 V
-244 0 V
-0 -51 V
--244 0 V
-Z stroke
-2315 448 N
-0 7 V
-245 0 V
-0 -7 V
--245 0 V
-Z stroke
-2560 448 N
-0 3 V
-162 0 V
-0 -3 V
--162 0 V
-Z stroke
-2722 448 N
-0 26 V
-163 0 V
-0 -26 V
--163 0 V
-Z stroke
-2885 448 N
-0 35 V
-244 0 V
-0 -35 V
--244 0 V
-Z stroke
-3129 448 N
-0 48 V
-244 0 V
-0 -48 V
--244 0 V
-Z stroke
-3373 448 N
-0 35 V
-163 0 V
-0 -35 V
--163 0 V
-Z stroke
-3536 448 N
-0 53 V
-162 0 V
-0 -53 V
--162 0 V
-Z stroke
-3698 448 N
-0 29 V
-163 0 V
-0 -29 V
--163 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1163 783 156 115 BoxColFill
+1.000 1318 783 155 81 BoxColFill
+1.000 1472 783 156 2923 BoxColFill
+1.000 1627 783 156 239 BoxColFill
+1.000 1782 783 155 786 BoxColFill
+1.000 1936 783 156 26 BoxColFill
+1.000 2091 783 156 81 BoxColFill
+1.000 2246 783 155 14 BoxColFill
+1.000 2400 783 156 43 BoxColFill
+1.000 2555 783 155 3 BoxColFill
+1.000 2709 783 156 3 BoxColFill
+1.000 2864 783 156 5 BoxColFill
+1.000 3019 783 155 29 BoxColFill
+1.000 3328 783 156 41 BoxColFill
+1.000 3483 783 155 13 BoxColFill
+1.000 3637 783 156 11 BoxColFill
+1.000 3792 783 155 28 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -858,11 +803,11 @@ LCb setrgbcolor
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3899 N
-770 448 L
-3297 0 V
-0 3451 V
--3297 0 V
+854 3899 N
+854 783 L
+3213 0 V
+0 3116 V
+-3213 0 V
 Z stroke
 1.000 UP
 1.000 UL

+ 132 - 215
calibration/plot_read_incoming.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_incoming.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,239 +512,258 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+770 783 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 448 M
+686 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 793 M
+770 1173 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 793 M
+686 1173 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1138 M
+770 1562 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1138 M
+686 1562 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1483 M
+770 1952 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1483 M
+686 1952 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 1828 M
+770 2341 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 1828 M
+686 2341 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2174 M
+770 2731 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2174 M
+686 2731 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2519 M
+770 3120 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2519 M
+686 3120 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 2864 M
+770 3510 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 2864 M
+686 3510 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 3500)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3209 M
+770 3899 M
 63 0 V
 3234 0 R
 -63 0 V
 stroke
-686 3209 M
+686 3899 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-770 3554 M
-63 0 V
-3234 0 R
--63 0 V
-stroke
-686 3554 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 4500)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
-770 3899 M
-63 0 V
-3234 0 R
--63 0 V
+770 783 M
+0 63 V
+0 3053 R
+0 -63 V
 stroke
-686 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 5000)]
-] -46.7 MRshow
+770 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-770 448 M
+1100 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-770 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000002)]
-] -46.7 MCshow
+1100 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1136 448 M
+1429 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1136 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000004)]
-] -46.7 MCshow
+1429 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1503 448 M
+1759 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1503 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000006)]
-] -46.7 MCshow
+1759 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1869 448 M
+2089 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1869 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000008)]
-] -46.7 MCshow
+2089 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-6)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2235 448 M
+2419 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2235 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000010)]
-] -46.7 MCshow
+2419 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2602 448 M
+2748 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2602 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000012)]
-] -46.7 MCshow
+2748 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2968 448 M
+3078 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2968 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000014)]
-] -46.7 MCshow
+3078 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3334 448 M
+3408 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3334 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000016)]
-] -46.7 MCshow
+3408 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3701 448 M
+3737 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3701 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000018)]
-] -46.7 MCshow
+3737 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 1.8x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.000020)]
-] -46.7 MCshow
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
+[(Helvetica) 112.0 70.0 true true 0 (-5)]
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -752,9 +771,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP
@@ -762,7 +781,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -780,126 +799,24 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_incoming' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-770 448 N
-0 17 V
-174 0 V
-0 -17 V
--174 0 V
-Z stroke
-944 448 N
-0 2279 V
-180 0 V
-0 -2279 V
--180 0 V
-Z stroke
-1124 448 N
-0 3137 V
-180 0 V
-0 -3137 V
--180 0 V
-Z stroke
-1304 448 N
-0 582 V
-180 0 V
-0 -582 V
--180 0 V
-Z stroke
-1484 448 N
-0 56 V
-180 0 V
-0 -56 V
--180 0 V
-Z stroke
-1664 448 N
-0 15 V
-180 0 V
-0 -15 V
--180 0 V
-Z stroke
-1844 448 N
-0 7 V
-180 0 V
-0 -7 V
--180 0 V
-Z stroke
-2024 448 N
-0 5 V
-180 0 V
-0 -5 V
--180 0 V
-Z stroke
-2204 448 N
-0 13 V
-180 0 V
-0 -13 V
--180 0 V
-Z stroke
-2384 448 N
-0 18 V
-180 0 V
-0 -18 V
--180 0 V
-Z stroke
-2564 448 N
-0 30 V
-180 0 V
-0 -30 V
--180 0 V
-Z stroke
-2744 448 N
-0 68 V
-180 0 V
-0 -68 V
--180 0 V
-Z stroke
-2924 448 N
-0 37 V
-180 0 V
-0 -37 V
--180 0 V
-Z stroke
-3104 448 N
-0 25 V
-180 0 V
-0 -25 V
--180 0 V
-Z stroke
-3284 448 N
-0 12 V
-180 0 V
-0 -12 V
--180 0 V
-Z stroke
-3464 448 N
-0 12 V
-180 0 V
-0 -12 V
--180 0 V
-Z stroke
-3644 448 N
-0 10 V
-180 0 V
-0 -10 V
--180 0 V
-Z stroke
-3824 448 N
-0 6 V
-180 0 V
-0 -6 V
--180 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1089 783 161 1002 BoxColFill
+1.000 1249 783 161 2458 BoxColFill
+1.000 1409 783 161 2896 BoxColFill
+1.000 1569 783 160 383 BoxColFill
+1.000 1728 783 161 30 BoxColFill
+1.000 1888 783 161 26 BoxColFill
+1.000 2048 783 160 6 BoxColFill
+1.000 2207 783 161 6 BoxColFill
+1.000 2367 783 161 24 BoxColFill
+1.000 2527 783 161 16 BoxColFill
+1.000 2687 783 160 23 BoxColFill
+1.000 2846 783 161 49 BoxColFill
+1.000 3006 783 161 50 BoxColFill
+1.000 3166 783 160 36 BoxColFill
+1.000 3325 783 161 16 BoxColFill
+1.000 3485 783 161 8 BoxColFill
+1.000 3645 783 161 6 BoxColFill
+1.000 3805 783 160 10 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -908,9 +825,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 770 3899 N
-770 448 L
+770 783 L
 3297 0 V
-0 3451 V
+0 3116 V
 -3297 0 V
 Z stroke
 1.000 UP

+ 93 - 170
calibration/plot_read_outgoing.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_outgoing.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,225 +512,219 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 831 M
+854 1228 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 831 M
+770 1228 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1215 M
+854 1673 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1215 M
+770 1673 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1598 M
+854 2118 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1598 M
+770 2118 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1982 M
+854 2564 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1982 M
+770 2564 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2365 M
+854 3009 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2365 M
+770 3009 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2749 M
+854 3454 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2749 M
+770 3454 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 12000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3132 M
-63 0 V
-3150 0 R
--63 0 V
-stroke
-770 3132 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 14000)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
-854 3516 M
-63 0 V
-3150 0 R
--63 0 V
-stroke
-770 3516 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 16000)]
-] -46.7 MRshow
-1.000 UL
-LTb
-LCb setrgbcolor
 854 3899 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
 770 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 18000)]
+[ [(Helvetica) 140.0 0.0 true true 0 ( 14000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-854 308 M
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1256 448 M
+1256 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1256 308 M
+1256 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1657 448 M
+1657 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1657 308 M
+1657 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2059 448 M
+2059 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2059 308 M
+2059 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2461 448 M
+2461 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2461 308 M
+2461 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2862 448 M
+2862 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2862 308 M
+2862 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3264 448 M
+3264 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3264 308 M
+3264 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3665 448 M
+3665 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3665 308 M
+3665 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -738,9 +732,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -748,7 +742,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -766,94 +760,23 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_outgoing' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1076 448 N
-296 0 V
--296 0 V
-Z stroke
-1372 448 N
-0 954 V
-222 0 V
-0 -954 V
--222 0 V
-Z stroke
-1594 448 N
-0 3315 V
-148 0 V
-0 -3315 V
--148 0 V
-Z stroke
-1742 448 N
-0 1195 V
-222 0 V
-0 -1195 V
--222 0 V
-Z stroke
-1964 448 N
-0 149 V
-222 0 V
-0 -149 V
--222 0 V
-Z stroke
-2186 448 N
-0 25 V
-147 0 V
-0 -25 V
--147 0 V
-Z stroke
-2333 448 N
-0 13 V
-222 0 V
-0 -13 V
--222 0 V
-Z stroke
-2555 448 N
-0 5 V
-222 0 V
-0 -5 V
--222 0 V
-Z stroke
-2777 448 N
-0 1 V
-148 0 V
-0 -1 V
--148 0 V
-Z stroke
-2925 448 N
-0 1 V
-222 0 V
-0 -1 V
--222 0 V
-Z stroke
-3147 448 N
-0 4 V
-222 0 V
-0 -4 V
--222 0 V
-Z stroke
-3369 448 N
-0 14 V
-222 0 V
-0 -14 V
--222 0 V
-Z stroke
-3591 448 N
-0 19 V
-296 0 V
-0 -19 V
--296 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1168 783 157 1 BoxColFill
+1.000 1324 783 158 796 BoxColFill
+1.000 1481 783 158 889 BoxColFill
+1.000 1638 783 158 3073 BoxColFill
+1.000 1795 783 158 1602 BoxColFill
+1.000 1952 783 158 188 BoxColFill
+1.000 2109 783 157 21 BoxColFill
+1.000 2265 783 158 12 BoxColFill
+1.000 2422 783 158 19 BoxColFill
+1.000 2579 783 158 5 BoxColFill
+1.000 2736 783 158 2 BoxColFill
+1.000 3049 783 158 3 BoxColFill
+1.000 3206 783 158 3 BoxColFill
+1.000 3363 783 158 8 BoxColFill
+1.000 3520 783 158 5 BoxColFill
+1.000 3677 783 157 13 BoxColFill
+1.000 3833 783 158 22 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -862,9 +785,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 82 - 168
calibration/plot_read_reverse_dict.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_reverse_dict.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:01 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:01 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,217 +512,196 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-686 448 M
+686 723 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 448 M
+602 723 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 941 M
+686 1120 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 941 M
+602 1120 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 1434 M
+686 1517 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 1434 M
+602 1517 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 40)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 1927 M
+686 1914 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 1927 M
+602 1914 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 60)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 2420 M
+686 2311 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 2420 M
+602 2311 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 80)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 2913 M
+686 2708 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 2913 M
+602 2708 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 100)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 3406 M
+686 3105 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 3406 M
+602 3105 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 120)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 3899 M
+686 3502 M
 63 0 V
 3318 0 R
 -63 0 V
 stroke
-602 3899 M
+602 3502 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 140)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-686 448 M
-0 63 V
-0 3388 R
-0 -63 V
+686 3899 M
+63 0 V
+3318 0 R
+-63 0 V
 stroke
-686 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00002)]
-] -46.7 MCshow
+602 3899 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 160)]
+] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-1024 448 M
+686 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1024 308 M
+686 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.00002)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1362 448 M
+1250 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1362 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00003)]
-] -46.7 MCshow
+1250 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00002)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1700 448 M
+1813 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-1700 308 M
+1813 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.00003)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2038 448 M
+2377 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2038 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00004)]
-] -46.7 MCshow
+2377 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00003)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2376 448 M
+2940 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2376 308 M
+2940 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.00004)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2715 448 M
+3504 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-2715 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00005)]
-] -46.7 MCshow
+3504 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.00004)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3053 448 M
+4067 723 M
 0 63 V
-0 3388 R
+0 3113 R
 0 -63 V
 stroke
-3053 308 M
+4067 639 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (0.00005)]
-] -46.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-3391 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-3391 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00006)]
-] -46.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-3729 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-3729 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00006)]
-] -46.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-4067 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.00007)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -730,9 +709,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 686 3899 N
-686 448 L
+686 723 L
 3381 0 V
-0 3451 V
+0 3176 V
 -3381 0 V
 Z stroke
 1.000 UP
@@ -740,7 +719,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2311 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -758,78 +737,13 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_reverse_dict' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-727 448 N
-0 1134 V
-264 0 V
-991 448 L
--264 0 V
-Z stroke
-991 448 N
-0 3426 V
-264 0 V
-0 -3426 V
--264 0 V
-Z stroke
-1255 448 N
-0 2662 V
-264 0 V
-0 -2662 V
--264 0 V
-Z stroke
-1519 448 N
-0 1947 V
-264 0 V
-0 -1947 V
--264 0 V
-Z stroke
-1783 448 N
-0 1159 V
-264 0 V
-0 -1159 V
--264 0 V
-Z stroke
-2047 448 N
-0 296 V
-263 0 V
-0 -296 V
--263 0 V
-Z stroke
-2310 448 N
-0 123 V
-264 0 V
-0 -123 V
--264 0 V
-Z stroke
-2574 448 N
-0 49 V
-264 0 V
-0 -49 V
--264 0 V
-Z stroke
-2838 448 N
-0 25 V
-396 0 V
-0 -25 V
--396 0 V
-Z stroke
-3234 448 N
-0 25 V
-528 0 V
-0 -25 V
--528 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 725 723 434 1033 BoxColFill
+1.000 1158 723 433 2800 BoxColFill
+1.000 1590 723 433 1847 BoxColFill
+1.000 2022 723 434 1867 BoxColFill
+1.000 2455 723 433 755 BoxColFill
+1.000 2887 723 434 358 BoxColFill
+1.000 3320 723 433 61 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -838,9 +752,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 686 3899 N
-686 448 L
+686 723 L
 3381 0 V
-0 3451 V
+0 3176 V
 -3381 0 V
 Z stroke
 1.000 UP

+ 58 - 85
calibration/plot_read_root.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_root.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:45 2017
+%%CreationDate: Fri Dec 15 16:27:59 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:45 2017)
+  /CreationDate (Fri Dec 15 16:27:59 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,50 +512,48 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
+854 783 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 448 M
+770 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0.99)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 1311 M
+854 1562 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 1311 M
+770 1562 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0.995)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 2174 M
+854 2341 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 2174 M
+770 2341 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-854 3036 M
+854 3120 M
 63 0 V
 3150 0 R
 -63 0 V
 stroke
-770 3036 M
+770 3120 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.005)]
 ] -46.7 MRshow
 1.000 UL
@@ -572,91 +570,81 @@ stroke
 1.000 UL
 LTb
 LCb setrgbcolor
-854 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-854 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000133)]
-] -46.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-1313 448 M
+854 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1313 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000133)]
-] -46.7 MCshow
-1.000 UL
-LTb
-LCb setrgbcolor
-1772 448 M
-0 63 V
-0 3388 R
-0 -63 V
-stroke
-1772 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000134)]
-] -46.7 MCshow
+854 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000012)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2231 448 M
+1497 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2231 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000134)]
-] -46.7 MCshow
+1497 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000013)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2690 448 M
+2139 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2690 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000135)]
-] -46.7 MCshow
+2139 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000013)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3149 448 M
+2782 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3149 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000135)]
-] -46.7 MCshow
+2782 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000014)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3608 448 M
+3424 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3608 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000136)]
-] -46.7 MCshow
+3424 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000015)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
-[ [(Helvetica) 140.0 0.0 true true 0 (0.0000136)]
-] -46.7 MCshow
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
+[ [(Helvetica) 140.0 0.0 true true 0 (0.000015)]
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -664,9 +652,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP
@@ -674,7 +662,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -692,22 +680,7 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_root' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-2530 448 N
-0 1726 V
-0 -1726 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1060 783 2712 1559 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -716,9 +689,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 854 3899 N
-854 448 L
+854 783 L
 3213 0 V
-0 3451 V
+0 3116 V
 -3213 0 V
 Z stroke
 1.000 UP

+ 108 - 135
calibration/plot_read_value.eps

@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: calibration/plot_read_value.eps
 %%Creator: gnuplot 5.0 patchlevel 1 (Gentoo revision r1)
-%%CreationDate: Fri Dec 15 11:05:46 2017
+%%CreationDate: Fri Dec 15 16:28:00 2017
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 482 482
 %%Orientation: Portrait
@@ -471,7 +471,7 @@ SDict begin [
   /Author (yentl)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Fri Dec 15 11:05:46 2017)
+  /CreationDate (Fri Dec 15 16:28:00 2017)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -512,95 +512,115 @@ doclip
 newpath
 (Helvetica) findfont 140 scalefont setfont
 BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {gsave BackgroundColor C clippath fill grestore} if
-/Helvetica findfont 140 scalefont setfont
-/vshift -46 def
 1.000 UL
 LTb
 LCb setrgbcolor
-938 448 M
+938 783 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 448 M
+854 783 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 879 M
+938 1095 M
+63 0 V
+3066 0 R
+-63 0 V
+stroke
+854 1095 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 10000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+938 1406 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 879 M
+854 1406 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 20000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 1311 M
+938 1718 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 1311 M
+854 1718 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 30000)]
+] -46.7 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+938 2029 M
+63 0 V
+3066 0 R
+-63 0 V
+stroke
+854 2029 M
 [ [(Helvetica) 140.0 0.0 true true 0 ( 40000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 1742 M
+938 2341 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 1742 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 60000)]
+854 2341 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 50000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 2174 M
+938 2653 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 2174 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 80000)]
+854 2653 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 60000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 2605 M
+938 2964 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 2605 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 100000)]
+854 2964 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 70000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 3036 M
+938 3276 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 3036 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 120000)]
+854 3276 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 80000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 3468 M
+938 3587 M
 63 0 V
 3066 0 R
 -63 0 V
 stroke
-854 3468 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 140000)]
+854 3587 M
+[ [(Helvetica) 140.0 0.0 true true 0 ( 90000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
@@ -611,91 +631,105 @@ LCb setrgbcolor
 -63 0 V
 stroke
 854 3899 M
-[ [(Helvetica) 140.0 0.0 true true 0 ( 160000)]
+[ [(Helvetica) 140.0 0.0 true true 0 ( 100000)]
 ] -46.7 MRshow
 1.000 UL
 LTb
 LCb setrgbcolor
-938 448 M
+938 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-938 308 M
+938 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 0)]
-] -46.7 MCshow
+] -46.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1460 448 M
+1460 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1460 308 M
+1460 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-1981 448 M
+1981 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-1981 308 M
+1981 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 4x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-2503 448 M
+2503 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-2503 308 M
+2503 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 6x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3024 448 M
+3024 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3024 308 M
+3024 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 8x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-6)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-3546 448 M
+3546 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-3546 308 M
+3546 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
-4067 448 M
+4067 783 M
 0 63 V
-0 3388 R
+0 3053 R
 0 -63 V
 stroke
-4067 308 M
+4067 699 M
+currentpoint gsave translate -45 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 ( 1.2x10)]
 [(Helvetica) 112.0 70.0 true true 0 (-5)]
-] -60.7 MCshow
+] -60.7 MLshow
+grestore
 1.000 UL
 LTb
 LCb setrgbcolor
@@ -703,9 +737,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 938 3899 N
-938 448 L
+938 783 L
 3129 0 V
-0 3451 V
+0 3116 V
 -3129 0 V
 Z stroke
 1.000 UP
@@ -713,7 +747,7 @@ Z stroke
 LTb
 LCb setrgbcolor
 LCb setrgbcolor
-112 2173 M
+112 2341 M
 currentpoint gsave translate -270 rotate 0 0 moveto
 [ [(Helvetica) 140.0 0.0 true true 0 (Frequency \(time\))]
 ] -46.7 MCshow
@@ -731,82 +765,21 @@ LCb setrgbcolor
 % Begin plot #1
 1.000 UL
 LTb
-0.58 0.00 0.83 C /Helvetica findfont 140 scalefont setfont
-LCb setrgbcolor
-3416 3766 M
-('calibration/distribution_read_value' u \(hist\($1,width\)\):\(1.0\)) Rshow
-1.000 UL
-LTb
-0.58 0.00 0.83 C 3500 3731 N
-399 0 V
-0 70 V
--399 0 V
-0 -70 V
-Z stroke
-1013 448 N
-299 0 V
--299 0 V
-Z stroke
-1312 448 N
-0 296 V
-300 0 V
-0 -296 V
--300 0 V
-Z stroke
-1612 448 N
-0 3159 V
-225 0 V
-0 -3159 V
--225 0 V
-Z stroke
-1837 448 N
-0 1374 V
-224 0 V
-0 -1374 V
--224 0 V
-Z stroke
-2061 448 N
-0 57 V
-300 0 V
-0 -57 V
--300 0 V
-Z stroke
-2361 448 N
-0 11 V
-300 0 V
-0 -11 V
--300 0 V
-Z stroke
-2661 448 N
-0 9 V
-224 0 V
-0 -9 V
--224 0 V
-Z stroke
-2885 448 N
-0 3 V
-225 0 V
-0 -3 V
--225 0 V
-Z stroke
-3110 448 N
-0 5 V
-300 0 V
-0 -5 V
--300 0 V
-Z stroke
-3410 448 N
-0 7 V
-299 0 V
-0 -7 V
--299 0 V
-Z stroke
-3709 448 N
-0 8 V
-300 0 V
-0 -8 V
--300 0 V
-Z stroke
+0.58 0.00 0.83 C 1.000 1090 783 153 1 BoxColFill
+1.000 1394 783 153 550 BoxColFill
+1.000 1546 783 153 1946 BoxColFill
+1.000 1698 783 153 2850 BoxColFill
+1.000 1850 783 153 1676 BoxColFill
+1.000 2154 783 153 63 BoxColFill
+1.000 2458 783 153 18 BoxColFill
+1.000 2610 783 153 8 BoxColFill
+1.000 2762 783 153 5 BoxColFill
+1.000 2914 783 153 7 BoxColFill
+1.000 3218 783 153 7 BoxColFill
+1.000 3370 783 153 1 BoxColFill
+1.000 3522 783 153 9 BoxColFill
+1.000 3674 783 153 13 BoxColFill
+1.000 3826 783 153 3 BoxColFill
 % End plot #1
 2.000 UL
 LTb
@@ -815,9 +788,9 @@ LCb setrgbcolor
 LTb
 LCb setrgbcolor
 938 3899 N
-938 448 L
+938 783 L
 3129 0 V
-0 3451 V
+0 3116 V
 -3129 0 V
 Z stroke
 1.000 UP

+ 1 - 1
model/model.py

@@ -536,7 +536,7 @@ args = {
         "delete_node":          0.0000,
         "delete_edge":          0.0000,
         "rule_generation":      0.0000,
-        "rules_per_phase":      2000,
+        "rules_per_phase":      5000,
     }
 
 with open("calibration/averages", 'r') as param_file: