Branch data Line data Source code
1 : : #include "CubitFacetData.hpp"
2 : : #include "CubitPointData.hpp"
3 : : #include "TDGeomFacet.hpp"
4 : : #include "TDFacetBoundaryPoint.hpp"
5 : : #include "TDFacetBoundaryEdge.hpp"
6 : :
7 : :
8 : : const int NODE_ALLOC_SIZE = 1024;
9 : : const int TRI_ALLOC_SIZE = 4*NODE_ALLOC_SIZE;
10 : :
11 : :
12 : 1635 : MemoryManager CubitFacetData::memoryManager("CubitFacetData", sizeof(CubitFacetData),
13 : : TRI_ALLOC_SIZE,
14 : : STATIC_MEMORY_MANAGER);
15 : :
16 : 1635 : MemoryManager CubitPointData::memoryManager("CubitPointData", sizeof(CubitPointData),
17 : : NODE_ALLOC_SIZE,
18 : : STATIC_MEMORY_MANAGER);
19 : :
20 : 1635 : MemoryManager TDGeomFacet::memoryManager("TDGeomFacet", sizeof(TDGeomFacet),
21 : : NODE_ALLOC_SIZE,
22 : : STATIC_MEMORY_MANAGER);
23 : :
24 : 1635 : MemoryManager TDFacetBoundaryEdge::memoryManager("TDFacetBoundaryEdge", sizeof(TDFacetBoundaryEdge),
25 : : NODE_ALLOC_SIZE,
26 : : STATIC_MEMORY_MANAGER);
27 : :
28 : 1635 : MemoryManager TDFacetBoundaryPoint::memoryManager("TDFacetBoundaryPoint", sizeof(TDFacetBoundaryPoint),
29 : : NODE_ALLOC_SIZE,
30 [ + - ][ + - ]: 6540 : STATIC_MEMORY_MANAGER);
31 : :
32 : :
|