Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • calibration/pycalibration
1 result
Show changes
Commits on Source (8)
......@@ -3,6 +3,7 @@ git+file:///gpfs/exfel/sw/calsoft/git/nbparameterise@0.3
git+file:///gpfs/exfel/sw/calsoft/git/pyDetLib@2.5.3-2.7.0#subdirectory=lib
astcheck == 0.2.5
astsearch == 0.1.3
Cython == 0.29.21
dill == 0.3.0
extra_data == 1.2.0
extra_geom == 0.8.0
......@@ -25,6 +26,7 @@ lxml == 4.5.0
metadata_client == 3.0.5
nbconvert == 5.6.1
nbformat == 5.0.7
numpy == 1.19.1
prettytable == 0.7.2
pypandoc == 1.4
python-dateutil == 2.8.1
......
......@@ -9,14 +9,14 @@ class Errors:
NO_DEFAULT_CONFIG = "FAILED: No default config for instrument {}, detector {} exists!, please contact det-support@xfel.eu"
JOB_LAUNCH_FAILED = "FAILED: Failed executing command: {}, code: {}, please contact det-support@xfel.eu"
UPLOAD_CONFIG_FAILED = "FAILED: Config for cycle {}, proposal {} could not be uploaded!, please contact det-support@xfel.eu"
TRANSFER_EVAL_FAILED = "FAILED: Evaluating transfer to offline failed for proposal {}, run {}, please contact det-support@xfel.eu"
TRANSFER_EVAL_FAILED = "FAILED: Evaluating transfer to offline failed for proposal {}, run {}, please contact it-support@xfel.eu"
MDC_RESPONSE = "FAILED: Response error from MDC: {}"
NOT_CONFIGURED = "FAILED: instrument not configured, please contact det-support@xfel.eu"
NOT_SUBMITTED = "FAILED: correction of {} failed during submision, please contact det-support@xfel.eu"
class MDC:
MIGRATION_TIMEOUT = "Timeout waiting for migration. Contact det-support@xfel.eu"
MIGRATION_TIMEOUT = "Timeout waiting for migration. Contact it-support@xfel.eu"
NOTHING_TO_DO = "Nothing to calibrate for this run, copied raw data only"
......