-
Notifications
You must be signed in to change notification settings - Fork 0
/
magnet-angles.agr
3062 lines (3062 loc) · 63.7 KB
/
magnet-angles.agr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Grace project file
#
@version 50122
@page size 750, 600
@page scroll 5%
@page inout 5%
@link page off
@map font 0 to "Times-Roman", "Times-Roman"
@map font 1 to "Times-Italic", "Times-Italic"
@map font 2 to "Times-Bold", "Times-Bold"
@map font 3 to "Times-BoldItalic", "Times-BoldItalic"
@map font 4 to "Helvetica", "Helvetica"
@map font 5 to "Helvetica-Oblique", "Helvetica-Oblique"
@map font 6 to "Helvetica-Bold", "Helvetica-Bold"
@map font 7 to "Helvetica-BoldOblique", "Helvetica-BoldOblique"
@map font 8 to "Courier", "Courier"
@map font 9 to "Courier-Oblique", "Courier-Oblique"
@map font 10 to "Courier-Bold", "Courier-Bold"
@map font 11 to "Courier-BoldOblique", "Courier-BoldOblique"
@map font 12 to "Symbol", "Symbol"
@map font 13 to "ZapfDingbats", "ZapfDingbats"
@map color 0 to (255, 255, 255), "white"
@map color 1 to (0, 0, 0), "black"
@map color 2 to (255, 0, 0), "red"
@map color 3 to (0, 255, 0), "green"
@map color 4 to (0, 0, 255), "blue"
@map color 5 to (255, 255, 0), "yellow"
@map color 6 to (188, 143, 143), "brown"
@map color 7 to (220, 220, 220), "grey"
@map color 8 to (148, 0, 211), "violet"
@map color 9 to (0, 255, 255), "cyan"
@map color 10 to (255, 0, 255), "magenta"
@map color 11 to (255, 165, 0), "orange"
@map color 12 to (114, 33, 188), "indigo"
@map color 13 to (103, 7, 72), "maroon"
@map color 14 to (64, 224, 208), "turquoise"
@map color 15 to (0, 139, 0), "green4"
@reference date 0
@date wrap off
@date wrap year 1950
@default linewidth 1.0
@default linestyle 1
@default color 1
@default pattern 1
@default font 0
@default char size 1.000000
@default symbol size 1.000000
@default sformat "%.8g"
@background color 0
@page background fill on
@timestamp off
@timestamp 0.03, 0.03
@timestamp color 1
@timestamp rot 0
@timestamp font 0
@timestamp char size 1.000000
@timestamp def "Fri Nov 22 20:54:04 2013"
@with line
@ line on
@ line loctype view
@ line 0.36, 0.24125, 0.36, 0.24125
@ line linewidth 1.0
@ line linestyle 1
@ line color 1
@ line arrow 0
@ line arrow type 0
@ line arrow length 1.000000
@ line arrow layout 1.000000, 1.000000
@line def
@r0 off
@link r0 to g0
@r0 type above
@r0 linestyle 1
@r0 linewidth 1.0
@r0 color 1
@r0 line 0, 0, 0, 0
@r1 off
@link r1 to g0
@r1 type above
@r1 linestyle 1
@r1 linewidth 1.0
@r1 color 1
@r1 line 0, 0, 0, 0
@r2 off
@link r2 to g0
@r2 type above
@r2 linestyle 1
@r2 linewidth 1.0
@r2 color 1
@r2 line 0, 0, 0, 0
@r3 off
@link r3 to g0
@r3 type above
@r3 linestyle 1
@r3 linewidth 1.0
@r3 color 1
@r3 line 0, 0, 0, 0
@r4 off
@link r4 to g0
@r4 type above
@r4 linestyle 1
@r4 linewidth 1.0
@r4 color 1
@r4 line 0, 0, 0, 0
@g0 on
@g0 hidden false
@g0 type XY
@g0 stacked false
@g0 bar hgap 0.000000
@g0 fixedpoint off
@g0 fixedpoint type 0
@g0 fixedpoint xy 0.000000, 0.000000
@g0 fixedpoint format general general
@g0 fixedpoint prec 6, 6
@with g0
@ world -50, -80, 150, 80
@ stack world 0, 0, 0, 0
@ znorm 1
@ view 0.150000, 0.150000, 1.050000, 0.850000
@ title "Magnet Layout"
@ title font 0
@ title size 1.500000
@ title color 1
@ subtitle ""
@ subtitle font 0
@ subtitle size 1.000000
@ subtitle color 1
@ xaxes scale Normal
@ yaxes scale Normal
@ xaxes invert off
@ yaxes invert off
@ xaxis on
@ xaxis type zero false
@ xaxis offset 0.000000 , 0.000000
@ xaxis bar on
@ xaxis bar color 1
@ xaxis bar linestyle 1
@ xaxis bar linewidth 1.0
@ xaxis label "(cm)"
@ xaxis label layout para
@ xaxis label place auto
@ xaxis label char size 1.000000
@ xaxis label font 0
@ xaxis label color 1
@ xaxis label place normal
@ xaxis tick on
@ xaxis tick major 20
@ xaxis tick minor ticks 1
@ xaxis tick default 6
@ xaxis tick place rounded true
@ xaxis tick in
@ xaxis tick major size 1.000000
@ xaxis tick major color 1
@ xaxis tick major linewidth 1.0
@ xaxis tick major linestyle 1
@ xaxis tick major grid off
@ xaxis tick minor color 1
@ xaxis tick minor linewidth 1.0
@ xaxis tick minor linestyle 1
@ xaxis tick minor grid off
@ xaxis tick minor size 0.500000
@ xaxis ticklabel on
@ xaxis ticklabel format general
@ xaxis ticklabel prec 5
@ xaxis ticklabel formula ""
@ xaxis ticklabel append ""
@ xaxis ticklabel prepend ""
@ xaxis ticklabel angle 0
@ xaxis ticklabel skip 0
@ xaxis ticklabel stagger 0
@ xaxis ticklabel place normal
@ xaxis ticklabel offset auto
@ xaxis ticklabel offset 0.000000 , 0.010000
@ xaxis ticklabel start type auto
@ xaxis ticklabel start 0.000000
@ xaxis ticklabel stop type auto
@ xaxis ticklabel stop 0.000000
@ xaxis ticklabel char size 1.000000
@ xaxis ticklabel font 0
@ xaxis ticklabel color 1
@ xaxis tick place both
@ xaxis tick spec type none
@ yaxis on
@ yaxis type zero false
@ yaxis offset 0.000000 , 0.000000
@ yaxis bar on
@ yaxis bar color 1
@ yaxis bar linestyle 1
@ yaxis bar linewidth 1.0
@ yaxis label "(cm)"
@ yaxis label layout para
@ yaxis label place auto
@ yaxis label char size 1.000000
@ yaxis label font 0
@ yaxis label color 1
@ yaxis label place normal
@ yaxis tick on
@ yaxis tick major 20
@ yaxis tick minor ticks 1
@ yaxis tick default 6
@ yaxis tick place rounded true
@ yaxis tick in
@ yaxis tick major size 1.000000
@ yaxis tick major color 1
@ yaxis tick major linewidth 1.0
@ yaxis tick major linestyle 1
@ yaxis tick major grid off
@ yaxis tick minor color 1
@ yaxis tick minor linewidth 1.0
@ yaxis tick minor linestyle 1
@ yaxis tick minor grid off
@ yaxis tick minor size 0.500000
@ yaxis ticklabel on
@ yaxis ticklabel format general
@ yaxis ticklabel prec 5
@ yaxis ticklabel formula ""
@ yaxis ticklabel append ""
@ yaxis ticklabel prepend ""
@ yaxis ticklabel angle 0
@ yaxis ticklabel skip 0
@ yaxis ticklabel stagger 0
@ yaxis ticklabel place normal
@ yaxis ticklabel offset auto
@ yaxis ticklabel offset 0.000000 , 0.010000
@ yaxis ticklabel start type auto
@ yaxis ticklabel start 0.000000
@ yaxis ticklabel stop type auto
@ yaxis ticklabel stop 0.000000
@ yaxis ticklabel char size 1.000000
@ yaxis ticklabel font 0
@ yaxis ticklabel color 1
@ yaxis tick place both
@ yaxis tick spec type none
@ altxaxis off
@ altyaxis off
@ legend on
@ legend loctype view
@ legend 0.1, 0.95
@ legend box color 1
@ legend box pattern 1
@ legend box linewidth 1.0
@ legend box linestyle 1
@ legend box fill color 0
@ legend box fill pattern 1
@ legend font 0
@ legend char size 1.000000
@ legend color 1
@ legend length 4
@ legend vgap 1
@ legend hgap 1
@ legend invert false
@ frame type 0
@ frame linestyle 1
@ frame linewidth 1.0
@ frame color 1
@ frame pattern 1
@ frame background color 0
@ frame background pattern 0
@ s0 hidden false
@ s0 type xy
@ s0 symbol 0
@ s0 symbol size 1.000000
@ s0 symbol color 1
@ s0 symbol pattern 1
@ s0 symbol fill color 1
@ s0 symbol fill pattern 0
@ s0 symbol linewidth 1.0
@ s0 symbol linestyle 1
@ s0 symbol char 65
@ s0 symbol char font 0
@ s0 symbol skip 0
@ s0 line type 1
@ s0 line linestyle 1
@ s0 line linewidth 1.0
@ s0 line color 1
@ s0 line pattern 1
@ s0 baseline type 0
@ s0 baseline off
@ s0 dropline off
@ s0 fill type 0
@ s0 fill rule 0
@ s0 fill color 1
@ s0 fill pattern 1
@ s0 avalue off
@ s0 avalue type 2
@ s0 avalue char size 1.000000
@ s0 avalue font 0
@ s0 avalue color 1
@ s0 avalue rot 0
@ s0 avalue format general
@ s0 avalue prec 3
@ s0 avalue prepend ""
@ s0 avalue append ""
@ s0 avalue offset 0.000000 , 0.000000
@ s0 errorbar on
@ s0 errorbar place both
@ s0 errorbar color 1
@ s0 errorbar pattern 1
@ s0 errorbar size 1.000000
@ s0 errorbar linewidth 1.0
@ s0 errorbar linestyle 1
@ s0 errorbar riser linewidth 1.0
@ s0 errorbar riser linestyle 1
@ s0 errorbar riser clip off
@ s0 errorbar riser clip length 0.100000
@ s0 comment "/home/rob/Bethe-Heitler/pair/drawing/outline.dat"
@ s0 legend "Yoke Outline"
@ s1 hidden false
@ s1 type xy
@ s1 symbol 0
@ s1 symbol size 1.000000
@ s1 symbol color 2
@ s1 symbol pattern 1
@ s1 symbol fill color 2
@ s1 symbol fill pattern 0
@ s1 symbol linewidth 1.0
@ s1 symbol linestyle 1
@ s1 symbol char 65
@ s1 symbol char font 0
@ s1 symbol skip 0
@ s1 line type 1
@ s1 line linestyle 1
@ s1 line linewidth 2.0
@ s1 line color 2
@ s1 line pattern 1
@ s1 baseline type 0
@ s1 baseline off
@ s1 dropline off
@ s1 fill type 0
@ s1 fill rule 0
@ s1 fill color 1
@ s1 fill pattern 1
@ s1 avalue off
@ s1 avalue type 2
@ s1 avalue char size 1.000000
@ s1 avalue font 0
@ s1 avalue color 1
@ s1 avalue rot 0
@ s1 avalue format general
@ s1 avalue prec 3
@ s1 avalue prepend ""
@ s1 avalue append ""
@ s1 avalue offset 0.000000 , 0.000000
@ s1 errorbar on
@ s1 errorbar place both
@ s1 errorbar color 2
@ s1 errorbar pattern 1
@ s1 errorbar size 1.000000
@ s1 errorbar linewidth 1.0
@ s1 errorbar linestyle 1
@ s1 errorbar riser linewidth 1.0
@ s1 errorbar riser linestyle 1
@ s1 errorbar riser clip off
@ s1 errorbar riser clip length 0.100000
@ s1 comment "/home/rob/Bethe-Heitler/pair/drawing/target.dat"
@ s1 legend "Target"
@ s2 hidden false
@ s2 type xy
@ s2 symbol 0
@ s2 symbol size 1.000000
@ s2 symbol color 15
@ s2 symbol pattern 1
@ s2 symbol fill color 15
@ s2 symbol fill pattern 0
@ s2 symbol linewidth 1.0
@ s2 symbol linestyle 1
@ s2 symbol char 65
@ s2 symbol char font 0
@ s2 symbol skip 0
@ s2 line type 1
@ s2 line linestyle 1
@ s2 line linewidth 1.0
@ s2 line color 15
@ s2 line pattern 1
@ s2 baseline type 0
@ s2 baseline off
@ s2 dropline off
@ s2 fill type 0
@ s2 fill rule 0
@ s2 fill color 1
@ s2 fill pattern 1
@ s2 avalue off
@ s2 avalue type 2
@ s2 avalue char size 1.000000
@ s2 avalue font 0
@ s2 avalue color 1
@ s2 avalue rot 0
@ s2 avalue format general
@ s2 avalue prec 3
@ s2 avalue prepend ""
@ s2 avalue append ""
@ s2 avalue offset 0.000000 , 0.000000
@ s2 errorbar on
@ s2 errorbar place both
@ s2 errorbar color 15
@ s2 errorbar pattern 1
@ s2 errorbar size 1.000000
@ s2 errorbar linewidth 1.0
@ s2 errorbar linestyle 1
@ s2 errorbar riser linewidth 1.0
@ s2 errorbar riser linestyle 1
@ s2 errorbar riser clip off
@ s2 errorbar riser clip length 0.100000
@ s2 comment "/home/rob/Bethe-Heitler/pair/drawing/poleedge.dat"
@ s2 legend "Pole Edge"
@ s3 hidden false
@ s3 type xy
@ s3 symbol 0
@ s3 symbol size 1.000000
@ s3 symbol color 15
@ s3 symbol pattern 1
@ s3 symbol fill color 15
@ s3 symbol fill pattern 0
@ s3 symbol linewidth 1.0
@ s3 symbol linestyle 1
@ s3 symbol char 65
@ s3 symbol char font 0
@ s3 symbol skip 0
@ s3 line type 1
@ s3 line linestyle 4
@ s3 line linewidth 1.0
@ s3 line color 15
@ s3 line pattern 1
@ s3 baseline type 0
@ s3 baseline off
@ s3 dropline off
@ s3 fill type 0
@ s3 fill rule 0
@ s3 fill color 1
@ s3 fill pattern 1
@ s3 avalue off
@ s3 avalue type 2
@ s3 avalue char size 1.000000
@ s3 avalue font 0
@ s3 avalue color 1
@ s3 avalue rot 0
@ s3 avalue format general
@ s3 avalue prec 3
@ s3 avalue prepend ""
@ s3 avalue append ""
@ s3 avalue offset 0.000000 , 0.000000
@ s3 errorbar on
@ s3 errorbar place both
@ s3 errorbar color 15
@ s3 errorbar pattern 1
@ s3 errorbar size 1.000000
@ s3 errorbar linewidth 1.0
@ s3 errorbar linestyle 1
@ s3 errorbar riser linewidth 1.0
@ s3 errorbar riser linestyle 1
@ s3 errorbar riser clip off
@ s3 errorbar riser clip length 0.100000
@ s3 comment "/home/rob/Bethe-Heitler/pair/drawing/EFB.dat"
@ s3 legend "EFB"
@ s4 hidden false
@ s4 type xy
@ s4 symbol 0
@ s4 symbol size 1.000000
@ s4 symbol color 11
@ s4 symbol pattern 1
@ s4 symbol fill color 11
@ s4 symbol fill pattern 0
@ s4 symbol linewidth 1.0
@ s4 symbol linestyle 1
@ s4 symbol char 65
@ s4 symbol char font 0
@ s4 symbol skip 0
@ s4 line type 1
@ s4 line linestyle 1
@ s4 line linewidth 1.0
@ s4 line color 11
@ s4 line pattern 1
@ s4 baseline type 0
@ s4 baseline off
@ s4 dropline off
@ s4 fill type 0
@ s4 fill rule 0
@ s4 fill color 1
@ s4 fill pattern 1
@ s4 avalue off
@ s4 avalue type 2
@ s4 avalue char size 1.000000
@ s4 avalue font 0
@ s4 avalue color 1
@ s4 avalue rot 0
@ s4 avalue format general
@ s4 avalue prec 3
@ s4 avalue prepend ""
@ s4 avalue append ""
@ s4 avalue offset 0.000000 , 0.000000
@ s4 errorbar on
@ s4 errorbar place both
@ s4 errorbar color 11
@ s4 errorbar pattern 1
@ s4 errorbar size 1.000000
@ s4 errorbar linewidth 1.0
@ s4 errorbar linestyle 1
@ s4 errorbar riser linewidth 1.0
@ s4 errorbar riser linestyle 1
@ s4 errorbar riser clip off
@ s4 errorbar riser clip length 0.100000
@ s4 comment "/home/rob/Bethe-Heitler/pair/drawing/focalplane.dat"
@ s4 legend "Coil"
@ s5 hidden false
@ s5 type xy
@ s5 symbol 8
@ s5 symbol size 1.000000
@ s5 symbol color 1
@ s5 symbol pattern 1
@ s5 symbol fill color 1
@ s5 symbol fill pattern 0
@ s5 symbol linewidth 1.0
@ s5 symbol linestyle 1
@ s5 symbol char 65
@ s5 symbol char font 0
@ s5 symbol skip 0
@ s5 line type 1
@ s5 line linestyle 1
@ s5 line linewidth 1.0
@ s5 line color 6
@ s5 line pattern 1
@ s5 baseline type 0
@ s5 baseline off
@ s5 dropline off
@ s5 fill type 0
@ s5 fill rule 0
@ s5 fill color 1
@ s5 fill pattern 1
@ s5 avalue off
@ s5 avalue type 2
@ s5 avalue char size 1.000000
@ s5 avalue font 0
@ s5 avalue color 1
@ s5 avalue rot 0
@ s5 avalue format general
@ s5 avalue prec 3
@ s5 avalue prepend ""
@ s5 avalue append ""
@ s5 avalue offset 0.000000 , 0.000000
@ s5 errorbar on
@ s5 errorbar place both
@ s5 errorbar color 1
@ s5 errorbar pattern 1
@ s5 errorbar size 1.000000
@ s5 errorbar linewidth 1.0
@ s5 errorbar linestyle 1
@ s5 errorbar riser linewidth 1.0
@ s5 errorbar riser linestyle 1
@ s5 errorbar riser clip off
@ s5 errorbar riser clip length 0.100000
@ s5 comment "/home/rob/Bethe-Heitler/pair/drawing/daxis.dat"
@ s5 legend ""
@ s6 hidden false
@ s6 type xy
@ s6 symbol 0
@ s6 symbol size 1.000000
@ s6 symbol color 11
@ s6 symbol pattern 1
@ s6 symbol fill color 11
@ s6 symbol fill pattern 0
@ s6 symbol linewidth 1.0
@ s6 symbol linestyle 1
@ s6 symbol char 65
@ s6 symbol char font 0
@ s6 symbol skip 0
@ s6 line type 1
@ s6 line linestyle 1
@ s6 line linewidth 1.0
@ s6 line color 11
@ s6 line pattern 1
@ s6 baseline type 0
@ s6 baseline off
@ s6 dropline off
@ s6 fill type 0
@ s6 fill rule 0
@ s6 fill color 1
@ s6 fill pattern 1
@ s6 avalue off
@ s6 avalue type 2
@ s6 avalue char size 1.000000
@ s6 avalue font 0
@ s6 avalue color 1
@ s6 avalue rot 0
@ s6 avalue format general
@ s6 avalue prec 3
@ s6 avalue prepend ""
@ s6 avalue append ""
@ s6 avalue offset 0.000000 , 0.000000
@ s6 errorbar on
@ s6 errorbar place both
@ s6 errorbar color 11
@ s6 errorbar pattern 1
@ s6 errorbar size 1.000000
@ s6 errorbar linewidth 1.0
@ s6 errorbar linestyle 1
@ s6 errorbar riser linewidth 1.0
@ s6 errorbar riser linestyle 1
@ s6 errorbar riser clip off
@ s6 errorbar riser clip length 0.100000
@ s6 comment "/home/rob/Bethe-Heitler/pair/drawing/center.dat"
@ s6 legend ""
@ s7 hidden false
@ s7 type xy
@ s7 symbol 9
@ s7 symbol size 1.000000
@ s7 symbol color 4
@ s7 symbol pattern 1
@ s7 symbol fill color 4
@ s7 symbol fill pattern 0
@ s7 symbol linewidth 1.0
@ s7 symbol linestyle 1
@ s7 symbol char 65
@ s7 symbol char font 0
@ s7 symbol skip 0
@ s7 line type 1
@ s7 line linestyle 1
@ s7 line linewidth 2.0
@ s7 line color 4
@ s7 line pattern 1
@ s7 baseline type 0
@ s7 baseline off
@ s7 dropline off
@ s7 fill type 0
@ s7 fill rule 0
@ s7 fill color 1
@ s7 fill pattern 1
@ s7 avalue off
@ s7 avalue type 2
@ s7 avalue char size 1.000000
@ s7 avalue font 0
@ s7 avalue color 1
@ s7 avalue rot 0
@ s7 avalue format general
@ s7 avalue prec 3
@ s7 avalue prepend ""
@ s7 avalue append ""
@ s7 avalue offset 0.000000 , 0.000000
@ s7 errorbar on
@ s7 errorbar place both
@ s7 errorbar color 4
@ s7 errorbar pattern 1
@ s7 errorbar size 1.000000
@ s7 errorbar linewidth 1.0
@ s7 errorbar linestyle 1
@ s7 errorbar riser linewidth 1.0
@ s7 errorbar riser linestyle 1
@ s7 errorbar riser clip off
@ s7 errorbar riser clip length 0.100000
@ s7 comment "/home/rob/Bethe-Heitler/pair/drawing/coil.dat"
@ s7 legend "Focal Plane"
@ s8 hidden false
@ s8 type xy
@ s8 symbol 0
@ s8 symbol size 1.000000
@ s8 symbol color 1
@ s8 symbol pattern 1
@ s8 symbol fill color 1
@ s8 symbol fill pattern 0
@ s8 symbol linewidth 1.0
@ s8 symbol linestyle 1
@ s8 symbol char 65
@ s8 symbol char font 0
@ s8 symbol skip 0
@ s8 line type 1
@ s8 line linestyle 1
@ s8 line linewidth 1.0
@ s8 line color 1
@ s8 line pattern 1
@ s8 baseline type 0
@ s8 baseline off
@ s8 dropline off
@ s8 fill type 0
@ s8 fill rule 0
@ s8 fill color 1
@ s8 fill pattern 1
@ s8 avalue off
@ s8 avalue type 2
@ s8 avalue char size 1.000000
@ s8 avalue font 0
@ s8 avalue color 1
@ s8 avalue rot 0
@ s8 avalue format general
@ s8 avalue prec 3
@ s8 avalue prepend ""
@ s8 avalue append ""
@ s8 avalue offset 0.000000 , 0.000000
@ s8 errorbar on
@ s8 errorbar place both
@ s8 errorbar color 1
@ s8 errorbar pattern 1
@ s8 errorbar size 1.000000
@ s8 errorbar linewidth 1.0
@ s8 errorbar linestyle 1
@ s8 errorbar riser linewidth 1.0
@ s8 errorbar riser linestyle 1
@ s8 errorbar riser clip off
@ s8 errorbar riser clip length 0.100000
@ s8 comment "/home/rob/Bethe-Heitler/magnet3/drawing/VDC.dat"
@ s8 legend "22 MeV/c"
@ s9 hidden false
@ s9 type xy
@ s9 symbol 0
@ s9 symbol size 1.000000
@ s9 symbol color 1
@ s9 symbol pattern 1
@ s9 symbol fill color 1
@ s9 symbol fill pattern 0
@ s9 symbol linewidth 1.0
@ s9 symbol linestyle 1
@ s9 symbol char 65
@ s9 symbol char font 0
@ s9 symbol skip 0
@ s9 line type 1
@ s9 line linestyle 1
@ s9 line linewidth 1.0
@ s9 line color 1
@ s9 line pattern 1
@ s9 baseline type 0
@ s9 baseline off
@ s9 dropline off
@ s9 fill type 0
@ s9 fill rule 0
@ s9 fill color 1
@ s9 fill pattern 1
@ s9 avalue off
@ s9 avalue type 2
@ s9 avalue char size 1.000000
@ s9 avalue font 0
@ s9 avalue color 1
@ s9 avalue rot 0
@ s9 avalue format general
@ s9 avalue prec 3
@ s9 avalue prepend ""
@ s9 avalue append ""
@ s9 avalue offset 0.000000 , 0.000000
@ s9 errorbar on
@ s9 errorbar place both
@ s9 errorbar color 1
@ s9 errorbar pattern 1
@ s9 errorbar size 1.000000
@ s9 errorbar linewidth 1.0
@ s9 errorbar linestyle 1
@ s9 errorbar riser linewidth 1.0
@ s9 errorbar riser linestyle 1
@ s9 errorbar riser clip off
@ s9 errorbar riser clip length 0.100000
@ s9 comment "/home/rob/Bethe-Heitler/magnet3/drawing/VDC.dat"
@ s9 legend ""
@ s10 hidden false
@ s10 type xy
@ s10 symbol 0
@ s10 symbol size 1.000000
@ s10 symbol color 1
@ s10 symbol pattern 1
@ s10 symbol fill color 1
@ s10 symbol fill pattern 0
@ s10 symbol linewidth 1.0
@ s10 symbol linestyle 1
@ s10 symbol char 65
@ s10 symbol char font 0
@ s10 symbol skip 0
@ s10 line type 1
@ s10 line linestyle 1
@ s10 line linewidth 1.0
@ s10 line color 1
@ s10 line pattern 1
@ s10 baseline type 0
@ s10 baseline off
@ s10 dropline off
@ s10 fill type 0
@ s10 fill rule 0
@ s10 fill color 1
@ s10 fill pattern 1
@ s10 avalue off
@ s10 avalue type 2
@ s10 avalue char size 1.000000
@ s10 avalue font 0
@ s10 avalue color 1
@ s10 avalue rot 0
@ s10 avalue format general
@ s10 avalue prec 3
@ s10 avalue prepend ""
@ s10 avalue append ""
@ s10 avalue offset 0.000000 , 0.000000
@ s10 errorbar on
@ s10 errorbar place both
@ s10 errorbar color 1
@ s10 errorbar pattern 1
@ s10 errorbar size 1.000000
@ s10 errorbar linewidth 1.0
@ s10 errorbar linestyle 1
@ s10 errorbar riser linewidth 1.0
@ s10 errorbar riser linestyle 1
@ s10 errorbar riser clip off
@ s10 errorbar riser clip length 0.100000
@ s10 comment "/home/rob/Bethe-Heitler/magnet3/drawing/26.000_ray_2.dat"
@ s10 legend ""
@ s11 hidden false
@ s11 type xy
@ s11 symbol 0
@ s11 symbol size 1.000000
@ s11 symbol color 4
@ s11 symbol pattern 1
@ s11 symbol fill color 4
@ s11 symbol fill pattern 0
@ s11 symbol linewidth 1.0
@ s11 symbol linestyle 1
@ s11 symbol char 65
@ s11 symbol char font 0
@ s11 symbol skip 0
@ s11 line type 1
@ s11 line linestyle 1
@ s11 line linewidth 1.0
@ s11 line color 4
@ s11 line pattern 1
@ s11 baseline type 0
@ s11 baseline off
@ s11 dropline off
@ s11 fill type 0
@ s11 fill rule 0
@ s11 fill color 1
@ s11 fill pattern 1
@ s11 avalue off
@ s11 avalue type 2
@ s11 avalue char size 1.000000
@ s11 avalue font 0
@ s11 avalue color 1
@ s11 avalue rot 0
@ s11 avalue format general
@ s11 avalue prec 3
@ s11 avalue prepend ""
@ s11 avalue append ""
@ s11 avalue offset 0.000000 , 0.000000
@ s11 errorbar on
@ s11 errorbar place both
@ s11 errorbar color 4
@ s11 errorbar pattern 1
@ s11 errorbar size 1.000000
@ s11 errorbar linewidth 1.0
@ s11 errorbar linestyle 1
@ s11 errorbar riser linewidth 1.0
@ s11 errorbar riser linestyle 1
@ s11 errorbar riser clip off
@ s11 errorbar riser clip length 0.100000
@ s11 comment "/home/rob/Bethe-Heitler/software/24.000_ray_1.dat"
@ s11 legend "30 MeV/c"
@ s12 hidden false
@ s12 type xy
@ s12 symbol 0
@ s12 symbol size 1.000000
@ s12 symbol color 4
@ s12 symbol pattern 1
@ s12 symbol fill color 4
@ s12 symbol fill pattern 0
@ s12 symbol linewidth 1.0
@ s12 symbol linestyle 1
@ s12 symbol char 65
@ s12 symbol char font 0
@ s12 symbol skip 0
@ s12 line type 1
@ s12 line linestyle 1
@ s12 line linewidth 1.0
@ s12 line color 4
@ s12 line pattern 1
@ s12 baseline type 0
@ s12 baseline off
@ s12 dropline off
@ s12 fill type 0
@ s12 fill rule 0
@ s12 fill color 1
@ s12 fill pattern 1
@ s12 avalue off
@ s12 avalue type 2
@ s12 avalue char size 1.000000
@ s12 avalue font 0
@ s12 avalue color 1
@ s12 avalue rot 0
@ s12 avalue format general
@ s12 avalue prec 3
@ s12 avalue prepend ""
@ s12 avalue append ""
@ s12 avalue offset 0.000000 , 0.000000
@ s12 errorbar on
@ s12 errorbar place both
@ s12 errorbar color 4
@ s12 errorbar pattern 1
@ s12 errorbar size 1.000000
@ s12 errorbar linewidth 1.0
@ s12 errorbar linestyle 1
@ s12 errorbar riser linewidth 1.0
@ s12 errorbar riser linestyle 1
@ s12 errorbar riser clip off
@ s12 errorbar riser clip length 0.100000
@ s12 comment "/home/rob/Bethe-Heitler/software/24.000_ray_2.dat"
@ s12 legend ""
@ s13 hidden false
@ s13 type xy
@ s13 symbol 0
@ s13 symbol size 1.000000
@ s13 symbol color 4
@ s13 symbol pattern 1
@ s13 symbol fill color 4
@ s13 symbol fill pattern 0
@ s13 symbol linewidth 1.0
@ s13 symbol linestyle 1
@ s13 symbol char 65
@ s13 symbol char font 0
@ s13 symbol skip 0
@ s13 line type 1
@ s13 line linestyle 1
@ s13 line linewidth 1.0
@ s13 line color 4
@ s13 line pattern 1
@ s13 baseline type 0
@ s13 baseline off
@ s13 dropline off
@ s13 fill type 0
@ s13 fill rule 0
@ s13 fill color 1
@ s13 fill pattern 1
@ s13 avalue off
@ s13 avalue type 2
@ s13 avalue char size 1.000000
@ s13 avalue font 0
@ s13 avalue color 1
@ s13 avalue rot 0
@ s13 avalue format general
@ s13 avalue prec 3
@ s13 avalue prepend ""
@ s13 avalue append ""
@ s13 avalue offset 0.000000 , 0.000000
@ s13 errorbar on
@ s13 errorbar place both
@ s13 errorbar color 4
@ s13 errorbar pattern 1
@ s13 errorbar size 1.000000
@ s13 errorbar linewidth 1.0
@ s13 errorbar linestyle 1
@ s13 errorbar riser linewidth 1.0
@ s13 errorbar riser linestyle 1
@ s13 errorbar riser clip off
@ s13 errorbar riser clip length 0.100000
@ s13 comment "/home/rob/Bethe-Heitler/software/24.000_ray_3.dat"
@ s13 legend ""
@ s14 hidden false
@ s14 type xy
@ s14 symbol 0
@ s14 symbol size 1.000000
@ s14 symbol color 2
@ s14 symbol pattern 1
@ s14 symbol fill color 2
@ s14 symbol fill pattern 0
@ s14 symbol linewidth 1.0
@ s14 symbol linestyle 1
@ s14 symbol char 65
@ s14 symbol char font 0
@ s14 symbol skip 0
@ s14 line type 1
@ s14 line linestyle 1
@ s14 line linewidth 1.0
@ s14 line color 2
@ s14 line pattern 1
@ s14 baseline type 0
@ s14 baseline off
@ s14 dropline off
@ s14 fill type 0
@ s14 fill rule 0
@ s14 fill color 1
@ s14 fill pattern 1
@ s14 avalue off
@ s14 avalue type 2
@ s14 avalue char size 1.000000
@ s14 avalue font 0
@ s14 avalue color 1
@ s14 avalue rot 0
@ s14 avalue format general
@ s14 avalue prec 3
@ s14 avalue prepend ""
@ s14 avalue append ""
@ s14 avalue offset 0.000000 , 0.000000
@ s14 errorbar on
@ s14 errorbar place both
@ s14 errorbar color 2
@ s14 errorbar pattern 1
@ s14 errorbar size 1.000000
@ s14 errorbar linewidth 1.0
@ s14 errorbar linestyle 1
@ s14 errorbar riser linewidth 1.0
@ s14 errorbar riser linestyle 1
@ s14 errorbar riser clip off
@ s14 errorbar riser clip length 0.100000
@ s14 comment "/home/rob/Bethe-Heitler/software/36.000_ray_1.dat"
@ s14 legend "38 MeV/c"
@ s15 hidden false
@ s15 type xy
@ s15 symbol 0
@ s15 symbol size 1.000000
@ s15 symbol color 2
@ s15 symbol pattern 1
@ s15 symbol fill color 2