Go to the documentation of this file.00001 #include "CubitFacetData.hpp"
00002 #include "CubitPointData.hpp"
00003 #include "TDGeomFacet.hpp"
00004 #include "TDFacetBoundaryPoint.hpp"
00005 #include "TDFacetBoundaryEdge.hpp"
00006
00007
00008 const int NODE_ALLOC_SIZE = 1024;
00009 const int TRI_ALLOC_SIZE = 4*NODE_ALLOC_SIZE;
00010
00011
00012 MemoryManager CubitFacetData::memoryManager("CubitFacetData", sizeof(CubitFacetData),
00013 TRI_ALLOC_SIZE,
00014 STATIC_MEMORY_MANAGER);
00015
00016 MemoryManager CubitPointData::memoryManager("CubitPointData", sizeof(CubitPointData),
00017 NODE_ALLOC_SIZE,
00018 STATIC_MEMORY_MANAGER);
00019
00020 MemoryManager TDGeomFacet::memoryManager("TDGeomFacet", sizeof(TDGeomFacet),
00021 NODE_ALLOC_SIZE,
00022 STATIC_MEMORY_MANAGER);
00023
00024 MemoryManager TDFacetBoundaryEdge::memoryManager("TDFacetBoundaryEdge", sizeof(TDFacetBoundaryEdge),
00025 NODE_ALLOC_SIZE,
00026 STATIC_MEMORY_MANAGER);
00027
00028 MemoryManager TDFacetBoundaryPoint::memoryManager("TDFacetBoundaryPoint", sizeof(TDFacetBoundaryPoint),
00029 NODE_ALLOC_SIZE,
00030 STATIC_MEMORY_MANAGER);
00031
00032