diff --git a/notebooks/DSSC/DSSC_Correct_and_Verify.ipynb b/notebooks/DSSC/DSSC_Correct_and_Verify.ipynb index e9d65ef342941b2fe2c7617189e4c07c3fb28012..ca00f530e8598db04398f04676ba34bfcc7ea9ec 100644 --- a/notebooks/DSSC/DSSC_Correct_and_Verify.ipynb +++ b/notebooks/DSSC/DSSC_Correct_and_Verify.ipynb @@ -33,7 +33,7 @@ "bias_voltage = 100 # detector bias voltage\n", "cal_db_interface = \"tcp://max-exfl016:8020#8025\" # the database interface to use\n", "use_dir_creation_date = True # use the creation data of the input dir for database queries\n", - "sequences_per_node = 2 # number of sequence files per cluster node if run as slurm job, set to 0 to not run SLURM parallel\n", + "sequences_per_node = 1 # number of sequence files per cluster node if run as slurm job, set to 0 to not run SLURM parallel\n", "cal_db_timeout = 300000 # in milli seconds\n", "chunk_size_idim = 1 # chunking size of imaging dimension, adjust if user software is sensitive to this.\n", "instrument = \"SCS\" # the instrument the detector is installed at, required\n", @@ -471,8 +471,11 @@ " count_cold = np.count_nonzero(asic_std < 0.5)\n", " if count_cold/(64*64) > mask_cold_asic:\n", " bpix[i*64:(i+1)*64, j*64:(j+1)*64] = BadPixels.ASIC_STD_BELOW_NOISE.value\n", - " \n", - " mdset[...] = np.repeat(bpix[None,...], infile[h5path+\"image/data\"].shape[0], axis=0)\n", + " \n", + " for train in range(first_arr.size):\n", + " first = first_arr[train]\n", + " last = last_arr[train]\n", + " mdset[first:last, ...] = np.repeat(bpix[None,...], last-first, axis=0)\n", " \n", " except Exception as e:\n", " print(e)\n",