Skip to content
Snippets Groups Projects
Commit 9c4873ce authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL] Add non-const version of getPropertyVector.

parent 3d4ba28b
No related branches found
No related tags found
No related merge requests found
...@@ -163,3 +163,39 @@ PropertyVector<T> const* Properties::getPropertyVector( ...@@ -163,3 +163,39 @@ PropertyVector<T> const* Properties::getPropertyVector(
} }
return property; return property;
} }
template <typename T>
PropertyVector<T>* Properties::getPropertyVector(std::string const& name,
MeshItemType const item_type,
int const n_components)
{
auto const it = _properties.find(name);
if (it == _properties.end())
{
OGS_FATAL("A PropertyVector with name '%s' does not exist in the mesh.",
name.c_str());
}
auto property = dynamic_cast<PropertyVector<T>*>(it->second);
if (property == nullptr)
{
OGS_FATAL(
"Could not cast the data type of the PropertyVector '%s' to "
"requested data type.",
name.c_str());
}
if (property->getMeshItemType() != item_type)
{
OGS_FATAL(
"The PropertyVector '%s' has type '%s'. A '%s' field is requested.",
name.c_str(), toString(property->getMeshItemType()),
toString(item_type));
}
if (property->getNumberOfComponents() != n_components)
{
OGS_FATAL(
"PropertyVector '%s' has %d components, %d components are needed.",
name.c_str(), property->getNumberOfComponents(), n_components);
}
return property;
}
...@@ -103,6 +103,14 @@ public: ...@@ -103,6 +103,14 @@ public:
MeshItemType const item_type, MeshItemType const item_type,
int const n_components) const; int const n_components) const;
/// Non-const version of getPropertyVector returns a property vector with
/// given \c name, \c item_type and \c number_of_components or calls
/// OGS_FATAL if no such property vector exists.
template <typename T>
PropertyVector<T>* getPropertyVector(std::string const& name,
MeshItemType const item_type,
int const number_of_components);
void removePropertyVector(std::string const& name); void removePropertyVector(std::string const& name);
/// Check if a PropertyVector accessible by the name is already /// Check if a PropertyVector accessible by the name is already
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment