From 1a9a2705c8fe6d59c5f4d41c2ba6089e6227e057 Mon Sep 17 00:00:00 2001 From: Steffen Hauf <steffen.hauf@xfel.eu> Date: Thu, 27 Jun 2019 13:01:06 +0200 Subject: [PATCH] Adress feedback from review --- cal_tools/cal_tools/agipdlib.py | 14 +++++++------- cal_tools/cal_tools/lpdlib.py | 9 ++++----- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/cal_tools/cal_tools/agipdlib.py b/cal_tools/cal_tools/agipdlib.py index 07147199a..919025af8 100644 --- a/cal_tools/cal_tools/agipdlib.py +++ b/cal_tools/cal_tools/agipdlib.py @@ -2,14 +2,15 @@ import copy from enum import Enum import h5py -import numpy as np -from cal_tools.enums import BadPixels -from cal_tools.tools import get_constant_from_db, get_constant_from_db_and_time from iCalibrationDB import Constants, Conditions, Detectors +import numpy as np from scipy.signal import cwt, ricker from sklearn.mixture import GaussianMixture from sklearn.preprocessing import StandardScaler +from cal_tools.enums import BadPixels +from cal_tools.tools import get_constant_from_db, get_constant_from_db_and_time + def get_num_cells(fname, loc, module): with h5py.File(fname, "r") as f: @@ -1125,7 +1126,6 @@ class AgipdCorrections: single_image.shape[2]) self.firange = firange self.single_image = single_image - self.can_calibrate = can_calibrate def copy_and_sanitize_non_cal_data(self): """ Copy and sanitize data in `infile` that is not touched by @@ -1142,7 +1142,7 @@ class AgipdCorrections: firange = firange[0::2] alltrains = self.infile[agipd_base + "image/trainId"] alltrains = np.squeeze( - alltrains[first_index:last_index, ...]) # [self.can_calibrate] + alltrains[first_index:last_index, ...]) # these are touched in the correct function, do not copy them here dont_copy = ["data", "cellId", "trainId", "pulseId", "status", @@ -1471,8 +1471,8 @@ class AgipdCorrections: photon_energy, pixels_x=512, pixels_y=128, - beam_energy=None), - # noqa + beam_energy=None), # noqa + np.ones((128, 512, max_cells_db, 2)), cal_db_interface, creation_time=creation_time, diff --git a/cal_tools/cal_tools/lpdlib.py b/cal_tools/cal_tools/lpdlib.py index 7ec7c642c..d0c557aab 100644 --- a/cal_tools/cal_tools/lpdlib.py +++ b/cal_tools/cal_tools/lpdlib.py @@ -93,11 +93,11 @@ class LpdCorrections: # emprically determined from APD datasets p900038, r155,r156 self.cnl_const = { 'high': {'A': -0.000815934, 'lam': 0.00811281, 'c': 1908.89, - 'm': 0, 'b': 0}, # noqa + 'm': 0, 'b': 0}, 'med': {'A': 0.0999894, 'lam': -0.00137652, 'c': 3107.83, - 'm': 3.89982e-06, 'b': -0.116811}, # noqa + 'm': 3.89982e-06, 'b': -0.116811}, 'low': {'A': 0.0119132, 'lam': -0.0002, 'c': 36738.6, - 'm': 2.00273e-08, 'b': 0.245537}} # noqa + 'm': 2.00273e-08, 'b': 0.245537}} def get_iteration_range(self): """Returns a range expression over which to iterate in chunks @@ -662,8 +662,7 @@ class LpdCorrections: pixels_x=256, pixels_y=256, beam_energy=None, - capacitor=capacitor), - # noqa + capacitor=capacitor), # noqa np.ones((256, 256)), cal_db_interface, creation_time=creation_time, -- GitLab