Skip to content
Snippets Groups Projects

[AGIPD] [CORRECT] Fix / Correcting AGIPD run with no images.

Merged Karim Ahmed requested to merge fix/use_correct_module_idx into master
Files
2
@@ -101,7 +101,9 @@
" timestamp = const_data[const]\n",
" table_data.setdefault(timestamp, []).append(f\"{seq}:{mod}\")\n",
" table = []\n",
" if len(table_data) == 1:\n",
" if not len(table_data):\n",
" table.append([\"No constants retrieved\"])\n",
" elif len(table_data) == 1:\n",
" table.append([[*table_data][0], \"All modules\"])\n",
" else:\n",
" for timestamp, seqmod in table_data.items():\n",
@@ -115,13 +117,6 @@
"for const in ['Offset', 'SlopesPC', 'SlopesFF']:\n",
" print_const_table(const)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Loading