Newer
Older
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
{
"preinjector": {
"sections": [
{
"start": {"x": 19415, "z": 14125},
"components": [
{"type": "gun", "position": -300, "name": "Gun", "href": "https://puma-01.elettra.eu/spa/index.html?s=preinj_summary"},
{"type": "lens", "position": 130, "name": "LENS_P1.1", "labelReverse": [270, 1600, -70]},
{"type": "vlv", "position": 190, "name": "VLV_P1.1"},
{"type": "cm", "position": 360, "name": "CM_P1.1"},
{"type": "lens", "position": 480, "name": "LENS_P1.2", "labelReverse": [270, 1600, -50]},
{"type": "lens", "position": 600, "name": "LENS_P1.3", "labelReverse": [270, 1600, -140]},
{"type": "flsc", "position": 692, "name": "FLSC_P1.1"},
{"type": "lens", "position": 890, "name": "LENS_P1.4", "labelReverse": [270, 1600, -50]},
{"type": "lens", "position": 1050, "name": "LENS_P1.5", "labelReverse": [270, 1600, -100]},
{"type": "cm", "position": 1150, "name": "CM_P1.2"},
{"type": "quadrupolebooster", "position": 1366, "length": 50, "name": "Q_P1.1"},
{"type": "quadrupolebooster", "position": 1649, "length": 50, "name": "Q_P1.2"},
{"type": "quadrupolebooster", "position": 1932, "length": 50, "name": "Q_P1.3"},
{"type": "bpm", "position": 2182, "name": "BPM_P1.1"},
{"type": "blm", "position": 2282, "name": "BPM_P1.1_R"},
{"type": "blm", "position": 2282, "name": "BPM_P1.1_L"},
{"type": "flsc", "position": 2382, "name": "FLSC_P1.2"},
{"type": "correctorbooster", "position": 2621.5, "name": "CH_P1.1"},
{"type": "correctorbooster", "position": 2881.5, "name": "CV_P1.1"},
{"type": "vlv", "position": 3100, "name": "VLV_P1.2"},
{"type": "cavitylinac", "position": 4804, "length": 3300, "rotateY": "PI/2", "href": "https://puma-01.elettra.eu/spa/index.html?s=preinj_summary", "offset2d": [1100, 100], "name": "ACCT_P1.1"},
{"type": "vlv", "position": 6700, "name": "VLV_P1.3"},
{"type": "cm", "position": 7000, "name": "CM_P1.3"},
{"type": "correctorbooster", "position": 7256.5, "name": "CH_P1.2"},
{"type": "correctorbooster", "position": 7486.5, "name": "CV_P1.2"},
{"type": "quadrupolebooster", "position": 7772, "length": 50, "name": "Q_P1.4"},
{"type": "quadrupolebooster", "position": 8085, "length": 50, "name": "Q_P1.5"},
{"type": "quadrupolebooster", "position": 8338, "length": 50, "name": "Q_P1.6"},
{"type": "bpm", "position": 8723, "name": "BPM_P1.2"},
{"type": "blm", "position": 8783, "name": "BPM_P1.2_R"},
{"type": "blm", "position": 8783, "name": "BPM_P1.2_L"},
{"type": "flsc", "position": 9198, "name": "FLSC_P1.3"},
{"type": "cavitylinac", "position": 11281, "length": 3300, "rotateY": "PI/2", "href": "https://puma-01.elettra.eu/spa/index.html?s=preinj_summary","offset2d": [1500, 170], "name": "ACCT_P1.2"},
{"type": "vlv", "position": 13000, "name": "VLV_PTB1.1"},
{"type": "cm", "position": 13316, "name": "CM_PTB1.1"},
{"type": "correctorbooster", "position": 13663.5, "name": "CV_PTB1.1"},
{"type": "correctorbooster", "position": 13869, "name": "CH_PTB1.1"},
{"type": "bpm", "position": 14409, "name": "BPM_PTB1.1"},
{"type": "blm", "position": 14609, "name": "BPM_PTB1.1_R"},
{"type": "blm", "position": 14609, "name": "BPM_PTB1.1_L"},
{"type": "quadrupolebooster", "position": 14751.9, "length": 175, "name": "Q_PTB1.1"},
{"type": "blm", "position": 14952, "name": "BLM_Q_PTB1.1"},
{"type": "quadrupolebooster", "position": 15121.9, "length": 175, "name": "Q_PTB1.2"},
{"type": "blm", "position": 15322, "name": "BLM_Q_PTB1.2"}
]
},
{
"start": {"x": 3560, "z": 11640},
"bending": {"type": "dipolebooster", "length": 300, "name": "B_PTB1.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 100, "name": "BLM_B_PTB1.1_R", "labelReverse": [270, 1600, -50]},
{"type": "blm", "position": 100, "name": "BLM_B_PTB1.1_L", "labelReverse": [270, 1600, -50]},
{"type": "vlv", "position": 400, "name": "VLV_PTB1.2", "labelReverse": [270, 1600, -50]},
{"type": "flsc", "position": 627.9, "name": "FLSC_PTB1.2", "labelReverse": [270, 1800, -50]},
{"type": "blm", "position": 698, "name": "BLM_FLSC_PTB1.2", "labelReverse": [270, 1800, -50]},
{"type": "bpm", "position": 847.9, "name": "BPM_PTB1.3", "labelReverse": [270, 1800, -50]},
{"type": "correctorbooster", "position": 1097.9, "name": "CH_PTB1.2", "labelReverse": [270, 1400, -50]},
{"type": "correctorbooster", "position": 1297.9, "name": "CV_PTB1.2", "labelReverse": [270, 1400, -50]},
{"type": "quadrupolebooster", "position": 1535.9, "length": 175, "name": "Q_PTB1.3", "labelReverse": [270, 1400, -50]},
{"type": "blm", "position": 1436, "name": "BLM_Q_PTB1.3", "labelReverse": [270, 1600, -50]},
{"type": "quadrupolebooster", "position": 1805.9, "length": 175, "name": "Q_PTB1.4", "labelReverse": [270, 1400, -50]},
{"type": "blm", "position": 1806, "name": "BLM_Q_PTB1.4"},
{"type": "bpm", "position": 2054.9, "name": "BPM_PTB1.4"},
{"type": "quadrupolebooster", "position": 2425.9, "length": 175, "name": "Q_PTB1.5"},
{"type": "blm", "position": 2326, "name": "BLM_Q_PTB1.5"},
{"type": "correctorbooster", "position": 2744.9, "name": "CH_PTB1.3"},
{"type": "correctorbooster", "position": 2930.9, "name": "CV_PTB1.3"},
{"type": "quadrupolebooster", "position": 3183.9, "length": 175, "name": "Q_PTB1.6"},
{"type": "blm", "position": 3484, "name": "BLM_Q_PTB1.6"},
{"type": "quadrupolebooster", "position": 3553.9, "length": 175, "name": "Q_PTB1.7"},
{"type": "blm", "position": 3854, "name": "BLM_Q_PTB1.7"},
{"type": "scraper", "position": 4077.9, "name": "SCRH_PTB1.1"},
{"type": "scraper", "position": 4272.9, "name": "SCRV_PTB1.1"},
{"type": "blm", "position": 4273, "name": "BLM_SCRV_PTB1.1_R"},
{"type": "blm", "position": 4273, "name": "BLM_SCRV_PTB1.1_L"},
{"type": "flsc", "position": 4897.9, "name": "FLSC_PTB1.3"},
{"type": "correctorbooster", "position": 4517.9, "name": "CH_PTB1.4"},
{"type": "correctorbooster", "position": 4717.9, "name": "CV_PTB1.4"},
{"type": "blm", "position": 4918, "name": "BLM_FLSC_PTB1.3"},
{"type": "quadrupolebooster", "position": 5183.9, "length": 175, "name": "Q_PTB1.8"},
{"type": "blm", "position": 5184, "name": "BLM_Q_PTB1.8"},
{"type": "cm", "position": 5452.9, "name": "CM_PTB1.2"},
{"type": "bpm", "position": 5652.9, "name": "BPM_PTB1.5"},
{"type": "vlv", "position": 5850, "name": "VLV_PTB1.3"}
]
},
{
"start": {"x": -2910, "z": 9230},
"chamber": {"type": "chamber"},
"components": [
]
},
{
"start": {"x": 3560, "z": 11640},
"components": [
]
},
{
"start": {"x": 1975, "z": 11391},
"chamber": {"type": "chamber"},
"components": [
{"type": "flsc", "position": 900, "name": "FLSC_PTB1.1", "labelReverse": [90, -500, 100]}
]
}
],
"servicearea": {
"sections": [
{
"start": {"x": -2910, "z": 9230},
"components": [
]
}
]
},
"bpm": {
"orbitconf": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=preinjector.100.bpm.src",
"orbithor": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=preinjector.100.bpm",
"pos": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=preinjector.100.bpm",
"rms": "https://pwma-dev.elettra.eu/misc/bpm.php?rms&facility=preinjector",
"length": 6,
"offset": 3
},
"blm": {
"confsrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_p_ptb_a11.01(BlmConfiguration)",
"datasrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_p_ptb_a11.01/BlmData"
}
},
"booster": {
"sections": [
{
"start": {"x": -8800, "z": 8695},
"bending": {"type": "dipolebooster", "name": "B_B1.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B1.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B1.1_L"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B1.1"},
{"type": "flsc", "position": 2267, "name": "FLSC_B1.1"},
{"type": "blm", "position": 2267, "name": "BLM_FLSC_B1.1_R"},
{"type": "blm", "position": 2267, "name": "BLM_FLSC_B1.1_L"},
{"type": "dcct", "position": 3300, "name": "DCCT_B1.1"},
{"type": "bpm", "position": 3810, "name": "BPMT_B1.1"},
{"type": "quadrupolebooster", "position": 4750, "length": 280, "name": "QF_B1.2"},
{"type": "bpm", "position": 5080, "name": "BPM_B1.1"},
{"type": "sextupolebooster", "position": 5310, "name": "SF_B1.1"}
]
},
{
"start": {"x": -15050, "z": 6630},
"bending": {"type": "dipolebooster", "name": "B_B2.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B2.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B2.1_L"},
{"type": "correctorbooster", "position": 1400, "name": "CV_B2.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B2.1"},
{"type": "sextupolebooster", "position": 2010, "name": "SD_B2.1"}
]
},
{
"start": {"x": -17850, "z": 4940},
"bending": {"type": "dipolebooster", "name": "B_B3.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B3.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B3.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CH_B3.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 280, "name": "QF_B3.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B3.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SF_B3.1"}
]
},
{
"start": {"x": -20225, "z": 2665},
"bending": {"type": "dipolebooster", "name": "B_B4.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B4.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B4.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CV_B4.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 175, "name": "QD_B4.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B4.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SD_B4.1"}
]
},
{
"start": {"x": -22025, "z": -90},
"bending": {"type": "dipolebooster", "name": "B_B5.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B5.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B5.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CH_B5.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 280, "name": "QF_B5.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B5.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SF_B5.1"}
]
},
{
"start": {"x": -23165, "z": -3155},
"bending": {"type": "dipolebooster", "name": "B_B6.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B6.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B6.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CV_B6.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 175, "name": "QD_B6.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B6.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SD_B6.1"}
]
},
{
"start": {"x": -23615, "z": -6415},
"bending": {"type": "dipolebooster", "name": "B_B7.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "plc", "position": 0, "name": "SPAC_B7", "offset3d": [0, -700, 0], "offset2d": [400, 200], "labelReverse": [270, 1100, -150]},
{"type": "blm", "position": 1000, "name": "BLM_B_B7.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B7.1_L"},
{"type": "correctorbooster", "position": 1360, "name": "CH_B7.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 280, "name": "QF_B7.1"},
{"type": "vlv", "position": 1967, "name": "VLV_B7.1"}
]
},
{
"start": {"x": -23295, "z": -9690},
"bending": {"type": "dipolebooster", "name": "B_B8.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B8.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B8.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CV_B8.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 175, "name": "QD_B8.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B8.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SD_B8.1"}
]
},
{
"start": {"x": -22275, "z": -12825},
"bending": {"type": "dipolebooster", "rotateY": "-PI", "name": "B_B9.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B9.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B9.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CH_B9.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 280, "name": "QF_B9.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B9.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SF_B9.1"}
]
},
{
"start": {"x": -20590, "z": -15640},
"bending": {"type": "dipolebooster", "rotateY": "-PI", "name": "B_B10.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B10.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B10.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CV_B10.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 175, "name": "QD_B10.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B10.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SD_B10.1"}
]
},
{
"start": {"x": -18305, "z": -17990},
"bending": {"type": "dipolebooster", "rotateY": "-PI", "name": "B_B11.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B11.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B11.1_L"},
{"type": "correctorbooster", "position": 1300, "name": "CH_B11.1"},
{"type": "quadrupolebooster", "position": 1480, "length": 280, "name": "QF_B11.1"},
{"type": "bpm", "position": 1720, "name": "BPM_B11.1"},
{"type": "sextupolebooster", "position": 2080, "name": "SF_B11.1"}
]
},
{
"start": {"x": -15560, "z": -19815},
"bending": {"type": "dipolebooster", "rotateY": "-PI", "name": "B_B12.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B12.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B12.1_L"},
{"type": "correctorbooster", "position": 1400, "name": "CV_B12.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B12.1"},
{"type": "sextupolebooster", "position": 2010, "name": "SD_B12.1"}
]
},
{
"start": {"x": -12485, "z": -20960},
"bending": {"type": "dipolebooster", "rotateY": "-PI", "name": "B_B13.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "plc", "position": 0, "name": "SPAC_B13", "offset3d": [0, -700, 0], "offset2d": [-200, 500], "labelReverse": [270, 1200, -150]},
{"type": "blm", "position": 1000, "name": "BLM_B_B13.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B13.1_L"},
{"type": "quadrupolebooster", "position": 1350, "length": 280, "name": "QF_B13.1"},
{"type": "bpm", "position": 1650, "name": "BPM_B13.1"},
{"type": "sextupolebooster", "position": 2010, "name": "SF_B13.1"},
{"type": "vlv", "position": 2250, "name": "VLVKE_B13.1"},
{"type": "kicker", "position": 2710, "name": "KEB_B2.1", "name2": "KE_B13.1"},
{"type": "vlv", "position": 3250, "name": "VLVKE_B13.2"},
{"type": "correctorbooster", "position": 3560, "name": "BUMPER_B13.1"},
{"type": "quadrupolebooster", "position": 4950, "length": 175, "name": "QD_B13.2"}
]
},
{
"start": {"x": -5965, "z": -21825},
"bending": {"type": "dipolebooster", "rotateY": "-PI/2", "name": "B_B14.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B14.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B14.1_L"},
{"type": "quadrupolebooster", "position": 1250, "length": 280, "name": "QF_B14.1"},
{"type": "blm", "position": 1350, "name": "BLM_QF_B14.1_R"},
{"type": "blm", "position": 1350, "name": "BLM_QF_B14.1_L"},
{"type": "vlv", "position": 1990, "name": "VLVVE_B14.1"},
{"type": "spte", "position": 2450, "offset2d": [0, -50], "offset3d": [0, 0, 200], "ps": ["SEB_B2.1","SEB_B2.2"], "name": "SEB_B2.1 - 2.2", "name2": "SEB_B14.1 - SEB_B14.2"},
{"type": "blm", "position": 3300, "name": "BLM_SPTE_B14.1_R"},
{"type": "blm", "position": 3300, "name": "BLM_SPTE_B14.1_L"},
{"type": "correctorbooster", "position": 4262.5, "name": "CH_B14.1", "labelReverse": true},
{"type": "correctorbooster", "position": 4562.5, "name": "BUMPER_B14.2", "labelReverse": true},
{"type": "quadrupolebooster", "position": 4850, "length": 175, "name": "QD_B14.2", "labelReverse": true},
{"type": "bpm", "position": 5130, "name": "BPM_B14.1", "labelReverse": true},
{"type": "vlv", "position": 5700, "name": "VLVVE_B14.2", "labelReverse": [90, -500, 300]},
{"type": "flsc", "position": 6600, "name": "FLSC_B14.1", "labelReverse": [90, -500, 300]},
{"type": "correctorbooster", "position": 7250, "name": "BUMPER_B14.3", "labelReverse": true},
{"type": "bst", "position": 7600, "name": "BST_B14.1", "labelReverse": true},
{"type": "quadrupolebooster", "position": 8250, "length": 280, "name": "QF_B14.3", "labelReverse": true}
]
},
{
"start": {"x": 3865, "z": -20905},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B15.1", "labelReverse": true},
"chamber": {"type": "chamber"},
"components": [
{"type": "plc", "position": 0, "name": "SPAC_B15", "offset3d": [0, -700, 0], "offset2d": [-100, -350], "labelReverse": [180, 1500, 50]},
{"type": "blm", "position": 1000, "name": "BLM_B_B15.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B15.1_L"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B15.1"},
{"type": "strp", "position": 4202, "name": "STRP_B15.1"},
{"type": "quadrupolebooster", "position": 4650, "length": 280, "name": "QF_B15.2"},
{"type": "bpm", "position": 4930, "name": "BPM_B15.1"},
{"type": "sextupolebooster", "position": 5310, "name": "SF_B15.1"}
]
},
{
"start": {"x": 10125, "z": -18845},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B16.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B16.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B16.1_L"},
{"type": "correctorbooster", "position": 1400, "name": "CV_B16.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B16.1"},
{"type": "sextupolebooster", "position": 2010, "name": "SD_B16.1"}
]
},
{
"start": {"x": 12950, "z": -17160},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B17.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B17.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B17.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CH_B17.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 280, "name": "QF_B17.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B17.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SF_B17.1"}
]
},
{
"start": {"x": 15310, "z": -14885},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B18.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B18.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B18.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CV_B18.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 175, "name": "QD_B18.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B18.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SD_B18.1"}
]
},
{
"start": {"x": 17110, "z": -12120},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B19.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B19.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B19.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CH_B19.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 280, "name": "QF_B19.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B19.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SF_B19.1"}
]
},
{
"start": {"x": 18265, "z": -9050},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B20.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "plc", "position": 0, "name": "SPAC_B20", "offset3d": [0, -700, 0], "offset2d": [-500, -100], "labelReverse": [90, -250, 250]},
{"type": "blm", "position": 1000, "name": "BLM_B_B20.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B20.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CV_B20.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 175, "name": "QD_B20.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B20.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SD_B20.1"}
]
},
{
"start": {"x": 18690, "z": -5800},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B21.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B21.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B21.1_L"},
{"type": "correctorbooster", "position": 1360, "name": "CH_B21.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 280, "name": "QF_B21.1"},
{"type": "vlv", "position": 2050, "name": "VLV_B21.1"}
]
},
{
"start": {"x": 18390, "z": -2535},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B22.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B22.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B22.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CV_B22.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 175, "name": "QD_B22.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B22.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SD_B22.1"}
]
},
{
"start": {"x": 17365, "z": 580},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B23.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B23.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B23.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CH_B23.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 280, "name": "QF_B23.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B23.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SF_B23.1"}
]
},
{
"start": {"x": 15680, "z": 3405},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B24.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B24.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B24.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CV_B24.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 175, "name": "QD_B24.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B24.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SD_B24.1"}
]
},
{
"start": {"x": 13395, "z": 5785},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B25.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "plc", "position": 0, "name": "SPAC_B25", "offset3d": [0, -700, 0], "offset2d": [-100, -500], "labelReverse": [90, -200, 250]},
{"type": "blm", "position": 1000, "name": "BLM_B_B25.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B25.1_L"},
{"type": "correctorbooster", "position": 1260, "name": "CH_B25.1"},
{"type": "quadrupolebooster", "position": 1500, "length": 280, "name": "QF_B25.1"},
{"type": "bpm", "position": 1780, "name": "BPM_B25.1"},
{"type": "sextupolebooster", "position": 2150, "name": "SF_B25.1"}
]
},
{
"start": {"x": 10660, "z": 7580},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B26.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B26.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B26.1_L"},
{"type": "correctorbooster", "position": 1400, "name": "CV_B26.1"},
{"type": "quadrupolebooster", "position": 1650, "length": 175, "name": "QD_B26.1"},
{"type": "sextupolebooster", "position": 2010, "name": "SD_B26.1"}
]
},
{
"start": {"x": 7580, "z": 8750},
"bending": {"type": "dipolebooster", "rotateY": "PI", "name": "B_B27.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1000, "name": "BLM_B_B27.1_R"},
{"type": "blm", "position": 1000, "name": "BLM_B_B27.1_L"},
{"type": "quadrupolebooster", "position": 1650, "length": 280, "name": "QF_B27.1"},
{"type": "bpm", "position": 1900, "name": "BPM_B27.1"},
{"type": "sextupolebooster", "position": 2230, "name": "SF_B27.1"},
{"type": "vlv", "position": 3000, "name": "VLVRF_B27.1", "labelReverse": [90, -250, 250]},
{"type": "cavity", "position": 3300.2, "name": "RF_B27.1", "labelReverse": [90, -250, 250]},
{"type": "vlv", "position": 3700, "name": "VLVRF_B27.2", "labelReverse": [90, -250, 250]},
{"type": "quadrupolebooster", "position": 4950, "length": 175, "name": "QD_B27.2", "labelReverse": [90, -250, 250]}
]
},
{
"start": {"x": 1055, "z": 9590},
"bending": {"type": "dipolebooster", "rotateY": "PI/2", "name": "B_B28.1", "labelReverse": [90, -500, 0]},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1400, "name": "BLM_B_B28.1_R"},
{"type": "blm", "position": 1400, "name": "BLM_B_B28.1_L"},
{"type": "quadrupolebooster", "position": 1650, "length": 280, "name": "QF_B28.1", "labelReverse": [90, -500, 300]},
{"type": "flsc", "position": 2365, "name": "FLSC_B28.1", "labelReverse": [90, -500, 300]},
{"type": "vlv", "position": 2800, "name": "VLVI_B28.1", "labelReverse": [90, -500, 300]},
{"type": "blm", "position": 2665, "name": "BLM_FLSC_B27.1_R", "labelReverse": true},
{"type": "blm", "position": 2665, "name": "BLM_FLSC_B27.1_L", "labelReverse": true},
{"type": "strp", "position": 2915, "name": "STRP_B28.1", "labelReverse": true},
{"type": "spte", "position": 3418.91, "offset2d": [-50, 50], "name": "SIB_B1.1", "name2": "SI_B28.1", "labelReverse": true},
{"type": "blm", "position": 4137, "name": "BLM_SIB_B28.1_R"},
{"type": "blm", "position": 4137, "name": "BLM_SIB_B28.1_L"},
{"type": "vlv", "position": 4300, "name": "VLVI_B28.2"},
{"type": "flsc", "position": 4574, "name": "FLSC_B28.2"},
{"type": "quadrupolebooster", "position": 4887.5, "length": 175, "name": "QD_B28.2"},
{"type": "bpm", "position": 5167.5, "name": "BPM_B28.1"},
{"type": "vlv", "position": 6367, "name": "VLVKI_B28.1"},
{"type": "kicker", "position": 6937.5, "name": "KIB_B28.1", "name2": "KIB_B1.1"},
{"type": "blm", "position": 7437, "name": "BLM_KIB_B28.1_R"},
{"type": "blm", "position": 7437, "name": "BLM_KIB_B28.1_L"},
{"type": "vlv", "position": 7567, "name": "VLVKI_B28.2"},
{"type": "quadrupolebooster", "position": 8187.5, "length": 280, "name": "QF_B28.2"},
{"type": "plc", "position": 8187, "name": "SPAC_BSA1.1", "offset3d": [700, -100, -4000], "offset2d": [0, -1300], "labelReverse": [90, -250, 250]}
]
}
],
"blm": {
"confsrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_b_a11.01(BlmConfiguration)",
"datasrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_b_a11.01/BlmData"
}
},
"bts": {
"sections": [
{
"start": {"x": -3100, "z": -21558},
"components": [
{"type": "BTS_SEB1", "position": 0, "name": "BTS_SEB1"},
{"type": "BTS_SEB2", "position": 62.2, "name": "BTS_SEB2"},
{"type": "vlv", "position": 1450, "name": "VLV_BTS1.1"},
{"type": "sip", "position": 1650, "name": "SIP55_BTS1.1"},
{"type": "cm", "position": 2142.4, "name": "CM_BTS1.1"},
{"type": "flsc", "position": 2442.4, "name": "FLSC_BTS1.1"},
{"type": "blm", "position": 2392.4, "name": "BLM_FLSC_BTS1.1_R"},
{"type": "blm", "position": 2392.4, "name": "BLM_FLSC_BTS1.1_L"},
{"type": "corrector", "position": 2712.4, "name": "CH_BTS1.1"},
{"type": "corrector", "position": 2992.4, "name": "CV_BTS1.1"},
{"type": "quadrupolebooster", "position": 3244.9, "name": "Q_BTS1.1"},
{"type": "blm", "position": 3244.9, "name": "BLM_Q_BTS1.1"},
{"type": "quadrupolebooster", "position": 4044.9, "name": "Q_BTS1.2"},
{"type": "blm", "position": 4044.9, "name": "BLM_Q_BTS1.2"},
{"type": "bpm", "position": 4297.4, "name": "BPM_BTS1.1"},
{"type": "corrector", "position": 4717.4, "name": "CH_BTS1.2"},
{"type": "corrector", "position": 4997.4, "name": "CV_BTS1.2"},
{"type": "bst", "position": 5400, "name": "BST_BTS1.1"},
{"type": "bst", "position": 6200, "name": "BST_BTS1.2"},
{"type": "sip", "position": 6300, "name": "SIP55_BTS1.2"}
]
},
{
"start": {"x": 5035, "z": -21920},
"bending": {"type": "dipolebooster", "length": 1200, "name": "B_BTS1.1", "labelReverse": 180},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.1_R"},
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.1_L"},
{"type": "quadrupolebooster", "position": 2492, "name": "Q_BTS1.3"},
{"type": "blm", "position": 2492, "name": "BLM_Q_BTS1.3"},
{"type": "bpm", "position": 2744.5, "name": "BPM_BTS1.2"},
{"type": "vlv_notfound", "position": 2950, "name": "VLVP_BTS1.2"},
{"type": "sip", "position": 3150, "name": "SIP55_BTS1.3"},
{"type": "quadrupolebooster", "position": 3607, "name": "Q_BTS1.4"},
{"type": "blm", "position": 3607, "name": "BLM_Q_BTS1.4"},
{"type": "corrector", "position": 4059.5, "name": "CH_BTS1.3"},
{"type": "corrector", "position": 4339.5, "name": "CV_BTS1.3"},
{"type": "sip", "position": 7650, "name": "SIP55_BTS1.4"},
{"type": "bpm", "position": 7836, "name": "BPM_BTS1.3"},
{"type": "blm", "position": 7836, "name": "BLM_BPM_BTS1.3_R"},
{"type": "blm", "position": 7836, "name": "BLM_BPM_BTS1.3_L"},
{"type": "vlv", "position": 8050, "name": "VLV_BTS1.2"},
{"type": "plc", "position": 8400, "name": "SPAC_BTS1", "offset3d": [0, 100, -700], "offset2d": [0, 300], "labelReverse": [90, -250, 250]},
{"type": "bpm", "position": 10570.35, "name": "BPM_BTS1.4"},
{"type": "flsc", "position": 10864.35, "name": "FLSC_BTS1.2"},
{"type": "corrector", "position": 11264.35, "name": "CH_BTS1.4"},
{"type": "corrector", "position": 11544.35, "name": "CV_BTS1.4"},
{"type": "quadrupolebooster", "position": 12296.85, "name": "Q_BTS1.5"},
{"type": "blm", "position": 12297, "name": "BLM_Q_BTS1.5"},
{"type": "sip", "position": 12700, "name": "SIP55_BTS1.5"},
{"type": "quadrupolebooster", "position": 13011.85, "name": "Q_BTS1.6"},
{"type": "blm", "position": 13012, "name": "BLM_Q_BTS1.6"},
{"type": "bpm", "position": 13292.31, "name": "BPM_BTS1.5"}
]
},
{
"start": {"x": 20085, "z": -25560},
"bending": {"type": "dipolebooster", "length": 1200, "name": "B_BTS1.2"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.2_R"},
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.2_L"}
]
},
{
"start": {"x": 21860, "z": -25600},
"bending": {"type": "dipolebooster", "rotateY": "-PI/2", "length": 1200, "name": "B_BTS1.3"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.3_R"},
{"type": "blm", "position": 737, "name": "BLM_B_BTS1.3_L"},
{"type": "bst", "position": 950, "name": "BST_BTS1.3"},
{"type": "vlv", "position": 2950, "name": "VLV_BTS2.1"},
{"type": "corrector", "position": 3516.42, "name": "CH_BTS2.1"},
{"type": "corrector", "position": 3796.42, "name": "CV_BTS2.1"},
{"type": "quadrupolebooster", "position": 4149, "name": "Q_BTS2.1"},
{"type": "blm", "position": 4149, "name": "BLM_Q_BTS2.1_R"},
{"type": "blm", "position": 4149, "name": "BLM_Q_BTS2.1_L"},
{"type": "scraper", "position": 4522.15, "name": "SCRH_BTS2.1"}
]
},
{
"start": {"x": 27535, "z": -24425},
"bending": {"type": "dipolebooster", "rotateY": "PI", "length": 1200, "name": "B_BTS2.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 737, "name": "BLM_B_BTS2.1_R"},
{"type": "blm", "position": 737, "name": "BLM_B_BTS2.1_L"},
{"type": "sip", "position": 1270, "name": "SIP55_BTS2.1"},
{"type": "vgpe", "position": 1470, "name": "VGPE_BTS2.1"},
{"type": "vlv", "position": 1570, "name": "VLV_BTS2.2"},
{"type": "flsc", "position": 1849.77, "name": "FLSC_BTS2.1"},
{"type": "quadrupolebooster", "position": 2299.5, "name": "Q_BTS2.2"},
{"type": "blm", "position": 2300, "name": "BLM_Q_BTS2.2"},
{"type": "quadrupolebooster", "position": 2604.5, "name": "Q_BTS2.3"},
{"type": "blm", "position": 2605, "name": "BLM_Q_BTS2.3"},
{"type": "bpm", "position": 2857, "name": "BPM_BTS2.1"},
{"type": "corrector", "position": 3182, "name": "CH_BTS2.2"},
{"type": "corrector", "position": 3462, "name": "CV_BTS2.2"},
{"type": "sip", "position": 3700, "name": "SIP55_BTS2.2"},
{"type": "vgpi", "position": 3900, "name": "VGPI_BTS2.1"},
{"type": "quadrupolebooster", "position": 4144.5, "name": "Q_BTS2.4"},
{"type": "blm", "position": 4145, "name": "BLM_Q_BTS2.4_R"},
{"type": "blm", "position": 4145, "name": "BLM_Q_BTS2.4_L"}
]
},
{
"start": {"x": 33020, "z": -21875},
"bending": {"type": "dipolebooster", "rotateY": "PI", "length": 1200, "name": "B_BTS2.2", "labelReverse": [90, -500, 0]},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 737, "name": "BLM_B_BTS2.2_R"},
{"type": "blm", "position": 737, "name": "BLM_B_BTS2.2_L"},
{"type": "sip", "position": 1270, "name": "SIP55_BTS2.3"}
]
},
{
"start": {"x": 35040, "z": -20380},
"bending": {"type": "dipole", "rotateY": "PI", "length": 2000, "name": "B_BTS2.3", "labelReverse": [90, -500, 0]},
"chamber": {"type": "chamber"},
"components": [
{"type": "blm", "position": 1217, "name": "BLM_B_BTS2.3_R"},
{"type": "blm", "position": 1217, "name": "BLM_B_BTS2.3_L"},
{"type": "quadrupolebooster", "position": 1523.5, "name": "Q_BTS2.5", "labelReverse": true},
{"type": "blm", "position": 1524, "name": "BLM_Q_BTS2.5", "labelReverse": true},
{"type": "quadrupolebooster", "position": 1808.5, "name": "Q_BTS2.6", "labelReverse": true},
{"type": "blm", "position": 1809, "name": "BLM_Q_BTS2.6", "labelReverse": true},
{"type": "corrector", "position": 2032, "name": "CH_BTS2.3", "labelReverse": true},
{"type": "corrector", "position": 2312, "name": "CV_BTS2.3", "labelReverse": true},
{"type": "bpm", "position": 2588.5, "name": "BPM_BTS2.2", "labelReverse": true},
{"type": "sip", "position": 2870, "name": "SIP55_BTS2.4", "labelReverse": true},
{"type": "flsc", "position": 3150, "name": "FLSC_BTS2.2", "labelReverse": [90, -500, 300]},
{"type": "blm", "position": 3150, "name": "BLM_FLSC_BTS2.2", "labelReverse": true},
{"type": "cm", "position": 3481.2, "name": "CM_BTS2.1", "labelReverse": true},
{"type": "bpm", "position": 3673.2, "name": "BPM_BTS2.3", "labelReverse": true},
{"type": "bst", "position": 4000, "name": "BST_BTS2.1", "labelReverse": true},
{"type": "quadrupolebooster", "position": 4465.8, "name": "Q_BTS2.7", "labelReverse": true},
{"type": "blm", "position": 4466, "name": "BLM_Q_BTS2.7", "labelReverse": true},
{"type": "corrector", "position": 4689.3, "name": "CH_BTS2.4", "labelReverse": true},
{"type": "corrector", "position": 4969.3, "name": "CV_BTS2.4", "labelReverse": true},
{"type": "sip", "position": 5170, "name": "SIP55_BTS2.5", "labelReverse": true},
{"type": "vgpe", "position": 5370, "name": "VGPE_BTS2.2", "labelReverse": true},
{"type": "bpm", "position": 5189.7, "name": "BPM_BTS2.4", "labelReverse": true}
]
},
{
"start": {"x": 38740, "z": -13180},
"bending": {"rotateY": "PI"},
"chamber": {"type": "chamber"},
"components": [
]
}
],
"bpm": {
"orbitconf": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=bts.100.bpm.src",
"orbithor": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=bts.100.bpm",
"orbitver": "https://pwma-dev.elettra.eu/misc/bpm.php?orbitver&facility=bts",
"pos": "https://pwma-dev.elettra.eu/panther/updater.php?read&filename=bts.100.bpm",
"rms": "https://pwma-dev.elettra.eu/misc/bpm.php?rms&facility=bts",
"length": 10,
"offset": 9
},
"blm": {
"confsrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_bts_a11.01(BlmConfiguration)",
"datasrc": "https://pwma-dev.elettra.eu/rchan.php?json&valueOnly&src=srv-tango-sre-01.ecs.elettra.trieste.it:20000/sa/radio_protection/blmmaster_bts_a11.01/BlmData"
}
},
"sr": {
"sections": [
{
"start": {"x": 41320, "z": 1880},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 83, "name": "B_S1.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1365, "name": "Q3_S1.1"},
{"type": "bpm", "position": 1630, "name": "BPM_S1.2"},
{"type": "quadrupole", "position": 1995, "length": 498, "name": "Q2_S1.1"},
{"type": "sextupole", "position": 2585, "length": 115, "name": "S1_S1.1"},
{"type": "blm", "position": 2585, "name": "BERGOZ_S1_S1.1"},
{"type": "quadrupole", "position": 2995, "name": "Q1_S1.1"},
{"type": "bpm", "position": 3245, "name": "BPM_S1.3"},
{"type": "blm", "position": 3315, "name": "BERGOZ_CHV_S1.3"},
{"type": "tag", "position": 6241, "name": "TAG_S1.1"},
{"type": "vlv", "position": 3900, "name": "VLVID_S1.1"},
{"type": "blm", "position": 4050, "name": "BERGOZ_ID_S1.1"},
{"type": "corrector", "position": 4500, "ps": ["PSCH_S1.3","PSCV_S1.3"], "name": "CHV_S1.3"},
{"type": "undulator", "position": 5550, "name": "ID_S1.1", "offset2d": [100, -450]},
{"type": "undulator", "position": 6950, "name": "ID_S1.2", "offset2d": [100, -450]},
{"type": "corrector", "position": 8067, "ps": ["PSCH_S1.4","PSCV_S1.4"], "name": "CHV_S1.4"},
{"type": "blm", "position": 8550, "name": "BERGOZ_ID_S1.2"},
{"type": "vlv", "position": 8700, "name": "VLVSCT_S1"},
{"type": "bpm", "position": 9237, "name": "BPM_S1.4"},
{"type": "quadrupole", "position": 9487, "name": "Q1_S1.2"},
{"type": "sextupole", "position": 9897, "length": 115, "name": "S1_S1.2"},
{"type": "blm", "position": 9897, "name": "BERGOZ_S1_S1.2"},
{"type": "quadrupole", "position": 10487, "length": 498, "name": "Q2_S1.2"},
{"type": "bpm", "position": 10852, "name": "BPM_S1.5"},
{"type": "quadrupole", "position": 11117, "name": "Q3_S1.2"},
{"type": "bpm", "position": 11362, "name": "BPM_S1.6"},
{"type": "corrector", "position": 11600, "ps": ["PSCH_S1.5","PSCV_S1.5"], "name": "CHV_S1.5"},
{"type": "blm", "position": 11517, "name": "PHOTO_CHV_S1.5"}
]
},
{
"start": {"x": 38860, "z": 14100},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 139, "name": "B_S1.2"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1405, "length": 409, "name": "QF_S1.2"},
{"type": "bpm", "position": 1725, "name": "BPM_S1.7"},
{"type": "sextupole", "position": 1985, "name": "SF_S1.2"},
{"type": "blm", "position": 1985, "name": "BERGOZ_SF_S1.2"},
{"type": "corrector", "position": 2340, "ps": ["PSCH_S1.6","PSCV_S1.6"], "name": "CHV_S1.6"},
{"type": "corrector", "position": 3714, "ps": ["PSCH_S1.7","PSCV_S1.7"], "name": "CHV_S1.7"},
{"type": "sextupole", "position": 4059, "name": "SD_S1.1"},
{"type": "blm", "position": 4059, "name": "BERGOZ_SD_S1.1"},
{"type": "quadrupole", "position": 4559, "name": "QD_S1.1"},
{"type": "bpm", "position": 4804, "name": "BPM_S1.8"},
{"type": "sextupole", "position": 5059, "name": "SD_S1.2"},
{"type": "blm", "position": 5059, "name": "BERGOZ_SD_S1.2"},
{"type": "corrector", "position": 6778, "ps": ["PSCH_S2.1","PSCV_S2.1"], "name": "CHV_S2.1"},
{"type": "sextupole", "position": 7133, "name": "SF_S2.1"},
{"type": "blm", "position": 7133, "name": "BERGOZ_SF_S2.1"},
{"type": "bpm", "position": 7393, "name": "BPM_S2.1"},
{"type": "quadrupole", "position": 7713, "length": 409, "name": "QF_S2.1"},
{"type": "corrector", "position": 8128, "ps": ["PSCH_S2.2","PSCV_S2.2"], "name": "CHV_S2.2"},
{"type": "blm", "position": 8128, "name": "PHOTO_CHV_S2.2"}
]
},
{
"start": {"x": 34800, "z": 22360},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 189, "name": "B_S2.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1365, "name": "Q3_S2.1"},
{"type": "bpm", "position": 1630, "name": "BPM_S2.2"},
{"type": "quadrupole", "position": 1995, "length": 498, "name": "Q2_S2.1"},
{"type": "sextupole", "position": 2585, "length": 115, "name": "S1_S2.1"},
{"type": "blm", "position": 2585, "name": "BERGOZ_S1_S2.1"},
{"type": "quadrupole", "position": 2995, "name": "Q1_S2.1"},
{"type": "bpm", "position": 3245, "name": "BPM_S2.3"},
{"type": "vlv", "position": 3900, "name": "VLVID_S2.1"},
{"type": "blm", "position": 4050, "name": "BERGOZ_CHV_S2.3"},
{"type": "corrector", "position": 4500, "ps": ["PSCH_S2.3","PSCV_S2.3"], "name": "CHV_S2.3"},
{"type": "undulator", "position": 5550, "name": "ID_S2.1", "offset2d": [300, -300]},
{"type": "undulator", "position": 6950, "name": "ID_S2.2", "offset2d": [300, -300]},
{"type": "corrector", "position": 8067, "ps": ["PSCH_S2.4","PSCV_S2.4"], "name": "CHV_S2.4"},
{"type": "vlv", "position": 8700, "name": "VLVID_S2.2"},
{"type": "blm", "position": 8550, "name": "BERGOZ_CHV_S2.4"},
{"type": "bpm", "position": 9237, "name": "BPM_S2.4"},
{"type": "quadrupole", "position": 9487, "name": "Q1_S2.2"},
{"type": "sextupole", "position": 9897, "length": 115, "name": "S1_S2.2"},
{"type": "blm", "position": 9897, "name": "BERGOZ_S1_S2.2"},
{"type": "quadrupole", "position": 10487, "length": 498, "name": "Q2_S2.2"},
{"type": "bpm", "position": 10852, "name": "BPM_S2.5"},
{"type": "quadrupole", "position": 11117, "name": "Q3_S2.2"},
{"type": "bpm", "position": 11362, "name": "BPM_S2.6"},
{"type": "corrector", "position": 11617, "ps": ["PSCH_S2.5","PSCV_S2.5"], "name": "CHV_S2.5"},
{"type": "blm", "position": 11517, "name": "PHOTO_CHV_S2.5"}
]
},
{
"start": {"x": 26600, "z": 31660},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 241, "name": "B_S2.2"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1405, "length": 409, "name": "QF_S2.2"},
{"type": "bpm", "position": 1725, "name": "BPM_S2.7"},
{"type": "sextupole", "position": 1985, "name": "SF_S2.2"},
{"type": "blm", "position": 1985, "name": "BERGOZ_SF_S2.2"},
{"type": "corrector", "position": 2340, "ps": ["PSCH_S2.6","PSCV_S2.6"], "name": "CHV_S2.6"},
{"type": "flsc", "position": 3231, "name": "FLSC_S2"},
{"type": "corrector", "position": 3714, "ps": ["PSCH_S2.7","PSCV_S2.7"], "name": "CHV_S2.7"},
{"type": "sextupole", "position": 4059, "name": "SD_S2.1"},
{"type": "blm", "position": 4059, "name": "BERGOZ_SD_S2.1"},
{"type": "quadrupole", "position": 4559, "name": "QD_S2.1"},
{"type": "bpm", "position": 4804, "name": "BPM_S2.8"},
{"type": "sextupole", "position": 5059, "name": "SD_S2.2"},
{"type": "blm", "position": 5059, "name": "BERGOZ_SD_S2.2"},
{"type": "vlv", "position": 5785, "name": "VLVRF_S2.1"},
{"type": "cavity", "position": 6085.5, "name": "RF_S2.1"},
{"type": "vlv", "position": 6485, "name": "VLVRF_S2.2"},
{"type": "corrector", "position": 6778, "ps": ["PSCH_S3.1","PSCV_S3.1"], "name": "CHV_S3.1"},
{"type": "sextupole", "position": 7133, "name": "SF_S3.1"},
{"type": "blm", "position": 7133, "name": "BERGOZ_SF_S3.1"},
{"type": "bpm", "position": 7393, "name": "BPM_S3.1"},
{"type": "quadrupole", "position": 7713, "length": 409, "name": "QF_S3.1"},
{"type": "corrector", "position": 8128, "ps": ["PSCH_S3.2","PSCV_S3.2"], "name": "CHV_S3.2"},
{"type": "blm", "position": 8128, "name": "PHOTO_CHV_S3.2"}
]
},
{
"start": {"x": 18980, "z": 36740},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 295, "name": "B_S3.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1365, "name": "Q3_S3.1"},
{"type": "bpm", "position": 1630, "name": "BPM_S3.2"},
{"type": "quadrupole", "position": 1995, "length": 498, "name": "Q2_S3.1"},
{"type": "sextupole", "position": 2585, "length": 115, "name": "S1_S3.1"},
{"type": "blm", "position": 2585, "name": "BERGOZ_S1_S3.1"},
{"type": "quadrupole", "position": 2995, "name": "Q1_S3.1"},
{"type": "bpm", "position": 3245, "name": "BPM_S3.3"},
{"type": "vlv", "position": 3500, "name": "VLVID_S3.1"},
{"type": "blm", "position": 3615, "name": "BERGOZ_CHV_S3.3"},
{"type": "corrector", "position": 3715, "ps": ["PSCH_S3.3","PSCV_S3.3"], "name": "CHV_S3.3"},
{"type": "undulator", "position": 4800, "name": "ID_S3.1", "offset2d": [600, -200]},
{"type": "undulator", "position": 6200, "name": "ID_S3.2", "offset2d": [600, -200]},
{"type": "undulator", "position": 7600, "name": "ID_S3.3", "offset2d": [600, -200]},
{"type": "blm", "position": 8550, "name": "BERGOZ_ID_S3"},
{"type": "corrector", "position": 8600, "ps": ["PSCH_S3.4","PSCV_S3.4"], "name": "CHV_S3.4"},
{"type": "vlv", "position": 8900, "name": "VLVSCT_S3"},
{"type": "bpm", "position": 9237, "name": "BPM_S3.4"},
{"type": "quadrupole", "position": 9487, "name": "Q1_S3.2"},
{"type": "sextupole", "position": 9897, "length": 115, "name": "S1_S3.2"},
{"type": "blm", "position": 9897, "name": "BERGOZ_S1_S3.2"},
{"type": "quadrupole", "position": 10487, "length": 498, "name": "Q2_S3.2"},
{"type": "bpm", "position": 10852, "name": "BPM_S3.5"},
{"type": "quadrupole", "position": 11117, "name": "Q3_S3.2"},
{"type": "bpm", "position": 11362, "name": "BPM_S3.6"},
{"type": "corrector", "position": 11617, "ps": ["PSCH_S3.5","PSCV_S3.5"], "name": "CHV_S3.5"},
{"type": "blm", "position": 11517, "name": "PHOTO_CHV_S3.5"}
]
},
{
"start": {"x": 7160, "z": 40700},
"bending": {"type": "dipole", "label": "show", "rotateY": "PI", "lengthIndex": 349, "name": "B_S3.2"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1405, "length": 409, "name": "QF_S3.2"},
{"type": "bpm", "position": 1725, "name": "BPM_S3.7"},
{"type": "sextupole", "position": 1985, "name": "SF_S3.2"},
{"type": "blm", "position": 1985, "name": "BERGOZ_SF_S3.2"},
{"type": "corrector", "position": 2340, "ps": ["PSCH_S3.6","PSCV_S3.6"], "name": "CHV_S3.6"},
{"type": "corrector", "position": 3714, "ps": ["PSCH_S3.7","PSCV_S3.7"], "name": "CHV_S3.7"},
{"type": "sextupole", "position": 4059, "name": "SD_S3.1"},
{"type": "blm", "position": 4059, "name": "BERGOZ_SD_S3.1"},
{"type": "quadrupole", "position": 4559, "name": "QD_S3.1"},
{"type": "bpm", "position": 4804, "name": "BPM_S3.8"},
{"type": "sextupole", "position": 5059, "name": "SD_S3.2"},
{"type": "blm", "position": 5059, "name": "BERGOZ_SD_S3.2"},
{"type": "vlv", "position": 5785, "name": "VLVRF_S3.1"},
{"type": "cavity", "position": 6085.5, "name": "RF_S3.1"},
{"type": "vlv", "position": 6485, "name": "VLVRF_S3.2"},
{"type": "corrector", "position": 6778, "ps": ["PSCH_S4.1","PSCV_S4.1"], "name": "CHV_S4.1"},
{"type": "sextupole", "position": 7133, "name": "SF_S4.1"},
{"type": "blm", "position": 7133, "name": "BERGOZ_SF_S4.1"},
{"type": "bpm", "position": 7393, "name": "BPM_S4.1"},
{"type": "quadrupole", "position": 7713, "length": 409, "name": "QF_S4.1"},
{"type": "corrector", "position": 8128, "ps": ["PSCH_S4.2","PSCV_S4.2"], "name": "CHV_S4.2"},
{"type": "blm", "position": 8128, "name": "PHOTO_CHV_S4.2"}
]
},
{
"start": {"x": -1960, "z": 41280},
"bending": {"type": "dipole", "label": "show", "lengthIndex": 401, "name": "B_S4.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1365, "name": "Q3_S4.1"},
{"type": "bpm", "position": 1630, "name": "BPM_S4.2"},
{"type": "quadrupole", "position": 1995, "length": 498, "name": "Q2_S4.1"},
{"type": "sextupole", "position": 2585, "length": 115, "name": "S1_S4.1"},
{"type": "blm", "position": 2585, "name": "BERGOZ_S1_S4.1"},
{"type": "quadrupole", "position": 2995, "name": "Q1_S4.1"},
{"type": "bpm", "position": 3245, "name": "BPM_S4.3"},
{"type": "vlv", "position": 3900, "name": "VLVID_S4.1"},
{"type": "blm", "position": 4050, "name": "BERGOZ_CHV_S4.3"},
{"type": "corrector", "position": 4500, "ps": ["PSCH_S4.3","PSCV_S4.3"], "name": "CHV_S4.3"},
{"type": "wiggler", "position": 5550, "name": "ID_S4.1", "offset2d": [-100, 0]},
{"type": "wiggler", "position": 6950, "name": "ID_S4.2", "offset2d": [400, 100]},
{"type": "corrector", "position": 8067, "ps": ["PSCH_S4.4","PSCV_S4.4"], "name": "CHV_S4.4"},
{"type": "vlv", "position": 8700, "name": "VLVID_S4.2"},
{"type": "bpm", "position": 9237, "name": "BPM_S4.4"},
{"type": "quadrupole", "position": 9487, "name": "Q1_S4.2"},
{"type": "sextupole", "position": 9897, "length": 115, "name": "S1_S4.2"},
{"type": "blm", "position": 9897, "name": "BERGOZ_S1_S4.2"},
{"type": "quadrupole", "position": 10487, "length": 498, "name": "Q2_S4.2"},
{"type": "bpm", "position": 10852, "name": "BPM_S4.5"},
{"type": "quadrupole", "position": 11117, "name": "Q3_S4.2"},
{"type": "bpm", "position": 11362, "name": "BPM_S4.6"},
{"type": "corrector", "position": 11617, "ps": ["PSCH_S4.5","PSCV_S4.5"], "name": "CHV_S4.5"},
{"type": "blm", "position": 11517, "name": "PHOTO_CHV_S4.5"}
]
},
{
"start": {"x": -14240, "z": 38840},
"bending": {"type": "dipole", "label": "show", "lengthIndex": 453, "name": "B_S4.2"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1405, "length": 409, "name": "QF_S4.2"},
{"type": "bpm", "position": 1725, "name": "BPM_S4.7"},
{"type": "sextupole", "position": 1985, "name": "SF_S4.2"},
{"type": "blm", "position": 1985, "name": "BERGOZ_SF_S4.2"},
{"type": "corrector", "position": 2340, "ps": ["PSCH_S4.6","PSCV_S4.6"], "name": "CHV_S4.6"},
{"type": "flsc", "position": 3379, "name": "FLSC_S4"},
{"type": "corrector", "position": 3714, "ps": ["PSCH_S4.7","PSCV_S4.7"], "name": "CHV_S4.7"},
{"type": "sextupole", "position": 4059, "name": "SD_S4.1"},
{"type": "blm", "position": 4059, "name": "BERGOZ_SD_S4.1"},
{"type": "quadrupole", "position": 4559, "name": "QD_S4.1"},
{"type": "bpm", "position": 4804, "name": "BPM_S4.8"},
{"type": "sextupole", "position": 5059, "name": "SD_S4.2"},
{"type": "blm", "position": 5059, "name": "BERGOZ_SD_S4.2"},
{"type": "corrector", "position": 6778, "ps": ["PSCH_S5.1","PSCV_S5.1"], "name": "CHV_S5.1"},
{"type": "sextupole", "position": 7133, "name": "SF_S5.1"},
{"type": "blm", "position": 7133, "name": "BERGOZ_SF_S5.1"},
{"type": "bpm", "position": 7393, "name": "BPM_S5.1"},
{"type": "quadrupole", "position": 7713, "length": 409, "name": "QF_S5.1"},
{"type": "corrector", "position": 8128, "ps": ["PSCH_S5.2","PSCV_S5.2"], "name": "CHV_S5.2"},
{"type": "blm", "position": 8128, "name": "PHOTO_CHV_S5.2"}
]
},
{
"start": {"x": -22320, "z": 34780},
"bending": {"type": "dipole", "label": "show", "lengthIndex": 505, "name": "B_S5.1"},
"chamber": {"type": "chamber"},
"components": [
{"type": "quadrupole", "position": 1365, "name": "Q3_S5.1"},
{"type": "bpm", "position": 1630, "name": "BPM_S5.2"},
{"type": "quadrupole", "position": 1995, "length": 498, "name": "Q2_S5.1"},
{"type": "sextupole", "position": 2585, "length": 115, "name": "S1_S5.1"},
{"type": "blm", "position": 2585, "name": "BERGOZ_S1_S5.1"},
{"type": "quadrupole", "position": 2995, "name": "Q1_S5.1"},
{"type": "bpm", "position": 3245, "name": "BPM_S5.3"},
{"type": "vlv", "position": 3525, "name": "VLVID_S5"},
{"type": "blm", "position": 3315, "name": "BERGOZ_CHV_S5.3"},
{"type": "corrector", "position": 3715, "ps": ["PSCH_S5.3","PSCV_S5.3"], "name": "CHV_S5.3"},
{"type": "undulator", "position": 4800, "name": "ID_S5.1", "offset2d": [430, 400]},
{"type": "undulator", "position": 6200, "name": "ID_S5.2", "offset2d": [430, 400]},
{"type": "undulator", "position": 7500, "name": "ID_S5.3", "offset2d": [430, 400]},
{"type": "corrector", "position": 8600, "ps": ["PSCH_S5.4","PSCV_S5.4"], "name": "CHV_S5.4"},
{"type": "blm", "position": 8800, "name": "BERGOZ_ID_S5"},
{"type": "vlv", "position": 8900, "name": "VLVSCT_S5"},
{"type": "bpm", "position": 9237, "name": "BPM_S5.4"},
{"type": "quadrupole", "position": 9487, "name": "Q1_S5.2"},
{"type": "sextupole", "position": 9897, "length": 115, "name": "S1_S5.2"},
{"type": "blm", "position": 9897, "name": "BERGOZ_S1_S5.2"},
{"type": "quadrupole", "position": 10487, "length": 498, "name": "Q2_S5.2"},
{"type": "bpm", "position": 10852, "name": "BPM_S5.5"},
{"type": "quadrupole", "position": 11117, "name": "Q3_S5.2"},
{"type": "bpm", "position": 11362, "name": "BPM_S5.6"},
{"type": "corrector", "position": 11617, "ps": ["PSCH_S5.5","PSCV_S5.5"], "name": "CHV_S5.5"},
{"type": "blm", "position": 11517, "name": "PHOTO_CHV_S5.5"}
]
},