PyNE C++
|
Provides some HDF5 helper functionality in its own namespace. More...
#include <iostream>
#include <fstream>
#include <string>
#include <map>
#include <vector>
#include <set>
#include <stdio.h>
#include <stdlib.h>
#include <exception>
#include "hdf5.h"
#include "extra_types.h"
Go to the source code of this file.
Classes | |
class | h5wrap::HDF5BoundsError |
Custom exception for HDF5 indexing errors. More... | |
class | h5wrap::FileNotHDF5 |
Custom exception for when an existing file is not in a valid HDF5 format. More... | |
class | h5wrap::GroupNotFound |
Custom exception for when a group cannot be found in an HDF5 file. More... | |
class | h5wrap::PathNotFound |
Custom exception for when a path is not found in an HDF5 file. More... | |
class | h5wrap::HomogenousTypeTable< T > |
Namespaces | |
h5wrap | |
Wrapper for standard HDF5 operations. | |
Functions | |
template<typename T > | |
T | h5wrap::get_array_index (hid_t dset, int n, hid_t dtype=H5T_NATIVE_DOUBLE) |
template<typename T > | |
std::set< T > | h5wrap::h5_array_to_cpp_set (hid_t h5file, std::string data_path, hid_t dtype=H5T_NATIVE_DOUBLE) |
template<typename T > | |
std::vector< T > | h5wrap::h5_array_to_cpp_vector_1d (hid_t h5file, std::string data_path, hid_t dtype=H5T_NATIVE_DOUBLE) |
template<typename T > | |
std::vector< std::vector< T > > | h5wrap::h5_array_to_cpp_vector_2d (hid_t h5file, std::string data_path, hid_t dtype=H5T_NATIVE_DOUBLE) |
template<typename T > | |
std::vector< std::vector< std::vector< T > > > | h5wrap::h5_array_to_cpp_vector_3d (hid_t h5file, std::string data_path, hid_t dtype=H5T_NATIVE_DOUBLE) |
hid_t | h5wrap::_get_PYTABLES_COMPLEX128 () |
bool | h5wrap::path_exists (hid_t h5file, std::string path) |
Provides some HDF5 helper functionality in its own namespace.