-
Notifications
You must be signed in to change notification settings - Fork 7
/
CHANGES
2143 lines (2131 loc) · 93.2 KB
/
CHANGES
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
Version 1.4.0:
- torus: updated TODO from KPP comments
- procServ.conf: add iocbta softioc, removed from classc6
- collimator_alarm.db: increase scan rate
- tester screen
- tordaq: update args for force syncho
- iocbta/st.cmd: enable autsave, prepare for classc6 decommissioning
- collimator_alarm.db: remove CALC spaces to stay under 40 char limit
- clas12scalerresize.opi: cleanup
- caenHvApp/op/opi/*: make background alarm-sensitive
- clas12_scaler_resize.opi: increase font size, cleanup
- hallWeather*.opi: cleanup, add alarm settings screen
- iocbta: remove temporary KPP fsd record
- asdf2.opi: tester
- bpm_alarms2.opi: bugfix
- caenhv_LTCC_isOn.db: pv name bugfix
- hall_target.db: move from monitorApp to mccApp
- caenHvApp/alarmGuidance.txt: working on improved alarm guidance
- HallB_tree.xml: the tree we ran with for KPP
- iocbta: add old bta setup
- clas12_scaler_resize.opi: view screen link bugfix, add 2H03 vacuum
- htcc-gas-calc.db: add gas integrator record
- mv hall_target.db from iocmonitor to iocmcc, add mcc_fsd.db to iocmcc, add htcc-gas-calc.db to iocmonitor
- caenhv_LTCC_isOn.db: pv name bugfix
- monitorApp/Db/Makefile: add ioc_alarms.xml
- alarm_settings.ini: HallB-HV_TALK->HallB_TALK
- mcc_fsd.db: add clone of ops FSD PVs
- jms2rdb_settings.ini: HallB-HV_TALK->HallB_TALK, add log;NAME=log to filtered out messages
- trig.stp: fix strange error
- kpp.opi: add beam availability
- alarm_bpm.db: cleanup, add NMS, prepare for separate records
- btacfg.opi: add 3 FSDs
- clascss(-alarm): add disallowed hosts
- collimator_alarm.db: change to hallb_TMIRBCK clone to reduce LINK_ERROR
- hall_target.db: change harp name
- kpp.opi: fixed font resizes properly for web
- tools/stripCharts/BLINE2/*: others got corrupted
- clas12_scaler_resize: add fsd info
- kpp.opi: add 2H03 vacuum
- beamline overview: add switchyard energy
- CLAS12_Menu.opi: add injector, remove tagger, Trigger->CosmicTrigger
- kpp.opi: add torus polarity and tagger
- add mcc tagger current copy
- ctof scaler display
- iocjscalers4: add RF
- hv_status_fcdets-KPP.opi: hide DC
- openAllBeamStrips.sh: fix, stps got corrupted
- clas12_scaler_resize.opi: fix torus power supply status, add goto target position
- trig.stp: cosmic trigger names updated
- sensorProbe*.db: add alarm hysterisis
- alarm_aiao_row_slim_delta.opi: fix wrong pv
- mcc_alarm.xml: delay=5 on positinos, delay=10 on vac
- kpp.opi: wes fixed exponential display
- ECAL.opi: add all on/off button
- LVR2.plt: add dc lv strip
- jscalerApp/Db/*alarm*: add cpu load alarms
- alarm_bpm.db: calc string was too long
- HValarmBeamline.csv: fix path
- injector.opi: convert and cleanup another missing scaler screen
- jscalers_fc.opi: cleanup scaler sum screen
- ctof scaler screen
- HVDC-KPP.opi: add lv current strip
- ioc_vme_reboot.js: bugfix
- jscalers4: add RF channels and rate calc
- btaApp: post cleanup
- torus TODO: added VCL_Delta_PT to the list
- torus LHe: fixed color code for SV8122
- torus TODO: updated list for alarm handler changes post-KPP
- torus alarms: sorted PV names
- torus alarms: added fastdaq status and interlock sums
- torus mps: added FastDAQ_Status PV for alarming
- torus mps: fixed alarm settings link to calc opi
- gas-KPP.opi: alarm sensitivity and htcc integrator
- htcc_gas.opi: integrator
- stripTool.sh: more command line options
- ctof scalers
- dc_gas.opi: alarm sensitive
- beamline strips: white bg
- harp_experts.opi: slight resize
- *TRIG.sub: got names right
- jscalers_fc.opi: screen requested by valery
- cRioApp/Db/gas-cRIO-HTCC-calc.db: new integrator record
- tordaq: prepare to force synchronization
- clas12_scaler_resize.oip: fix scaler mapping (again), add vpk scaler screen link
- Makefile: fix sub->substitutions
- monitorApp: add ioc alarms
- HallB_includes.cfg: add ioc-alarms.xml
- MakeLogEntry.java: switch to HBLOG, and prod db for run number
- DC_HV.txt: after hvbackup.py bugfix
- hvbackup.py: string search bug fix
- htcc gas screens: add integrated flow
- jscaler_ftof_fadc.opi: linking container was cropping
- jscaler_htcc_markov.opi: bug fix from Nick
- jscalerApp/Db/*TRIG*sub: better trigger scaler PV names
- clas12_scaler-PREKPP.oip: save a copy before removing defunct BOMs
- CLAS12_Menu.opi: add joerger scalers
- HVDC-KPP.opi: relative links
- ioc_jscalers.opi: add link to cpu usage
- hallWeather alarms: increase delay and count
- cagw: fixed EGU
- cagw: updated PV prefixes and added comments
- jscaler*cpu.opi: move to ioc dir
- cagw: updated config files and documentation
- cagw: renamed to gateway_clondb3.access
- solenoid/torus mps: fixed stop ramp button
- torus alarms: fixed typo
- viewer.opi: change label from YAG to BNNT
- clas12_scaler_resize.opi: fix a lot of bugs
- css_share/cameras/cctv6_nobtn.opi: add button
- hv_status_fcdets-KPP.opi: kpp cleanup
- caenhv_CTOF_isOnOffComm.db: remote #5 for KPP
- HVDC-KPP.opi: some automatic,unwanted cleanups
- clas12_scaler_resize.opi: E01-E12 insetead of full sector
- css_share/bline/scripts: kpp update
- caenhv-527.db: SY527 is too slow to be easily useful for voltage tolerance alarms
- css_share/beamline/scripts/*: update for kpp run
- css_share/det/scalers/jscaler*cpu*.opi: add
- beamline_hv_builder.js: trim down for kpp
- st.cmd.HVCTOF0: add kpp beamline records
- tools/stripCharts/: add
- clas12_scaler_resize.opi: change from FADC to DISC sums for ECAL/PCAL/FTOF
- iocmonitor/st.cmd: updates for DC 527
- monitorApp/Db/: updates for 527
- hv_status_fcdets-KPP.opi: add trimmed down version for kpp run
- caenHvApp/Db/*.sub: final beamline hv mapping for kpp run
- css_share/test: add some more testing screens
- caenHvApp/Db/: prepare new beamline channels
- HVMonitor.opi: switch to single channel screen for KPP
- clasTreeApp/op/opi/HVMonitor.opi
- CLAS12_Menu.opi: kpp cleanup
- clas12_scaler_resize.opi: Wes does relative image link
- htcc_hv.opi: remove ioc reboot from htcc menu - need to use standard ioc screens\
- plugin_customization.ini: full path to color/fonts files
- ioc_health_hv.js: change to autosave
- ioccaenhv*/st.cmd*: add autosave
- css_share/iocs/: relative links
- css_share/iocs: remove hidden linking containers
- css_share/iocs: kpp cleanup
- css_share/iocs: trim down versions for kpp run
- DC/strips/*: 30 minutes
- css alarm workspace: removing disfunctional clas12 menu
- tools/cron/dc*.crontab: add crontabs for CAENET on dc daq crates
- CLAS12_Menu.opi: add hall weather, new camera, condense
- clas12_sacler_resize.opi: fix some more pvs, add beam destination
- add ioc dirs for HVDC
- tagger.opi: fix beam destination calc
- hallWeather.opi: update to final locations
- sensorProbe1.opi: switch from :Temp to _Temp to jive with alarms
- bin/clascss(-alarm): donot let run it on clondb3
- collimator_alarm.xml: rename component
- mcc_alarm.xml: rename component
- sensorProbeApp/Db/*|iocweather/st.cmd: update after installing all 3 AKCPs
- prologix_all_slim.js: show em all, after swapping in for failures
- monitorApp/Db/collimator_alarm*: fix .CALC mistake
- HallB_includes.cfg: all alarms for kpp now running
- caenHvApp/Db/Makefile: add beamline alarms
- HVCTOF0_BLINE.sub: final beamline HV channels in HVCTOF0
- css_share/det/CTOF: start a geometrically correct scaler screen
- hallWeather.xml: add hall weather alarms
- HValarmBeamline.*: add beamline hv alarms
- iocmonitor/st.cmd: add collimator alarm record
- cRioApp/Db/Makefile: add LTCC/DC alarm files
- cRioApp/Db/*.xml: Gas System --> Gas, and fix PV naming mistakes
- gas alarms: minor fixes (DC/IOCS)
- HVDC_fixers.opi: invisibilize scan setting until in all burt snapshots
- vmeCrateAlarms: add missing crates
- sensorProbeApp: finalize PV names
- gas_cRIO_DC|LTCC.xml: actions etc
- gas-KPP.opi: add mising alarm screen actions
- solenoid/torus: fixed StopRamp
- gas: updated MYA lists, likely need deadband mods
- Merge branch 'hotfix-v1.4.0' of https://github.com/jeffersonlab/clas12-epics into hotfix-v1.4.0
- 2H01 harp is added, seems working
- .setup.sh: trimdown address list
- .setup: trim down address list
- plugin_customization.ini: trimdown address list
- iocgasSystem86/st.cmd: comment out missed HTCC records
- vmeCratesApp: add svt1/2/3, fix missing adcctof1 PVs
- gateway: added r/w access for gateway on clonioc1
- torus LHe: added SV8122 (opi)
- solenoid LHe: added TP8622A/B for WCL
- torus LHe: added SV8122
- solenoid mps: fixed field direction
- torus: removed invalid cryo PVs
- harp screens: 2H00->2H01
- jscalers_CTOF.cmd: HTCC FADCs now in same crate with CTOF
- jscalersApp: new HTCC FADC crate/slot assignments
- HallB_includes.cfg: add alarms, still commented out
- dclv.xml: increase delay, add guidance
- collimator_alarm.xml: add it
- collimator_alarm.db: add if its not at home or a proper collimator, instead of just at wrong collimator
- cRioApp/Db/*DC|HTCC.xml: add KPP gas alarms
- A6551.db: set HHSV and HIHI
- check_archive.py: fix inconsequential "bug"
- TODO: add auto startup of HVDC iocs on dc13/dc33
- hv_status_fcdets.opi: absolute->relative links
- clas12_scaler_resize.opi: fix some readbacks overflowing their box
- caenHv527App/burt: add SEC2-ONLY KPP scan settings
- css_share/det/DC: KPP cleanup
- harp_scans.opi: switch from 2H02 (classc4) to 2H00 (classc1) (final name to be determined)
- iocdclv_S2R2|S6R2: swap in 2 spare gpib-eth converters (1 repaired)
- ioc screens: remove iocjscalersHTCC (now in same crate as CTOF)
- dchvWaveformApp/*.opi: cleanup
- check_archive.py: add -r reverse option (default behavior unchanged)
- CLAS12_Menu.opi: add some KPP-specific screens to top of menus
- dchvwf-legend-dark.opi: cosmietics
- google-chrome.sh: add --proxy-auto-detect
- monitorApp/Db/*DC*: prepare proper calcs for 527 (unfinished)
- ioccaenhv/save_restore.cmd: add autosave
- gas-KPP.opi: add simplified KPP gas screen
- A6551lsim-measuredOnly.opi: add simplified screen for embedding
- annunciator startup script: fix
- addres lists: remove 68.161 and 68.37, now going through gateway on clonioc1 (along with torus crio stuff)
- vmeCratesApp: ctof1->adcctof1
- vmeCratesAddress.env: add adcctof1
- jscalersApp/Db/*CTOF*: new slots for FADCs
- procServ.conf: reenable iocjscalersCTOF
- HVDC.opi: add link to dchvwf screen
- jscaler_column_detname.js: prepare to move to using DESC field
- jscaler_channel.db: add autosave for DESC
- dchvwf-*.opi: cosmietics
- dchvwf-*.opi: cosmietics
- jscalers_ioc.cpp: up sleep from 1 to 5 while waiting for connection
- caenhv.db: add HSV and LSV to autosave, remove unused alarm record
- add dc 1 region button
- dchvwf: add sector-2 only plot for kpp
- iocjscalersCTOF: change hostname
- caenHv527App/burt: new scan settings from Mac
- HValarmDetBased.xml: raise from 2 to 10 second delay
- caenhv.db: change delta alarm to MINOR
- ioccaenhv/st.cmd.HVECAL1/2.cmd: add autosave
- caenHvApp/src/ioccaenInclude.dbd: add autosave
- caenHvApp/src/Makefile: add autosave
- dchvwf-all-C.opi: cleanup
- caenhv.db: epics peculiarity: autosaveFields_pass0 or autosaveFields
- TODO: split SY527 heartbeat calcs by mainframe
- sy527App/src/sy1527.c: include # consecutive bad caenet reads in heartbeat calculation
- sy527App/src/sy1527.c: remove unecessary time query
- TODO: check off items
- TODO: iocdchvWaveform splitted and moved to ioccaenhv
- dchvwf-all-C.opi: sequencer moved to CAENET host, show one status pv each
- dchv: move dchvWaveforms to CAENET hosts
- HVDC-2PV.opi: move extra PV connection to old screen for later
- HVDC.opi: remove connecting to unecessary pv
- HVCTOF: temporary CTOF mapping for KPP
- CLAS12_Menu.opi: relativize some links for webopi
- dchvWaveformsGlobal.db: add initialization
- webopi_excludes.txt: add more fancy detector HV screens
- dchv_waveforms.st: cleanup
- dchvwf: add legend
- DC_HV.txt: add mya request
- dchvWaveform: rename files
- dchvWaveform: rename files
- procServ.conf: fix hostname dc23->dc13, add iocdchvWaveform ioc
- CLAS12_Menu.opi: add dchv waveform current/voltage viewers
- iocdchvWaveforms: get it up and running, need to move this onto CAENET ioc
- dchvWaveformApp: plot DCHV like old CLAS6
- TODO: iochvdcWafeforms restructure
- webopi_excludes.txt: remove some heavyduty screens
- ltcc_hv.opi: relative paths for webopi
- HValarmDetBased.xml-ORIGINAL: add for archeology
- alh2beast.sh: wrapper/reminder for AlarmConfigTool converter
- tools/stripChard/DCHV.stp: add example
- plugin_customization_beta.ini: areapanel columns/level changes
- caenhv/Db/HVCTOF0_CTOF-KPP.sub: mapping for KPP run, to be determined
- MakeLogEntry.java: unfished tabbed version for multi-screenshot log entries
- caenhv.db: add autosaving of .DESC field
- MakeLogEntry.java-PRETAB: archived version
- css_share/*/ecal_scalers.opi: add example screen for users to build from
- css_share/bline/*builder.js: add gaps
- css_share/medm/Hac*: add old tagger hall probe screens
- CLAS12_Menu.opi: reording, add MyViewer -strip mode, SVT->CVT
- caenhv/ioc_health_all.opi: change from DC test to prod setup
- caenhv/HV.opi: change to 10 slots for HVDC#
- caenhv/status_crate_10slot.opi: add 10 slot version
- caenhv/status_all.opi: add HVDC1/3/4
- set_status_color.js: add darker red for intlkd
- color.def: add darker red
- ltcc_hv.opi: fix gas PVs
- TODO: add autosave for caenhv DESC field
- HallB beast: latest tree
- HallB beast: added Torus imports
- iocsolenoidCryo: set EIP_buffer_limit
- ioctorusCryo: added EPICS_CA_ADDR_LIST for accessing imported PVs from cryo
- torus imports: fixed comments only
- torus imports: added PREC for gui usage
- torus imports: added imported pvs to the beast, added gui
- check_archive.py: moved from plcApp to bin/ for others to use
- torus alarms: updated csv's for new csv2beast version
- torus mps: added warning for failed temp sensors
- tagger.opi: start tagger yoke option
- mcc_alarm.xml: add 2H03 vacuum, add delay on 2c21a
- iocgasSystem*/st.cmd: move HTCC to 160
- vacuum_alarms.oip: add 2c21a
- clas12_scaler_resize: fix counter names, viewer PV, add beam type & date, etc
- add .setup.sh for cron
- hpssvt_downtime.opi: add vacuum intlk status
- collimator.opi: update to surveyed positions
- alarm server config: set addr_list to use read-only gateway that runs on alarm server host
- csv2beast: added test csv file
- csv2beast: no longer added empty elements to the xml file
- Torus MPS: fixed grouping for a few PVs
- Torus LHe: added relief valve temps
- cstrucDaqApp: converted medm to opi
- struckDaqApp: moving medms, prepping for opis
- ECAL.opi: add another U/W label
- st.cmd.HVCTOF0: add new HTCC and BLINE channels, remove SPARES
- ioccaemera/st.cmd: add
- tagger.opi: prepare new section for @yoke energy->current calculation
- procServ.conf: rename iocjscalersC->iocjscalersCTOF, disable iocjscalersHTCC/CTOF for now (need new hostames in hall)
- HVCTOF0_HTCC.sub: prepare HTCC records in HVCTOF0
- iocjscalersC: rename iocjscalersCTOF
- iocjscalersC: rename iocjscalersCTOF
- st.cmd.HVLTCC0: remove HTCC, gone to HVCTOF0 in hall
- ioc hbeats: add ioctorusDaq
- ioc screens: add HVHPS2 beamline ioc
- update HTCC gas PV names
- HVCTOF0_BLINE.sub: prepare records for new beamline counters
- TODO: update with adl2boy news and procServMgr env reminders
- alarm_settings.ini: address list dc23 -> dc13
- Gas: finalized PV names
- Torus cooldown alarms: fixed Sprint addresses
- css_share/hpssvt_downtime.opi: add chiller intlk status
- css_share: webopi_excludes.txt - add new file from Wesley
- css_share/.gitignore: add rsync_output.txt
- CLAS12_Menu.opi: add placeholders for new on-call phones
- logEntry: cleanup
- logEntry: cleanup
- hpssvt_downtime: add vacuum
- bpm_alarms: get rid of 2H00 current
- btacfg.opi: add
- add tagger PS screen
- hpssvt_downtime.opi: add vacuum
- AlarmAnnunciatorStart: add path to where it works from, not working in standard location currently
- HallB alarms update (ongoing)
- HPS alarms update (tester)
- logbookEntry.sh: exec java to background
- TODO: css heap increase done
- address list: switch dchv caenet from dc23 to dc13 (get it off sector 2 crate, the only sector for kpp)
- jscaler_htcc_markov.opi: switch to :c1 fadc scaler
- solenoid/torus LHe: minor opi updates
- solenoid EM Forces: added opis
- jscalers/Db/HTCC: fix channel mapping bug
- solenoid SST: fixed copy/paste error on LL8620SC
- solenoid: added PV8674
- solenoid SST: fixed opi after review
- harp_experts.opi: use my_motor_expert.opi for all
- css_share/det/DC: add screens for KPP (S2 only)
- HVDC_strip.opi: fix R3 label
- sensorProbeApp: start to prepare hallWeather alarms
- sensorProbeApp/Db/hallWeather.csv: add alarm csv
- css_share/ioc_heartbeats_kpp.opi: add screen without the defunct iocs for kpp
- css_share/iocs: add vme reset (hard reboot) option
- ioc_vme_reboot.js: add wrapper script to run roc_reboot.tcl with confirm dialog
- CLAS12_Menu.opi: add logbook entry
- css_share/iocs/ioc_chan_vxworks*.opi: use confirm dialog instead of opi popup for reboot
- ioc_health.opi: remove autosave from vme iocs
- css_share/iocs: remove classc12 for kpp
- ioc_health_hv.opi: cleanup
- logEntry: minor update
- logEntry: add borders, and error message
- logentry: add reset button
- logEntry: start using Sergeys env vars for rundb conn
- harp_fitter: rational button order, add status text (to be filled)
- harp_fitter/Fitter.[cxx|h]: remove TGMsgBox class member
- harp_fitter/Fitter.cxx: remove fit_tagger=0 printout
- harp_fitter: fix identation
- harp_fitter.sh: do not require harp_fitter to be in path
- clas12_scaler_resize: add time stamp PV
- logbookEntry.sh: add to path
- logEntry: gui updates
- rename logbook wrapper script
- logEntryWrapper: remove old java stuff
- logEntry: add command line options for logbookName and runDbSession
- logEntry ready for primetime
- logentry: cleanup Makefile
- vmeCreates: DC, fix header bug
- logEntry: minor updates, add hallb to path
- logEntry: overhaul this so it can eventually be used more generally (i.e. without an xterm)
- logEntry: update JAVA version in Makefile
- LogEntryWrapper.sh: named vars for inputs, remove special case for clonpc19
- add crate list
- vmeCrateApp: add beast to Db/Makefile
- vmeCrateApp: setup alarms
- vmeCratesApp/Db: add alarm record, add some autosave fields, remove couple unecessary scan records
- vmeCrates: move dbLoads to single template, with env for ip addresses
- procServMgr: add baltzell for temporary testing
- procServ.conf: add camera downloader
- monitorApp: final hall target records for ops
- torus opi: updated font size
- solenoid forces: added EM forces
- torus loadcells: fixed opi linking container path
- CLAS12_Menu: cleanup DAQ menu, add DC to it
- vmeCratesApp/op: remove test crates, add DC
- add border
- formatting
- setup DC VME crate screens
- setup DC VME crate screens
- add colli record, prep to move ioc to clas12 from hps
- beamline overview screen: add fcup viewer
- use ip address for repeated wgets, avoid dns
- iocs heartbeats: remove classc3
- beamline strips, no white bg
- clascss launcher now 3 GB max heap
- remove temporary launcher
- iocvmeCrates: add DC
- monitorApp/colli_alarm.db: add alarm for tagger-collimator
- cctv6_nobtn: add screen without expert button for embedding
- css_share/DC/strips: shrink labels
- gas_cRIO_HTCC.xml: add count=60
- Merge branch 'hotfix-v1.4.0' of https://github.com/JeffersonLab/clas12-epics into hotfix-v1.4.0
- It pops up a window when one tries to fit data without selecting a counter
- give ops a Hall B target string
- setup beamline strip charts, in CLAS12_Menu.opi
- tools/stripCharts: add beamline strips
- HVDC_sums2.db: prepare finer segmentation on HVDC current sums
- caenHvApp/set_status_color.js: was never finished for 527 apparently, fixing in progress
- HVDC_VSCAN.db: add per-region scan setting record
- add clascss startup with increased heap size, to become clascss
- alarm_bpm.db: add some other ideas, commented out
- HVDC burt snaps: add by region
- TODO: remove mccApp and Annunciator
- CLAS12_Menu.opi: update beamline alarms
- alarm_aiaio_row_slim_delta_header: change header name
- hv_status_fcdets.opi: add link to new CNDHV screen
- add 4527 TYPE macro
- increase screen size to avoid scrollbars
- css_share/iocs: add iocweather
- sensorProbeApp/opi/*: heirarchical naming scheme
- sensorProbeApp/Db/*.db: PREC=0
- sensorProbeApp/Db: add DESC field
- sensorProbeApp/iocweather: use substitutions
- procServ.conf: add iocweather
- iocweather/DEBUG: comment solution (in snmp-ncsl)
- sensorProbe/op/opi: add action for alarm settings
- sensorProbe/op/opi: add hallWeather screen
- 527: reduce verbosity
- iocweather: occasional read errors fixed by moving mib file to 1st dir in MIBDIRS
- iocweather: more debugging
- sensorProbeApp/src/Makefile: remove sequencer stuff
- move screen
- hpssvt_downtime.opi: add webopi screen for Tim
- iocweather: add autosave, testing read errors
- sensorProbeApp/Db: add autosave, scan macro, mib env
- sensorProbeApp: add opis
- didnot realize this existed, moved to iocweather
- didnot realize this existed, moved to iocweather
- akcpSensorProbe: got it working
- mccApp/Db/Makefile: beast wildcard didnot work, hardcode xml filename
- mccApp/alarm_bpm.db: add autosave for HSV and HHSV
- iocmcc/st.cmd: add new alarm bpm position delta records
- alarms: add 0-precision and delta rows
- mccApp/opi/*2.opi: some testers
- startup for CNV HV
- start of a ftof hv geometrical representation
- add Harkirats FT strips
- fix alarm bpm calc
- cRioApp: put 1 minute delay on HTCC gas alarms
- new bpm position alarms
- new bpm position alarms
- new bpm position alarms
- CLAS12_Menu.opi: many changes, git it in
- add old hps alarm mentality, so far unused by CLAS12
- st.cmd.HVCTOF0: move to 160 for KPP Run
- alarm updates
- torus alarms: changed email/sms delay to 10min
- solenoid QD: fixed comparator names/desc
- vacuum_alarms.opi: change title
- gas_cRIO_HTCC.xml: add Youri and Will to notifications
- beast/HallB_includes.cfg: add dclv and mcc_alarm
- HValarmDetBased.xml: remove CND and FT for now
- HallB_root.xml: comment FT and MVT for now
- A6551/Db/Makefile: add beast xml install
- mccApp: setup to install alarm
- fix beamline alarms to PVs we can actually set limits on
- hvbackup.py: add CND&RICH
- add HVDC_VSCAN.db to Makefile
- add alarm row with exponential notation
- HVDC_VSCAN: add autosave
- mccApp: update vacuum alarms per hps
- move mcc alarm screens to mccApp
- beamline: fix alarm screens
- beamline_alarms.opi: fix this screen
- mccApp: fix autosave Pass0->pass0
- solenoid mps: set field direction
- css_share/det/CND: add screenshot
- add screens for CNDHV
- add screens for CNDHV
- caenhv-527.db: only use set/checkers on voltage
- st.cmd.HVDC-dc?3: increase ioc queue size (for sums)
- HVDC: strip macros stopped working, redo
- HVDC: strip macros stopped working, remove
- fix cndhv screen
- fix cndhv screen
- sy527/src: remove debug printouts
- CNDHV: add menu
- css_share/detectors/CND: generate hv gui
- css_share/detectors/CND: generate hv gui
- tools/beast: add headless annunciator
- caenHvApp/src/sy1527epics1.c: fix bigsub value (for alarming)
- caeHvApp/src/sy1527.c: formatting update (needs a lot more)
- caenHvApp/Db/Makefile: remove unused db
- sy527App+caen527HvApp: overhauled for CAENET performance (e.g. group read, sleep and locking optimization, setcheck/fix records), fix bigsub (alarm) value
- caen527HvApp/Db/caenhv.db: add alarm settings and autosave on bigsub, add closedloop crate/slot/chan records
- caenHvApp/Db/caenhv.db: add alarm settings and autosave on bigsub, add closedloop crate/slot/chan records
- caenHv527App/command.h: add some flags for group write ops, unused
- css_share/geu.png: add new image
- css_share/iocs: add iocmcc
- mccApp/README: minor update
- update README
- move mcc pv copies to mccApp and softioc
- add mccApp
- add mccApp
- mccApp: straight copy of old records
- HVDC_sums.db: add summary pvs for missed write fixes
- css_share/det/HTCC/htcc_hv.opi: remove nonexistant gas pvs
- add single record for DCHV scan step
- add single record for DCHV scan step
- add beamline alarm screens from Bryan, should be moved to mccApp
- caenHv527App/op/burt/VSCAN/*: add setting of voltage scan #
- detectors/DC/HVDC.opi: change ON/OFF to use burt (with ON wrapped by confirm dialog) instead of scripts
- detectors/DC: squeeze current sum screens into 1
- detectors/DC: add fixer status screens
- solenoid QD: updated opi
- torus mps: removed slew setpoint from opi
- generate burt snaps for Macs voltage scan
- change burt suffix to .snp
- change burt suffix to .snp
- move hvdc burt snaps to 527App
- move hvdc burt snaps to 527App
- move hvdc burt snaps to 527App
- jscalers_S4.cmd: testing saveform sequencer
- caen527HvApp: final setter script
- caen527HvApp: disable group records
- caenHv527App: add spreadsheet from Mac
- caenhv-527.db: add to Makefile
- caenhv-527.db: remove check on trip limit
- A6551: update alarms
- jscalerApp: add sequencer for waveforms
- HVDC: update current sums screens
- HVDC: remove total HV current sum
- solenoid QD: added beginnings of opi
- MM gas system: added draft app/ioc
- beast: updated comments
- rename dchv script
- move 527 db to 527 app
- camera: quiet caput
- sy527App/src/sy1527.c: update printouts & error checking
- v288.c: update comments and formatting
- HVDC?_DC.substitutions: use caenhv-527.db
- caenhv_channel.opi: add bigsub screen action
- collimator.opi: update positions from denny
- CLAS12_Menu: add svt edm, mm feu, dchv strips, etc
- check off 527 support, add mccApp
- caenHv527/Db/caenhv-groups.db: add remaining aos, yet to be implemented in devCAEN.c
- sy527/src/devCAEN.c: add macro for group ops
- screen for caenHvApps bigsub record
- script to run Yuris screens
- HVDC strip chart update
- camera heartbeat
- detectors/DC: setup HV current strips
- db rename
- screeen update from nick
- burt: remove group requirement
- caenHv group records
- caenHv group records
- HVDC?_sums.sub: fix sector swap
- HVDC_sums.db: fix CPP bug
- updates to HV alarm and mm_feu
- caenHv527App/src/devCAEN.c: first round of group operations testing
- sy527App: add some group operations, cleanup, and delay/lock optimization
- sy527App/src/sy1527.h: add protos and group structs
- sy527App/src/v288.h: add protos
- sy527App/src/sy527_groups: more group tests (setters)
- ioccaenhv/st.cmd.HVDC-dc??: add group operations
- caeHv527App/op/scripts/vset.sh: allow param type as arg
- caenHv527App/Db: setup hardware group operations
- btaApp/op: first look at bta in css
- btaApp/op: first look at bta in css
- CLAS12_Menu.opi: another pointless font commit
- sy527App/src/v288_reset: doesnt appear to work, maybe v288 reset never suceeds?
- sy527App: group generator, unfinished
- sy527/src/Makefile: add sy1527.h to install, just adds some prototypes for now, should be merged/separated from syX527 includes
- add nicks scaler screen
- procServ*.sh: add executable bit
- ioccaenhv/procServ-HVDC*: split for two iocs
- beast: updated README
- caenHvApp/op/opi/caenhv_channel(_novice).opi: add action for alarm limits
- ioc_health.opi: add FTH divider
- old epics heartbeat, do not need it, but leave it
- 527: doing group operations
- procServ.conf: another split for 2 HVDC iocs
- HVDC?_sums.sub: another split for 2 HVDC iocs
- ioccaenhv: 2 startups for HVDC
- st.cmd.HVDC: reorg, although now unused after split into 2 iocs (caennet cards)
- css_share/iocs: split DCHV into two iocs (caennet cards)
- address lists: add dc33 for dchv caenet
- generic_harp.opi: fix analyzer button
- FTC.opi: fix incorrect label
- harp_fitter.sh: bugfix
- alarm settings: added dc23
- CLAS12_Menu.opi: added solenoid_LHe_cryo.opi
- solenoid LHe: fixes on opi
- solenoid LHe: added best guess at heaters
- solenoid LHe: updated draft db
- solenoid LHe: updated draft of cryo opi
- CLAS12_Menu.opi: added solenoid load cells
- .setup: cleaned up EPICS_CA_ADDR_LIST
- plcApp opis: updated javascript to use relative paths for webopi
- solenoid: cryo opi in progress
- solenoid: quench detection opis
- solenoid: load cell opi
- plcApp opis: updated images to use relative paths for webopi
- solenoid LHe: added cryo can PVs
- HValarmDetBased.xml: had wrong DC SL naming
- beast: cleaned up script and docs
- beast: added HPS tree
- css_share/detectors/DC: fixed missing svmax support
- torus interlocks opi: fixed duplicate readbacks
- caenHv*527App: fixed missing svax for 527, having 10s scan caenhv.db for 527 for now
- CLAS12_Menu.opi: adjusted grid gaps so SVT isn't cut off
- CLAS12_Menu.opi: repositioned buttons only
- solenoid LHe: renamed opis and reordered tabs
- CLAS12_Menu.opi: updated solenoid
- solenoid LHe: latest opis
- removed backup opi
- solenoid MPS: draft opi
- solenoid MPS: latest db
- solenoid Force: latest db
- solenoid LHe: latest db
- updated comment only
- solenoid Force: ioc updated
- solenoid MPS: ioc updated
- solenoidCryo: ioc updated
- solenoid: enabled iocsolenoidForce and iocsolenoidMps
- solenoid LHe: tabbed opis
- solenoid LHe: draft opis
- apps/Makefile: fixed typo to exclude caenHv527Ap/sy527App
- jscaler_htcc*.opi: change to scaler c1
- add screen for Nick to work on
- update scaler screens for HTCC without DISC
- tordaqReader.hh: fix comparator comments
- tools/tordaq/data: remove symbolic link
- caenHv527/devCAEN.c: add commented out line for svmax
- v288.c: reformatting, add comments
- procServ.conf: add iocjscalersHTCC
- motor screens cleanup
- add jscalers for HTCC
- add jscalers for HTCC
- add jscalers for HTCC
- add jscalers for HTCC
- LTCC gas: turned on alarm sensitivity
- latest CLAS12_Menu.opi, updated gateways and solenoid
- cagwApp: removed macro from opi
- wf2rootApp: updated to pass in filename prefix
- solenoid: draft mps gui
- solenoid: draft vacuum gui
- solenoid: latest fastDAQ, with VT21
- LTCC: added gas system PVs
- solenoid: added vacuum substitutions (draft)
- solenoid: added quench substitutions (draft)
- solenoid: updated iocsolenoidCryo, but not active yet
- solenoid: enabled iocsolenoidQD and iocsolenoidVac
- solenoid: setup iocsolenoidVac
- solenoid: setup iocsolenoidDAQ
- solenoid: added iocsoleniodQD
- harp_fitter: pulling in
- motor screen updates, including new collimator
- updates ordering of DC HVs
- tordaqReader.hh: allow to run without finding comparator inputs
- HVDC mapping update: move slot 9 to vacant channels on slot 4
- Added new DCMap to HV generator and updated HV alarm generator scripts
- A6551/Db: add alarms dclv.xml dclv.csv
- A6551.db: add comment
- v288.c: fix debug printout
- old HVDC subs, delete these later
- READMEs from /logs/torus
- change label
- procServ.conf: add HVDC on dc23
- st.cmd.HVDC: add HEARTBEAT_STAT alarm
- add some reqs for DCHV testing
- ioc_heartbeat.opi: add HEARTBEAT_STAT alarm
- css_share/det/DC: add on/off menu to row screens
- css_share/det/DC/scripts: fix bug in on/off script
- css_share/ioc: add xterm title for softioc_console
- increase screen size
- add all HVDC mainframes
- add color status for debugging 527 issues
- use 10 second scan on 527 for now
- implement Marks DCHV mapping
- dc gas: fixed opi typo (beng)
- caenHvApp: subs for DCHV crates 3 and 4: comment out guard wires until mapping fixed
- sy527: add some debug info
- hvdc: convinced the summing works, remove sig figs
- adding DCHV to summary screen
- adding DCHV to summary screen
- monitorApp: add DCHV summary PVs
- increase camera capture rate
- caenHv527: add tester script
- add temporary procServ startup for testing HVDC
- cleanup confirm dialog
- no, we are not ignore caenHvApp generated stuff, instead it is not generated anymore by default
- add some burt testing stuff for DCHV
- move static burt snap to op
- HVDC.opi: remove scripted 10V setter
- ltcc_on.js: add confirm dialog
- htcc_hv_on.js: add confirm dialog
- put file with path to most recent CLAS12 release
- remove symlink to old CLAS6 release, caused new cs-studio problems with circular links
- screen cleanup
- HVDCioc: add sums
- tester screen update (resize script, didnot work)
- pull in harp_fitter from hps
- cameras: smaller crosshair
- move images to images directory
- move images to images directory
- add magnet images
- moeller target screen cleanup
- fix burt req
- css_share/det/DC: add hv sums screens
- css_share/det/DC: add hv sums screens
- HVDC_sums.db: fix INP bug
- caenHvApp/Db/Makefile: install *sums*.db
- remove unused substitutions file
- 527 doesnot appear to have svmax
- 527 doesnot appear to have svmax
- 527 doesnot appear to have svmax
- startup for DC caennet
- adding apps for caennet (currently RHEL5 only)
- ignoring generated caenHv stuff, files will still need to be removed
- caenHvApp: first (small) cleanup
- caenHvApp/src/Makefile: disabling generator stuff from automatic build
- caenhvapp/Db/HValarm.xml: removing CND
- download_camera.sh: bugfix/comments
- css_share/cameras/*.opi: change to use real (autosaved) PVs instead of locals
- test screen misc updates
- CLAS12_Menu.opi: various updates (inc. beamline hv)
- caenHvApp: adding beamline crate (shared with hps ecal)
- trying a css-native pager screen
- css_share/...cameras: add links to images
- iocmonitor: add autosave
- monitorApp: add autosave and camera cross hair
- css_share/iocs: add iocmonitory to heartbeats screens, change iocmonitor to have autosave row in ioc_helath
- move camera stuff
- move camera stuff
- setup camera links
- rename camera stuff
- rename camera.sh
- beamline_hv_*.js: silence debugging
- cs-studio beta: fixed path to new version
- torus mps opi: fixed controlled ramp readback
- PRAD alarms: just for testing multiple alarm servers
- HallB alarms: latest configs
- beast: updated scripts to be generic for use with multiple alarm servers
- gas system alarms: updated hierarchy
- procServ.conf: add beamline hv
- comment pvdump
- add ioc for beamline hv (hvhps2)
- add kens det-based hv alarm tree
- css_share/beamline: add hv controls
- updates to clasTree HV
- add kens hv alarm tree
- add kens camera stuff
- torus cryo: added interlock for PV8563
- removed alarms, replaced with beast
- beast: added AlarmServer systemd scripts
- css_share/iocs: add heartbeat overview
- add old sub file
- TODO: clasrun key added to hbops, remove
- CLAS12_Menu.opi: fix mistake in FT*V* name
- procServ.conf: add iocfthDivider
- tordaqReader.hh: add comparators from Nick
- jtabs_launcher.sh: remove hpsruns ssh key, now that clasrun has its own
- updated fthdivider files
- CLAS12_Menu.opi: change pager from standalone window to dropdown menu
- notify_expert.pl: add expert name to window title
- torus mps: updated controlled ramp interlock chain
- torus MPS opi: relabled reset buttons
- torus LHe opi: added another cryo readback
- fthdivider and clasTree uodates
- remove vmax from DCHV for now (no support)
- DCHV: add confirm dialog for 10V
- TODO: .substitutions rename done
- dchv_10V.js: add script to set all to 10V
- caenhvApp/set_status_color.js: needs work for 527
- CLAS12_Menu_sash.opi updates
- CLAS12_Menu.opi: add pagers, jmenu, new beamline scalers
- plugin_customization.ini: bryans updates for annunciator and jms
- add bryans new scaler screens
- pull in old notify expert screen (should become a dropdown menu instead of standalong opi)
- pull in old pager script
- pull jtabs_launcher.sh in from hps
- add symbolic link to most recent CLAS6 build for easy access
- TODO: add critical annunciator stuff, and jmenu dependency
- css-studio: shift uses compact mode
- moelleter_target.opi: fix pv mistake
- moeller_target.opi: fix incorrect pv
- motors screen for clas12
- motors screen for hps
- monitorApp: add torus hall probe sums
- flasherApp possible todos
- ftIntlk: records for FTH, unfinished
- caenhv/genbeast.py: add generator script to make tables for csv2beast
- add pic of magnets
- mkHVEpics.C: store in old dir for now
- ioc_heartbeat*: need global screen for ioc heartbeats
- HVVTAG_FTH: fixing before generator breaks it again
- torus alarms: added sandoval for weekend
- torus LN2: removed cPID MMOD/MODE alarms
- jscalers: renaming .sub->.substitutions
- jscalers: renaming .sub->.substitutions
- torus MPS: flipped direction (cw/ccw)
- caenhvApp: current substitution files
- ioccaenhv: broken startups
- torus mps: fixed interlocks for webopi
- vmeCratesApp: added opis used for student project
- add daq monitoring app
- css: testing release 4.3.3
- css: added LDAP authentication
- jscalerApp/src/generator.py: .sub->.substitutions
- DC gas: removed several ATMs and other minor updates
- gas system: fixed pressure EGUs
- updated TODO list
- wf2root opi: fixed macros for use with torus/solenoid/etc
- solenoid LHe: corrected names for PT100s
- torus opi: mostly updates for VT24 addition
- torus MPS: update for testing new StopRamp
- solenoid force: added hallsensor
- solenoid LHe: added latest DESC
- torus test: updated ioc for interlock summations
- torus daq: added VT24
- updated README.md
- fixed testbuild.sh
- Makefile: cleanup-only
Version 1.3.3:
- clasTreeApp: fixed build
- clasTreeApp: fixed build
- jscalerApp: fixed dependency on jscalerDrvApp
- moellermeter.st: fix bug
- tordaq: update for arbitrary number of variabless (although possible prefixes hardcoded)
- solenoid/torus: added TODO
- torus QD: added VT24 and IDCCT1
- DC gas: updated for name fixes and new manifold pressures
- A6551slim_novice.opi: copy status rules from expert screen
- A6551.db: add precision=2
- css launchers: cleaned up symlinks, new clascss and clascss-alarm only
- css config: reset beast area panel hierarchy
- CLAS12_Menu.opi: added solenoid placeholder
- plcApp: added torus_bo_renamed.db
- MyaViewer configs: added README
- procServ.conf: added solenoid IOCs and test iocclonpc11
- csv2beast: moved script to tools/
- beast: added beast file_type to build system
- torus gui: latest mps and LHe
- torus mps: removed old interlock gui
- torus alarms: added alarm count to limit false notifications
- torus fastdaq: switched to use ca gateway for cRIOs
- torus mps: added interlock summations for top-level gui
- torus mps: added a few more interlocks
- solenoid: updated LHe and force substitutitions
- iocsolenoidForce: added placeholder for force ioc
- solnoid fastdaq: draft ioc config
- css_share/detectors/scalers: slimming guis
- torus cooldown: added cryocon status to alarm handler
- torus mps: added cRIO comm error
- MyaViewer: added current list of configs
- medm: added to css_share for screen conversion
- buffer dewar: corrected piping path
- CLAS12_Menu.opi: added torus EM Forces
- wf2rootApp: changed text update to display bytes
- ioctorusForce: added EM forces
- ioctorusDaq: added cRIO addr directly to ioc
- TODO: completed puppet list
- TODO: nathan's latest
- torus force: updated header
- torus LHe: add water cooled lead temps
- torus opi: latest revisions
- torus LHe opi: added MyaViewer launcher
- torus mya: added missing PV
- torus mya: updated DAQ, Force, MPS
- pcMonitorApp: test gui cleanup
- pcMonitorApp: undebug it
- css_share/.../jscaler_ltcc*: rename PVs for Cole
- css_share/.../jscaler_ecal*: UWV->UVW
- jscalerApp: ecal slot mapping was incorrect, fix crate numbering bug
- torus alarms: added on-call paging for a few pvs for the weekend
- torus mya: removed MODE (string) from request file
- torce force: removed commented out pvs
- torus mya: updated temperature deadbands to 0.1K
- torus force: latest rev of addons
- torus: added generic biRecord template
- torus mps: fixed direction pv
- torus mya: relaxed helium temp deadbands
- torus mya: added MPS archived PVs
- torus mya: added hallsensors (already archived)
- iocjscalers?: increase queue sizes to get rid of ring buffer overflows
- add ltcc scalers
- add ltcc scalers
- torus: updated EM forces
- jscalerApp/src/generator.py: update
- jscalersApp: add LTCC
- iocjscalers?: add LTCC to startups
- torus: latest EM Forces draft
- CLAS12_Menu: add preliminary beamline overview screen, fix bug and add image in overview screen
- tools/tordaq/TODO: add
- ioc_health_header.opi: add labels for Hard Reboot and Console
- fttlv: add 3rd channel
- tordaq: add TODO
- tordaq/.gitignore: add ROOT6 pcm file
- tordaq: cleanup
- tordaqData.hh: fix bug with unitialized pointer
- pcMonitorApp: increase buffer size to fix segfault, add testing screen
- pcMonitorApp: increase buffer size to fix segfault, add testing screen
- monitorApp/hv_status*.opi: resize
- ?TCC: add L/R labels and gas to overview screens
- iocdclvhealth: add autosave
- screen resize
- firefox/chrome wrapper small update
- hv_status_fcdets.opi: move legend
- CLAS12_Menu.opi: remove MyaViewer live mode
- iocmonitor: increase queue sizes
- monitorApp: add status bit
- monitorApp: add status bit
- FTC_HV_details*.opi: add on/off menu
- iocdclv: add (unused) startup for all 18 supplies in one ioc
- LVDC_expert.opi: add button for alarm settings screen
- iocs/ioc_chan_soft*.opi: use native write-PV confirm dialog instead
- iocs dclv screens: use autosave
- vmeCratesApp: trigger a readback
- iocdclv: finishing up
- iocdclv: adding to procServ
- iocdclv: finishing up
- iocdclv: finishing up
- iocdclv: finishing up
- update the todo
- add separate DCLV ioc health, may reduce # iocs later
- cRioApp/mya/HTCC: update with Nicks deadbands
- tordaq: cleanup/bugfix
- moving doc to separate repository
- Merge branch 'hotfix-v1.3.3' of https://github.com/jeffersonlab/clas12-epics into hotfix-v1.3.3
- FTT_LV*.opi: fix label FTH->FTT
- LVDC_expert.opi screen cleanup
- jscaler/mya: add todo archive list
- tordaq deprecated
- ioc_chan_soft*.opi: increase lookback buffer in xterm
- dclv_alarm*.opi: new alarm settings screens
- A6551*.opi: add hook to popup alarm settings, make fields alarm sensitive
- A6551App: add caPutLog support
- A6551.db: check STAT=TIMEOUT for global comms PV
- alarms: add slim alarm row
- iocdclv: switch to 2 second scan
- iocjscalers: add pv list to startup
- iocdclv save/restore cmd
- cleanup
- iocdclv: link save/startups
- setup dclv iocs
- jscaler/Db/Makefile: *db
- jscalers: add TRIG subs
- torus MPS: fixed EIP_buffer_limit, see README.md for details
- iocftaglv/st.cmd: add FTT
- caenHvApp/op/mya: changed to 2V/2uA deadbands
- A6651slim.opi: cleanup, make ocstat>0 read OVC (==2 is normal OVC, ==1 is some hardware fault)
- hvbackup.py: allow different dbands for some detectors
- FTT: add PL506 controls (looks like has less config options than 8008)
- plugin_customization.ini: add dc23 for caennet ioc
- torus fastdaq: moved IDCCT1 to new graph
- torus mya: updated DAQ for VT23 and added VT#_DAQ PVs
- figed bug in mkHVEpics.C
- tordaq/.gitignore: add old
- tordaq: add synchronization analysis
- tools/tordaq: add duplicate/missing printouts -- duplicates works, missings needs work
- tordaq: now uses list of TTree names (tordaqData.hh)
- Merge branch 'hotfix-v1.3.3' of https://github.com/jeffersonlab/clas12-epics into hotfix-v1.3.3
- latest cs-studio main menu
- torus fastdaq: added IDCCT1, updated to pass in file path
- try to fix perms on google-chrome workspace
- fixed bugs in mkHVEpics.C
- tordaq: remove olds
- FTH/FTH_HV*2.opi: fix script path
- FTH/FTH_HV*2.opi: fix script path
- LVDC.opi: change trip message to match hardware
- CTOF/CTOF_HV_details*.opi: add all on/off button
- plugin_customization.ini: add hallb-crio to address list
- test/asdf.opi: add tordaq waveform
- A6651App: still tuning
- caenhvApp: add mya archive submissions
- iocfthDivider/.gitignore: ignore emacs litter
- add utility scripts for gpib-eth converter commissioning
- tordaq/data: add symlink to data directory
- iocdclv: add some testing scripts
- css_share/ioc: change xterm color
- A6551/mya: add dclv mya request
- tordaq/.gitignore: add libs
- tordaqData.hh: change frequency and debug info
- tordaq/Makefile: cleanup
- torus: latest opi tweaks
- torus force: adding EM forces - draft
- tordaq: deprecated tordaq, lastest working tordaqGui with VT1-23
- ioctorusTest: testing new EM Force add-ons