Newer
Older
// ============================================================================
// == ==
// == AMDiS - Adaptive multidimensional simulations ==
// == ==
// ============================================================================
// == ==
// == Institut fr Wissenschaftliches Rechnen ==
// == Zellescher Weg 12-14 ==
// == 01069 Dresden ==
// == germany ==
// == ==
// ============================================================================
// == ==
// == https://gforge.zih.tu-dresden.de/projects/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:
inline bool isOfType(int typeID) const
{
if (typeID == ELEMENT_REGION)
return true;
return false;
class Creator : public CreatorInterface<ElementData>
{
public:
};
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;
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