|
NeXus
1
|
Namespaces | |
| namespace | Stream |
Classes | |
| class | Exception |
| Class that provides for a standard NeXus exception. More... | |
| struct | Info |
| This structure holds the type and dimensions of a primative field/array. More... | |
| struct | AttrInfo |
| Information about an attribute. More... | |
| class | File |
| The Object that allows access to the information in the file. More... | |
Typedefs | |
| typedef std::multimap < std::string, std::string > | TypeMap |
| Type definition for a type-keyed multimap. | |
Enumerations | |
| enum | NXnumtype { FLOAT32 = NX_FLOAT32, FLOAT64 = NX_FLOAT64, INT8 = NX_INT8, UINT8 = NX_UINT8, INT16 = NX_INT16, UINT16 = NX_UINT16, INT32 = NX_INT32, UINT32 = NX_UINT32, INT64 = NX_INT64, UINT64 = NX_UINT64, CHAR = NX_CHAR, BINARY = NX_BINARY } |
| The primitive types published by this API. More... | |
| enum | NXcompression { CHUNK = NX_CHUNK, NONE = NX_COMP_NONE, LZW = NX_COMP_LZW, RLE = NX_COMP_RLE, HUF = NX_COMP_HUF } |
| The available compression types. More... | |
Functions | |
| template<> | |
| NXnumtype | getType (char number) |
| template<> | |
| NXnumtype | getType (float number) |
| template<> | |
| NXnumtype | getType (double number) |
| template<> | |
| NXnumtype | getType (int8_t number) |
| template<> | |
| NXnumtype | getType (uint8_t number) |
| template<> | |
| NXnumtype | getType (int16_t number) |
| template<> | |
| NXnumtype | getType (uint16_t number) |
| template<> | |
| NXnumtype | getType (int32_t number) |
| template<> | |
| NXnumtype | getType (uint32_t number) |
| template<> | |
| NXnumtype | getType (int64_t number) |
| template<> | |
| NXnumtype | getType (uint64_t number) |
| typedef std::multimap<std::string, std::string> NeXus::TypeMap |
Type definition for a type-keyed multimap.
Definition at line 83 of file NeXusFile.hpp.
| NXnumtype NeXus::getType | ( | char | number | ) |
Definition at line 64 of file NeXusFile.cpp.
References CHAR.
| NXnumtype NeXus::getType | ( | float | number | ) |
Definition at line 70 of file NeXusFile.cpp.
References FLOAT32.
| NXnumtype NeXus::getType | ( | double | number | ) |
Definition at line 75 of file NeXusFile.cpp.
References FLOAT64.
| NXnumtype NeXus::getType | ( | int8_t | number | ) |
Definition at line 80 of file NeXusFile.cpp.
References INT8.
| NXnumtype NeXus::getType | ( | uint8_t | number | ) |
Definition at line 85 of file NeXusFile.cpp.
References UINT8.
| NXnumtype NeXus::getType | ( | int16_t | number | ) |
Definition at line 90 of file NeXusFile.cpp.
References INT16.
| NXnumtype NeXus::getType | ( | uint16_t | number | ) |
Definition at line 95 of file NeXusFile.cpp.
References UINT16.
| NXnumtype NeXus::getType | ( | int32_t | number | ) |
Definition at line 100 of file NeXusFile.cpp.
References INT32.
| NXnumtype NeXus::getType | ( | uint32_t | number | ) |
Definition at line 105 of file NeXusFile.cpp.
References UINT32.
| NXnumtype NeXus::getType | ( | int64_t | number | ) |
Definition at line 110 of file NeXusFile.cpp.
References INT64.
| NXnumtype NeXus::getType | ( | uint64_t | number | ) |
Definition at line 115 of file NeXusFile.cpp.
References UINT64.
1.8.1.1