diff --git a/notebooks/ePix100/Characterize_Darks_ePix100_NBC.ipynb b/notebooks/ePix100/Characterize_Darks_ePix100_NBC.ipynb index 18d7085a9362098e10757957597bbfc4f46e4522..f9884a3fc6cba0d042629d1fc3782aad2bb4e937 100644 --- a/notebooks/ePix100/Characterize_Darks_ePix100_NBC.ipynb +++ b/notebooks/ePix100/Characterize_Darks_ePix100_NBC.ipynb @@ -38,12 +38,12 @@ "cal_db_interface = \"tcp://max-exfl016:8020\" # calibration DB interface to use\n", "cal_db_timeout = 300000 # timeout on caldb requests\n", "db_output = False # Output constants to the calibration database\n", - "local_output = True # output constants locally\n", + "local_output = True # Output constants locally\n", "\n", "# Conditions used for injected calibration constants.\n", "bias_voltage = 200 # Bias voltage\n", "in_vacuum = False # Detector operated in vacuum\n", - "integration_time = -1 # Integration time. Set to -1 to read from .h5 file\n", + "fix_integration_time = -1 # Integration time. Set to -1 to read from .h5 file\n", "fix_temperature = -1 # Fixed temperature in Kelvin. Set to -1 to read from .h5 file\n", "temp_limits = 5 # Limit for parameter Operational temperature\n", "badpixel_threshold_sigma = 5. # Bad pixels defined by values outside n times this std from median\n", @@ -136,7 +136,8 @@ "source": [ "# Read sensor size\n", "sensor_size = run_dir[instrument_src, 'data.image.dims'].as_single_value(reduce_by='first') # (x=768, y=708) expected\n", - "assert np.allclose(sensor_size, np.array([768, 708])), 'Unexpected sensor dimensions.'\n", + "sensor_size = sensor_size[:2] # data.image.dims for old data is [768, 708, 1]\n", + "assert np.allclose(sensor_size, np.array([768, 708])), 'Unexpected sensor dimensions.' \n", "\n", "# Path to pixels ADC values\n", "pixels_src = (instrument_src, \"data.image.pixels\")\n", @@ -157,10 +158,11 @@ "print(f\"Number of dark images to analyze: {n_trains}\")\n", "\n", "# Read integration time\n", - "if integration_time == -1:\n", + "if fix_integration_time == -1:\n", " integration_time = run_dir[f\"{karabo_id}/DET/CONTROL\", 'expTime.value'].as_single_value(reduce_by='first')\n", " integration_time_str_add = ''\n", "else:\n", + " integration_time = fix_integration_time\n", " integration_time_str_add = '(manual input)'\n", " \n", "# Read temperature \n",