Mesh Oriented datABase
(version 5.4.1)
Array-based unstructured mesh datastructure
|
#include <cstdlib>
#include <vector>
#include <map>
#include <iostream>
#include <string>
#include <algorithm>
#include "moab/CN.hpp"
#include "moab/Range.hpp"
#include "moab/Interface.hpp"
#include "MBTagConventions.hpp"
#include "Internals.hpp"
#include "moab/ReadUtilIface.hpp"
#include "moab/FileOptions.hpp"
#include "ReadCCMIO.hpp"
#include "moab/MeshTopoUtil.hpp"
#include "ccmio.h"
Go to the source code of this file.
Namespaces | |
namespace | moab |
Class representing axis-aligned bounding box. | |
Defines | |
#define | CHK_SET_CCMERR(ccm_err_code, ccm_err_msg) |
Enumerations | |
enum | DataType { kScalar, kVector, kVertex, kCell, kInternalFace, kBoundaryFace, kBoundaryData, kBoundaryFaceData, kCellType } |
Variables | |
static int const | moab::kNValues = 10 |
static char const | moab::kDefaultState [] = "default" |
static char const | moab::kUnitsName [] = "Units" |
static int const | moab::kVertOffset = 2 |
static int const | moab::kCellInc = 4 |
#define CHK_SET_CCMERR | ( | ccm_err_code, | |
ccm_err_msg | |||
) |
{ \ if( kCCMIONoErr != ( ccm_err_code ) && kCCMIONoFileErr != ( ccm_err_code ) && \ kCCMIONoNodeErr != ( ccm_err_code ) ) \ MB_SET_ERR( MB_FAILURE, ccm_err_msg ); \ }
Definition at line 80 of file ReadCCMIO.cpp.
Referenced by moab::ReadCCMIO::get_processors(), moab::ReadCCMIO::get_state(), moab::ReadCCMIO::load_file(), moab::ReadCCMIO::read_all_faces(), moab::ReadCCMIO::read_faces(), moab::ReadCCMIO::read_gids_and_types(), moab::ReadCCMIO::read_topology_types(), and moab::ReadCCMIO::read_vertices().
enum DataType |
kScalar | |
kVector | |
kVertex | |
kCell | |
kInternalFace | |
kBoundaryFace | |
kBoundaryData | |
kBoundaryFaceData | |
kCellType |
Definition at line 58 of file ReadCCMIO.cpp.