Sfoglia il codice sorgente

rename
add default epics.cfg

Matthias Martin 6 anni fa
parent
commit
28a8108ef0
2 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18 0
      epics.cfg
  2. 0 0
      kcg.py

+ 18 - 0
epics.cfg

@@ -0,0 +1,18 @@
+[EPICS]
+# These are PVs that will be possible to insert into log files
+# This variable is to be a list consisting of touples of three entries,
+# the first ist the Text that describes the value and the second is the EPICS PV that
+# holds that value. The third sets the PV to be by default aktivated for logging
+epics_log_entry_pvs = [
+    ("Beam Energy (GeV)", "A:SR:BeamInfo:01:Energy", "True"),
+    ("Beam Current (mA)", "A:SR:BeamInfo:01:Current", "True"),
+    ("Beam Lifetime (s)", "A:SR:BeamInfo:01:Lifetime", "False"),
+    ("Beam Lifetime (H:M:S)", "A:SR:BeamInfo:01:Lifetime:String", "False"),
+    ("Injection Rate (mA/s)", "A:SR:BeamInfo:01:InjRate", "False"),
+    ("Injection Rate (mA/5s)", "A:SR:BeamInfo:01:InjRate:5s", "False"),
+    ("Fill Number", "A:SR:OperationStatus:01:FillNumber", "True")
+    ]
+# This pv is used to determine if epics pvs are accessible
+epics_test_pv = "A:SR:BeamInfo:01:Current"
+# Path to your epics base installation
+epics_base_path = "/opt/epics/base/"

+ 0 - 0
kcg.sh → kcg.py