-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1411 from FAIRmat-NFDI/fairmat-2024-nxdetector
Fairmat 2024: additional fields in NXdetector
- Loading branch information
Showing
2 changed files
with
67 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-stylesheet type="text/xsl" href="nxdlformat.xsl" ?> | ||
<!-- | ||
# NeXus - Neutron and X-ray Common Data Format | ||
# | ||
# Copyright (C) 2008-2024 NeXus International Advisory Committee (NIAC) | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
# License as published by the Free Software Foundation; either | ||
# version 3 of the License, or (at your option) any later version. | ||
# | ||
# This library is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this library; if not, write to the Free Software | ||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
# | ||
# For further information, see http://www.nexusformat.org | ||
--> | ||
<definition category="base" extends="NXdetector" name="NXelectron_detector" | ||
type="group" | ||
xsi:schemaLocation="http://definition.nexusformat.org/nxdl/3.1 ../nxdl.xsd" | ||
xmlns="http://definition.nexusformat.org/nxdl/3.1" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:ns="http://definition.nexusformat.org/nxdl/@NXDL_RELEASE@" | ||
> | ||
<doc> | ||
A subclass of NXdetector for detectors that detect electrons. | ||
</doc> | ||
<field name="amplifier_type" type="NX_CHAR"> | ||
<doc> | ||
Type of electron amplifier, MCP, channeltron, etc. | ||
</doc> | ||
</field> | ||
<field name="detector_type" type="NX_CHAR"> | ||
<doc> | ||
Description of the electron detector type, DLD, Phosphor+CCD, CMOS. | ||
</doc> | ||
</field> | ||
<field name="detector_voltage" type="NX_FLOAT" units="NX_VOLTAGE"> | ||
<doc> | ||
Voltage applied to the electron detector. | ||
</doc> | ||
</field> | ||
<field name="amplifier_voltage" type="NX_FLOAT" units="NX_VOLTAGE"> | ||
<doc> | ||
Voltage applied to the amplifier. | ||
</doc> | ||
</field> | ||
<field name="amplifier_bias" type="NX_FLOAT" units="NX_VOLTAGE"> | ||
<doc> | ||
The low voltage of the amplifier might not be the ground. | ||
</doc> | ||
</field> | ||
</definition> |