|
NeXusDataFormat
1
NeXusCAPI
|
Functions | |
| NXstatus | NXgetdataID (NXhandle handle, NXlink *pLink) |
| Retrieve link data for a dataset. | |
| NXstatus | NXmakelink (NXhandle handle, NXlink *pLink) |
| Create a link to the group or dataset described by pLink in the currently open group. | |
| NXstatus | NXmakenamedlink (NXhandle handle, CONSTCHAR *newname, NXlink *pLink) |
| Create a link to the group or dataset described by pLink in the currently open group. | |
| NXstatus | NXgetgroupID (NXhandle handle, NXlink *pLink) |
| Retrieve link data for the currently open group. | |
| NXstatus | NXsameID (NXhandle handle, NXlink *pFirstID, NXlink *pSecondID) |
| Tests if two link data structures describe the same item. | |
| NXstatus NXgetdataID | ( | NXhandle | handle, |
| NXlink * | pLink | ||
| ) |
Retrieve link data for a dataset.
This link data can later on be used to link this dataset into a different group.
| handle | A NeXus file handle as initialized by NXopen. |
| pLink | A link data structure which will be initialized with the required information for linking. |
| NXstatus NXgetgroupID | ( | NXhandle | handle, |
| NXlink * | pLink | ||
| ) |
Retrieve link data for the currently open group.
This link data can later on be used to link this group into a different group.
| handle | A NeXus file handle as initialized by NXopen. |
| pLink | A link data structure which will be initialized with the required information for linking. |
| NXstatus NXmakelink | ( | NXhandle | handle, |
| NXlink * | pLink | ||
| ) |
Create a link to the group or dataset described by pLink in the currently open group.
| handle | A NeXus file handle as initialized by NXopen. |
| pLink | A link data structure describing the object to link. This must have been initialized by either a call to NXgetdataID or NXgetgroupID. |
| NXstatus NXmakenamedlink | ( | NXhandle | handle, |
| CONSTCHAR * | newname, | ||
| NXlink * | pLink | ||
| ) |
Create a link to the group or dataset described by pLink in the currently open group.
But give the linked item a new name.
| handle | A NeXus file handle as initialized by NXopen. |
| newname | The new name of the item in the currently open group. |
| pLink | A link data structure describing the object to link. This must have been initialized by either a call to NXgetdataID or NXgetgroupID. |
| NXstatus NXsameID | ( | NXhandle | handle, |
| NXlink * | pFirstID, | ||
| NXlink * | pSecondID | ||
| ) |
Tests if two link data structures describe the same item.
| handle | A NeXus file handle as initialized by NXopen. |
| pFirstID | The first link data for the test. |
| pSecondID | The second link data structure. |
1.8.1.1