-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgIDGGS43H.cpp
85 lines (66 loc) · 2.74 KB
/
DgIDGGS43H.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
////////////////////////////////////////////////////////////////////////////////
//
// DgIDGGS43H.cpp: DgIDGGS43H class implementation
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#include <cmath>
#include "DgContCartRF.h"
#include "DgDiscRF.h"
#include "DgHexC1Grid2D.h"
#include "DgHexC2Grid2D.h"
#include "DgIDGGS43H.h"
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
DgIDGGS43H::DgIDGGS43H (const DgIDGGS43H& rf)
: DgIDGGS (rf)
{
report("DgIDGGS43H::operator=() not implemented yet", DgBase::Fatal);
} // DgIDGGS43H::DgIDGGS43H
////////////////////////////////////////////////////////////////////////////////
DgIDGGS43H::~DgIDGGS43H (void)
{
for (unsigned int i = 0; i < grids().size(); i++)
delete (*grids_)[i];
delete grids_;
} // DgIDGGS43H::~DgIDGGS43H
////////////////////////////////////////////////////////////////////////////////
DgIDGGS43H&
DgIDGGS43H::operator= (const DgIDGGS43H& rf)
{
report("DgIDGGS43H::operator=() not implemented", DgBase::Fatal);
return *this;
} // DgIDGGS43H& DgIDGGS43H::operator=
////////////////////////////////////////////////////////////////////////////////
void
DgIDGGS43H::setAddParents (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const
{
report("DgIDGGS43H::setAddParents() not implemented yet", DgBase::Fatal);
} // void DgIDGGS43H::setAddParents
////////////////////////////////////////////////////////////////////////////////
void
DgIDGGS43H::setAddInteriorChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const
{
report("DgIDGGS43H::setAddInteriorChildren() not implemented yet",
DgBase::Fatal);
} // void DgIDGGS43H::setAddInteriorChildren
////////////////////////////////////////////////////////////////////////////////
void
DgIDGGS43H::setAddBoundaryChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const
{
report("DgIDGGS43H::setAddBoundaryChildren() not implemented yet",
DgBase::Fatal);
} // void DgIDGGS43H::setAddBoundaryChildren
////////////////////////////////////////////////////////////////////////////////
void
DgIDGGS43H::setAddAllChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const
{
report("DgIDGGS43H::setAddAllChildren() not implemented yet", DgBase::Fatal);
} // void DgIDGGS43H::setAddAllChildren
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////