|
MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include <Tqdcfr.hpp>
Classes | |
| class | MetaDataEntry |
Public Member Functions | |
| void | print () |
| int | get_md_entry (const unsigned int owner, const std::string &name) |
| MetaDataContainer () | |
Public Attributes | |
| unsigned int | mdSchema |
| unsigned int | compressFlag |
| std::vector< MetaDataEntry > | metadataEntries |
Definition at line 91 of file Tqdcfr.hpp.
Definition at line 3028 of file Tqdcfr.cpp.
: mdSchema( 0 ), compressFlag( 0 ) {}
| int moab::Tqdcfr::MetaDataContainer::get_md_entry | ( | const unsigned int | owner, |
| const std::string & | name | ||
| ) |
Definition at line 3030 of file Tqdcfr.cpp.
Referenced by moab::Tqdcfr::get_names(), moab::Tqdcfr::load_file(), moab::Tqdcfr::read_group(), and moab::Tqdcfr::read_nodes().
{
for( unsigned int i = 0; i < metadataEntries.size(); i++ )
{
if( owner == metadataEntries[i].mdOwner && name == metadataEntries[i].mdName ) return i;
}
return -1;
}
Definition at line 3019 of file Tqdcfr.cpp.
References compressFlag, mdSchema, and metadataEntries.
Referenced by moab::Tqdcfr::read_meta_data().
{
std::cout << "MetaDataContainer:mdSchema, compressFlag, numDatums = " << mdSchema << ", " << compressFlag << ", "
<< metadataEntries.size() << std::endl;
for( unsigned int i = 0; i < metadataEntries.size(); i++ )
metadataEntries[i].print();
}
| unsigned int moab::Tqdcfr::MetaDataContainer::compressFlag |
Definition at line 94 of file Tqdcfr.hpp.
Referenced by print(), and moab::Tqdcfr::read_meta_data().
| unsigned int moab::Tqdcfr::MetaDataContainer::mdSchema |
Definition at line 94 of file Tqdcfr.hpp.
Referenced by print(), and moab::Tqdcfr::read_meta_data().
| std::vector< MetaDataEntry > moab::Tqdcfr::MetaDataContainer::metadataEntries |
Definition at line 114 of file Tqdcfr.hpp.
Referenced by moab::Tqdcfr::get_names(), moab::Tqdcfr::load_file(), print(), moab::Tqdcfr::read_group(), moab::Tqdcfr::read_meta_data(), and moab::Tqdcfr::read_nodes().