diff --git a/PythonServer/pos-python-server.py b/PythonServer/pos-python-server.py index 84a48c01918d4a365851cfd99a201de98957687b..94f0b233bbc19e20a7b9083201c7ea20a1ccb2b1 100755 --- a/PythonServer/pos-python-server.py +++ b/PythonServer/pos-python-server.py @@ -24,8 +24,6 @@ pv_repo = os.environ.get('PV_REPO', 'https://bitbucket.org/europeanspallationsou stop_signal = Event() stop_signal.clear() -bcm_correction=15/8 - try: Repo.clone_from(pv_repo, './repo') pvfiles=glob('./repo/*.txt') @@ -128,7 +126,7 @@ class myHandler(BaseHTTPRequestHandler): try: if path[1]=='ISrc-010:PBI-BCM-001:AI4-Compressed-Mean': myPV=epics.PV('ISrc-010:PBI-BCM-001:AI4-Compressed', auto_monitor=True) - mean_value=myPV.value.mean()*bcm_correction + mean_value=myPV.value.mean() tmp_info = myPV.info.split('\n') tmp_info[0]='== ISrc-010:PBI-BCM-001:AI4-Compressed-Mean (time_double) ==' tmp_info[1]=' value = '+str(mean_value) @@ -149,7 +147,7 @@ class myHandler(BaseHTTPRequestHandler): return if path[1]=='ISrc-010:PBI-BCM-001:AI4-Compressed-Max': myPV=epics.PV('ISrc-010:PBI-BCM-001:AI4-Compressed', auto_monitor=True) - max_value=myPV.value.max()*bcm_correction + max_value=myPV.value.max() tmp_info = myPV.info.split('\n') tmp_info[0]='== ISrc-010:PBI-BCM-001:AI4-Compressed-Max (time_double) ==' tmp_info[1]=' value = '+str(max_value) diff --git a/PythonServer/screens/pos.py b/PythonServer/screens/pos.py index 6847b76914c7d3b60310fdb97e23ce83c81466cb..bceed7e27cc474dcf2522165229231d3173d7984 100755 --- a/PythonServer/screens/pos.py +++ b/PythonServer/screens/pos.py @@ -16,8 +16,6 @@ class posScreen(Thread): for pv in pvs: epics_dict[pv]=epics.PV(pv, auto_monitor=True) - bcm_correction=15/8 - while(not self.stop_signal.isSet()): json_dict={} for pv in epics_dict: @@ -25,7 +23,7 @@ class posScreen(Thread): if epics_dict[pv].connected: json_dict[pv]['units']=epics_dict[pv].units if pv=='ISrc-010:PBI-BCM-001:AI4-Compressed': - y_data_array=epics_dict[pv].value*bcm_correction + y_data_array=epics_dict[pv].value y_data=list(y_data_array) x_data_array=linspace(0,12.8,len(y_data)) x_data=list(x_data_array) diff --git a/WebSites/pvs/dashboard.json b/WebSites/pvs/dashboard.json index fa765e8cd68d55a79f193537218c58b1c0a162f3..89dfa34fc1d868f2f1aa86b7bb61abc6c0fdc39b 100644 --- a/WebSites/pvs/dashboard.json +++ b/WebSites/pvs/dashboard.json @@ -1,7 +1,7 @@ { "version": 1, "header_image": "", - "allow_edit": false, + "allow_edit": true, "plugins": [], "panes": [ {