Skip to content
Snippets Groups Projects

Move geometry devices, some utilities to own repositories

Merged David Hammer requested to merge move-utils-out into master
1 file
+ 15
15
Compare changes
  • Side-by-side
  • Inline
+ 15
15
@@ -80,7 +80,7 @@ def xtdf_output_schema(use_shmem_handle=True):
VECTOR_STRING_ELEMENT(res)
.key("calngShmemPaths")
.assignmentOptional()
.defaultValue([])
.noDefaultValue()
.commit(),
NODE_ELEMENT(res)
@@ -90,7 +90,7 @@ def xtdf_output_schema(use_shmem_handle=True):
STRING_ELEMENT(res)
.key("metadata.source")
.assignmentOptional()
.defaultValue("")
.noDefaultValue()
.commit(),
NODE_ELEMENT(res)
@@ -100,7 +100,7 @@ def xtdf_output_schema(use_shmem_handle=True):
INT32_ELEMENT(res)
.key("metadata.timestamp.tid")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
NODE_ELEMENT(res)
@@ -110,37 +110,37 @@ def xtdf_output_schema(use_shmem_handle=True):
INT32_ELEMENT(res)
.key("header.minorTrainFormatVersion")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT32_ELEMENT(res)
.key("header.majorTrainFormatVersion")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT32_ELEMENT(res)
.key("header.trainId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT64_ELEMENT(res)
.key("header.linkId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT64_ELEMENT(res)
.key("header.dataId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT64_ELEMENT(res)
.key("header.pulseCount")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
NDARRAY_ELEMENT(res)
@@ -158,7 +158,7 @@ def xtdf_output_schema(use_shmem_handle=True):
INT32_ELEMENT(res)
.key("detector.trainId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
NDARRAY_ELEMENT(res)
@@ -180,13 +180,13 @@ def xtdf_output_schema(use_shmem_handle=True):
INT32_ELEMENT(res)
.key("trailer.status")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
INT32_ELEMENT(res)
.key("trailer.trainId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
)
@@ -217,7 +217,7 @@ def jf_output_schema(use_shmem_handle=True):
INT32_ELEMENT(res)
.key("data.trainId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
NDARRAY_ELEMENT(res)
@@ -239,7 +239,7 @@ def jf_output_schema(use_shmem_handle=True):
VECTOR_STRING_ELEMENT(res)
.key("calngShmemPaths")
.assignmentOptional()
.defaultValue([])
.noDefaultValue()
.commit(),
)
if use_shmem_handle:
@@ -269,7 +269,7 @@ def pnccd_output_schema(use_shmem_handle=True):
UINT64_ELEMENT(res)
.key("data.trainId")
.assignmentOptional()
.defaultValue(0)
.noDefaultValue()
.commit(),
)
if use_shmem_handle:
Loading