Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions applications/NXmx.nxdl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,19 @@
</doc>
</field>

<field name="bit_depth_stored" type="NX_POSINT" recommended="true">
<doc>
The number of bits per pixel saved to the image data.
</doc>
</field>

<field name="bit_depth_image" type="NX_POSINT"
deprecated="Use bit_depth_stored.">
<doc>
The number of bits per pixel saved to the image data.
</doc>
</field>

<field name="detector_readout_time" type="NX_FLOAT" units="NX_TIME"
minOccurs="0">
<doc>
Expand Down
9 changes: 7 additions & 2 deletions base_classes/NXdetector.nxdl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -756,12 +756,17 @@
</field>
<field name="bit_depth_readout" type="NX_INT">
<doc>
How many bits the electronics reads per pixel.
How many bits the electronics reads per data point.
With CCD's and single photon counting detectors,
this must not align with traditional integer sizes.
this might not align with traditional integer sizes.
This can be 4, 8, 12, 14, 16, ...
</doc>
</field>
<field name="bit_depth_stored" type="NX_POSINT">
<doc>
The number of bits per data point to the detector data.
</doc>
</field>
<field name="detector_readout_time" type="NX_FLOAT" units="NX_TIME">
<doc>
Time it takes to read the detector (typically milliseconds).
Expand Down