Newer
Older
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
// ============================================================================
// == ==
// == AMDiS - Adaptive multidimensional simulations ==
// == ==
// ============================================================================
// == ==
// == crystal growth group ==
// == ==
// == Stiftung caesar ==
// == Ludwig-Erhard-Allee 2 ==
// == 53175 Bonn ==
// == germany ==
// == ==
// ============================================================================
// == ==
// == http://www.caesar.de/cg/AMDiS ==
// == ==
// ============================================================================
/** \file ElementRegion_ED.h */
#ifndef AMDIS_ELEMENTREGION_ED_H
#define AMDIS_ELEMENTREGION_ED_H
#include "ElementData.h"
#include "FixVec.h"
namespace AMDiS {
class ElementRegion_ED : public ElementData
{
public:
MEMORY_MANAGED(ElementRegion_ED);
inline bool isOfType(int typeID) const {
if(typeID == ELEMENT_REGION)
return true;
return false;
};
class Creator : public CreatorInterface<ElementData>
{
public:
ElementData* create() {
return NEW ElementRegion_ED;
};
};
ElementRegion_ED(ElementData *decorated = NULL)
: ElementData(decorated),
region_(-1)
{};
bool refineElementData(Element* parent,
Element* child1,
Element* child2,
int elType)
{
ElementData::refineElementData(parent, child1, child2, elType);
ElementRegion_ED *ep;
ep = NEW ElementRegion_ED(child1->getElementData());
ep->region_ = region_;
child1->setElementData(ep);
ep = NEW ElementRegion_ED(child2->getElementData());
ep->region_ = region_;
child2->setElementData(ep);
return false;
};
ElementData *clone() const {
ElementRegion_ED *newObj = NEW ElementRegion_ED;
newObj->region_ = region_;
newObj->decorated_ = ElementData::clone();
return newObj;
};
inline std::string getTypeName() const { return "ElementRegion_ED"; };
inline const int getTypeID() const { return ELEMENT_REGION; };
{
ElementData::serialize(out);
out.write(reinterpret_cast<const char*>(®ion_), sizeof(int));
};
{
ElementData::deserialize(in);
in.read(reinterpret_cast<char*>(®ion_), sizeof(int));
};
inline void setRegion(int region) { region_ = region; };
inline int getRegion() const { return region_; };
protected:
int region_;
};
}
#endif