NeXusDataFormat
1
NeXusCAPI
|
Functions | |
NXstatus | NXmakegroup (NXhandle handle, CONSTCHAR *name, CONSTCHAR *NXclass) |
NeXus groups are NeXus way of structuring information into a hierarchy. | |
NXstatus | NXopengroup (NXhandle handle, CONSTCHAR *name, CONSTCHAR *NXclass) |
Step into a group. | |
NXstatus | NXclosegroup (NXhandle handle) |
Closes the currently open group and steps one step down in the NeXus file hierarchy. |
NXstatus NXclosegroup | ( | NXhandle | handle | ) |
Closes the currently open group and steps one step down in the NeXus file hierarchy.
NXstatus NXmakegroup | ( | NXhandle | handle, |
CONSTCHAR * | name, | ||
CONSTCHAR * | NXclass | ||
) |
NeXus groups are NeXus way of structuring information into a hierarchy.
This function creates a group but does not open it.
handle | A NeXus file handle as initialized NXopen. |
name | The name of the group |
NXclass | the class name of the group. Should start with the prefix NX |
NXstatus NXopengroup | ( | NXhandle | handle, |
CONSTCHAR * | name, | ||
CONSTCHAR * | NXclass | ||
) |
Step into a group.
All further access will be within the opened group.
handle | A NeXus file handle as initialized by NXopen. |
name | The name of the group |
NXclass | the class name of the group. Should start with the prefix NX |