-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgDiscRFS_template.h
138 lines (113 loc) · 4.43 KB
/
DgDiscRFS_template.h
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
////////////////////////////////////////////////////////////////////////////////
//
// DgDiscRFS_template.h: DgDiscRFS template class definition.
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#include "DgRF.h"
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> void
DgDiscRFS<A, B, DB>::setAddNeighbors (const DgResAdd<A>& add,
DgLocVector& vec) const
{
grids()[add.res()]->convert(vec);
grids()[add.res()]->setAddNeighbors(add.address(), vec);
this->convert(vec);
} // void DgDiscRFS<A, B, DB>::setAddNeighbors
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> void
DgDiscRFS<A, B, DB>::setParents (int res, const DgLocation& loc,
DgLocVector& vec) const
{
vec.clearAddress();
this->convert(vec);
if (res > 0 && res < nRes())
{
DgLocation tmpLoc(loc);
grids()[res]->convert(&tmpLoc);
this->convert(&tmpLoc);
setAddParents(*(this->getAddress(tmpLoc)), vec);
}
} // void DgDiscRFS::setParents
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> void
DgDiscRFS<A, B, DB>::setInteriorChildren (int res, const DgLocation& loc,
DgLocVector& vec) const
{
vec.clearAddress();
this->convert(vec);
if (res >= 0 && res < (nRes() - 1))
{
DgLocation tmpLoc(loc);
grids()[res]->convert(&tmpLoc);
this->convert(&tmpLoc);
setAddInteriorChildren(*(this->getAddress(tmpLoc)), vec);
}
} // void DgDiscRFS::setInteriorChildren
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> void
DgDiscRFS<A, B, DB>::setBoundaryChildren (int res, const DgLocation& loc,
DgLocVector& vec) const
{
vec.clearAddress();
this->convert(vec);
if (res >= 0 && res < (nRes() - 1))
{
DgLocation tmpLoc(loc);
grids()[res]->convert(&tmpLoc);
this->convert(&tmpLoc);
setAddBoundaryChildren(*(this->getAddress(tmpLoc)), vec);
}
} // void DgDiscRFS::setBoundaryChildren
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> void
DgDiscRFS<A, B, DB>::setAllChildren (int res, const DgLocation& loc,
DgLocVector& vec) const
{
vec.clearAddress();
this->convert(vec);
if (res >= 0 && res < (nRes() - 1))
{
DgLocation tmpLoc(loc);
grids()[res]->convert(&tmpLoc);
this->convert(&tmpLoc);
setAddAllChildren(*(this->getAddress(tmpLoc)), vec);
}
} // void DgDiscRFS::setAllChildren
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> const char*
DgDiscRFS<A, B, DB>::str2add (DgResAdd<A>* add, const char* str,
char delimiter) const
{
if (!add) add = new DgResAdd<A>();
char delimStr[2];
delimStr[0] = delimiter;
delimStr[1] = '\0';
char* tmpStr = new char[strlen(str) + 1];
strcpy(tmpStr, str);
char* tok;
// get the resolution
tok = strtok(tmpStr, delimStr);
int res;
if (sscanf(tok, "%d", &res) != 1)
{
::report("DgDiscRFS<A, B, DB>::str2add() invalid res string " +
string(tok), DgBase::Fatal);
}
// now get the address
const char* tmp = &(str[strlen(tok) + 1]);
DgLocation tloc(*grids()[res]);
tmp = tloc.fromString(tmp, delimiter);
const A& subAdd = *grids()[res]->getAddress(tloc);
*add = DgResAdd<A>(subAdd, res);
return tmp;
} // const char* DgDiscRFS::str2add
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////