From ddec6595f9dd9489426cce44fc00e89b8ee63032 Mon Sep 17 00:00:00 2001
From: karnem <mikhail.karnevskiy@desy.de>
Date: Wed, 3 Apr 2019 16:39:25 +0200
Subject: [PATCH] Get bias voltage as input paratemetr

---
 .../ePix/Characterize_Darks_ePix_NBC.ipynb     | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/notebooks/ePix/Characterize_Darks_ePix_NBC.ipynb b/notebooks/ePix/Characterize_Darks_ePix_NBC.ipynb
index af5524100..e960dae66 100644
--- a/notebooks/ePix/Characterize_Darks_ePix_NBC.ipynb
+++ b/notebooks/ePix/Characterize_Darks_ePix_NBC.ipynb
@@ -21,8 +21,7 @@
    },
    "outputs": [],
    "source": [
-    "#in_folder = '/gpfs/exfel/d/raw/MID/201921/p002419' # input folder, required\n",
-    "in_folder = '/home/karnem/myscratch/dataTest/ePix' \n",
+    "in_folder = '/gpfs/exfel/d/raw/MID/201921/p002419' # input folder, required\n",
     "out_folder = '/gpfs/exfel/data/scratch/karnem/test/' # output folder, required\n",
     "path_template = 'RAW-R{:04d}-DA01-S{{:05d}}.h5' # the template to use to access data\n",
     "run = 94 # which run to read data from, required\n",
@@ -33,10 +32,12 @@
     "h5path_cntrl = '/CONTROL/MID_EXP_EPIX-1/DET'  # path to control data\n",
     "cal_db_interface = \"tcp://max-exfl016:8020\" # calibration DB interface to use\n",
     "local_output = False # output also in as H5 files\n",
-    "temp_limits = 5\n",
+    "temp_limits = 5 # limit for parameter Operational temperature\n",
     "sequence = 0 # sequence file to use\n",
-    "use_dir_creation_date = True\n",
-    "detector_db = 'ePix100_M15' # detector instance"
+    "use_dir_creation_date = False\n",
+    "detector_db = 'ePix100_M15' # detector instance\n",
+    "bias_voltage = 200 # bias voltage\n",
+    "in_vacuum = False # detector operated in vacuum "
    ]
   },
   {
@@ -163,15 +164,10 @@
     "run_parallel = False\n",
     "\n",
     "with h5py.File(filename, 'r') as f:\n",
-    "\n",
-    "    #bias_voltage = int(f['{}/biasclock/bias/value'.format(h5path_cntrl)][0])\n",
-    "    bias_voltage = 200\n",
     "    integration_time = int(f['{}/CONTROL/ePixBoard/DigFpga/AsicAcqWidth/value'.format(h5path_cntrl)][0])/1000.\n",
     "    temperature = np.mean(f[h5path_t])/100.\n",
-    "    in_vacuum = False\n",
-    "\n",
-    "\n",
     "    temperature_k = temperature + 273.15\n",
+    "\n",
     "    print(\"Bias voltage is {} V\".format(bias_voltage))\n",
     "    print(\"Detector integration time is set to {}\".format(integration_time))\n",
     "    print(\"Mean temperature was {:0.2f} °C / {:0.2f} K\".format(temperature,\n",
-- 
GitLab