aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-05-03 14:31:34 +0200
committerThomas White <taw@physics.org>2022-06-02 12:15:38 +0200
commit5a9ad6f30ea2ba5599d50e847d9e9e50b9fbbe1b (patch)
treed7cc843028d97145939749cca7c15d7541a18c9a /src
parent992e25b007f8a418fd7860cc34a441932cdf023c (diff)
Seedee deserialization
Diffstat (limited to 'src')
-rw-r--r--src/im-asapo.h6
-rw-r--r--src/indexamajig.c1
-rw-r--r--src/process_image.h4
3 files changed, 6 insertions, 5 deletions
diff --git a/src/im-asapo.h b/src/im-asapo.h
index 719b5bf1..5fd7665c 100644
--- a/src/im-asapo.h
+++ b/src/im-asapo.h
@@ -3,11 +3,11 @@
*
* ASAP::O data interface
*
- * Copyright © 2021 Deutsches Elektronen-Synchrotron DESY,
- * a research centre of the Helmholtz Association.
+ * Copyright © 2021-2022 Deutsches Elektronen-Synchrotron DESY,
+ * a research centre of the Helmholtz Association.
*
* Authors:
- * 2021 Thomas White <taw@physics.org>
+ * 2021-2022 Thomas White <taw@physics.org>
*
* This file is part of CrystFEL.
*
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 8d383d8e..dbea7261 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -297,6 +297,7 @@ static DataSourceType parse_data_format(const char *str)
{
if ( strcmp(str, "hdf5") == 0 ) return DATA_SOURCE_TYPE_HDF5;
if ( strcmp(str, "msgpack") == 0 ) return DATA_SOURCE_TYPE_MSGPACK;
+ if ( strcmp(str, "seedee") == 0 ) return DATA_SOURCE_TYPE_SEEDEE;
/* CBF and CBFGZ should be added here once image-cbf.c supports
* in-memory access */
return DATA_SOURCE_TYPE_UNKNOWN;
diff --git a/src/process_image.h b/src/process_image.h
index 5e12ff29..e2f792a5 100644
--- a/src/process_image.h
+++ b/src/process_image.h
@@ -3,11 +3,11 @@
*
* The processing pipeline for one image
*
- * Copyright © 2012-2021 Deutsches Elektronen-Synchrotron DESY,
+ * Copyright © 2012-2022 Deutsches Elektronen-Synchrotron DESY,
* a research centre of the Helmholtz Association.
*
* Authors:
- * 2010-2021 Thomas White <taw@physics.org>
+ * 2010-2022 Thomas White <taw@physics.org>
* 2014-2017 Valerio Mariani <valerio.mariani@desy.de>
* 2017-2018 Yaroslav Gevorkov <yaroslav.gevorkov@desy.de>
*