Skip to content
Snippets Groups Projects
Commit bd0177df authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[App/U] Update for ptr version of getPropertyVec.

parent c3335cc7
No related branches found
No related tags found
No related merge requests found
...@@ -79,17 +79,15 @@ template <typename PT> ...@@ -79,17 +79,15 @@ template <typename PT>
void resetMeshElementProperty(MeshLib::Mesh &mesh, GeoLib::Polygon const& polygon, void resetMeshElementProperty(MeshLib::Mesh &mesh, GeoLib::Polygon const& polygon,
std::string const& property_name, PT new_property_value) std::string const& property_name, PT new_property_value)
{ {
boost::optional<MeshLib::PropertyVector<PT> &> opt_pv( auto* const pv = mesh.getProperties().getPropertyVector<PT>(property_name);
mesh.getProperties().getPropertyVector<PT>(property_name) if (!pv) {
);
if (!opt_pv) {
WARN("Did not find a PropertyVector with name \"%s\".", WARN("Did not find a PropertyVector with name \"%s\".",
property_name.c_str()); property_name.c_str());
return; return;
} }
MeshLib::PropertyVector<PT> & pv(opt_pv.get()); if (pv->getMeshItemType() != MeshLib::MeshItemType::Cell)
if (pv.getMeshItemType() != MeshLib::MeshItemType::Cell) { {
ERR("Values of the PropertyVector are not assigned to cells."); ERR("Values of the PropertyVector are not assigned to cells.");
return; return;
} }
...@@ -108,7 +106,7 @@ void resetMeshElementProperty(MeshLib::Mesh &mesh, GeoLib::Polygon const& polygo ...@@ -108,7 +106,7 @@ void resetMeshElementProperty(MeshLib::Mesh &mesh, GeoLib::Polygon const& polygo
} }
} }
if (!elem_out) { if (!elem_out) {
pv[j] = new_property_value; (*pv)[j] = new_property_value;
} }
} }
} }
...@@ -206,14 +204,14 @@ int main (int argc, char* argv[]) ...@@ -206,14 +204,14 @@ int main (int argc, char* argv[])
char new_property_val(char_property_arg.getValue()); char new_property_val(char_property_arg.getValue());
// check if PropertyVector exists // check if PropertyVector exists
boost::optional<MeshLib::PropertyVector<char> &> opt_pv( auto* pv = mesh->getProperties().getPropertyVector<char>(property_name);
mesh->getProperties().getPropertyVector<char>(property_name) if (!pv)
); {
if (!opt_pv) { pv = mesh->getProperties().createNewPropertyVector<char>(
opt_pv = mesh->getProperties().createNewPropertyVector<char>(
property_name, MeshLib::MeshItemType::Cell, 1); property_name, MeshLib::MeshItemType::Cell, 1);
opt_pv.get().resize(mesh->getElements().size()); pv->resize(mesh->getElements().size());
INFO("Created PropertyVector with name \"%s\".", property_name.c_str()); INFO("Created PropertyVector with name \"%s\".",
property_name.c_str());
} }
resetMeshElementProperty(*mesh, polygon, property_name, new_property_val); resetMeshElementProperty(*mesh, polygon, property_name, new_property_val);
} }
...@@ -222,13 +220,12 @@ int main (int argc, char* argv[]) ...@@ -222,13 +220,12 @@ int main (int argc, char* argv[])
int int_property_val(int_property_arg.getValue()); int int_property_val(int_property_arg.getValue());
// check if PropertyVector exists // check if PropertyVector exists
boost::optional<MeshLib::PropertyVector<int> &> opt_pv( auto* pv = mesh->getProperties().getPropertyVector<int>(property_name);
mesh->getProperties().getPropertyVector<int>(property_name) if (!pv)
); {
if (!opt_pv) { pv = mesh->getProperties().createNewPropertyVector<int>(
opt_pv = mesh->getProperties().createNewPropertyVector<int>(
property_name, MeshLib::MeshItemType::Cell, 1); property_name, MeshLib::MeshItemType::Cell, 1);
opt_pv.get().resize(mesh->getElements().size()); pv->resize(mesh->getElements().size());
INFO("Created PropertyVector with name \"%s\".", property_name.c_str()); INFO("Created PropertyVector with name \"%s\".", property_name.c_str());
} }
......
...@@ -83,21 +83,22 @@ int main (int argc, char* argv[]) ...@@ -83,21 +83,22 @@ int main (int argc, char* argv[])
// ToDo check if mesh is read correct and if the mesh is a surface mesh // ToDo check if mesh is read correct and if the mesh is a surface mesh
// check if a node property containing the subsurface ids is available // check if a node property containing the subsurface ids is available
boost::optional<MeshLib::PropertyVector<std::size_t>&> orig_node_ids( auto* orig_node_ids =
surface_mesh->getProperties().getPropertyVector<std::size_t>( surface_mesh->getProperties().getPropertyVector<std::size_t>(
id_prop_name.getValue())); id_prop_name.getValue());
// if the node property is not available generate it // if the node property is not available generate it
if (!orig_node_ids) { if (!orig_node_ids)
boost::optional<MeshLib::PropertyVector<std::size_t>&> node_ids( {
orig_node_ids =
surface_mesh->getProperties().createNewPropertyVector<std::size_t>( surface_mesh->getProperties().createNewPropertyVector<std::size_t>(
id_prop_name.getValue(), MeshLib::MeshItemType::Node, 1)); id_prop_name.getValue(), MeshLib::MeshItemType::Node, 1);
if (!node_ids) { if (!orig_node_ids)
{
ERR("Fatal error: could not create property."); ERR("Fatal error: could not create property.");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
node_ids->resize(surface_mesh->getNumberOfNodes()); orig_node_ids->resize(surface_mesh->getNumberOfNodes());
std::iota(node_ids->begin(), node_ids->end(), 0); std::iota(orig_node_ids->begin(), orig_node_ids->end(), 0);
orig_node_ids = node_ids;
} }
std::vector<double> areas( std::vector<double> areas(
......
...@@ -38,8 +38,8 @@ std::vector<double> getSurfaceIntegratedValuesForNodes( ...@@ -38,8 +38,8 @@ std::vector<double> getSurfaceIntegratedValuesForNodes(
return std::vector<double>(); return std::vector<double>();
} }
boost::optional<MeshLib::PropertyVector<double> const&> elem_pv( auto const* const elem_pv =
mesh.getProperties().getPropertyVector<double>(prop_name)); mesh.getProperties().getPropertyVector<double>(prop_name);
if (!elem_pv) if (!elem_pv)
{ {
ERR("Need element property, but the property \"%s\" is not " ERR("Need element property, but the property \"%s\" is not "
...@@ -131,9 +131,8 @@ int main(int argc, char* argv[]) ...@@ -131,9 +131,8 @@ int main(int argc, char* argv[])
MeshLib::IO::readMeshFromFile(in_mesh.getValue())); MeshLib::IO::readMeshFromFile(in_mesh.getValue()));
std::string const prop_name("OriginalSubsurfaceNodeIDs"); std::string const prop_name("OriginalSubsurfaceNodeIDs");
boost::optional<MeshLib::PropertyVector<std::size_t>&> const node_id_pv( auto const* const node_id_pv =
surface_mesh->getProperties().getPropertyVector<std::size_t>( surface_mesh->getProperties().getPropertyVector<std::size_t>(prop_name);
prop_name));
if (!node_id_pv) if (!node_id_pv)
{ {
ERR( ERR(
...@@ -156,10 +155,10 @@ int main(int argc, char* argv[]) ...@@ -156,10 +155,10 @@ int main(int argc, char* argv[])
direct_values.push_back(std::make_pair(subsurface_node_id, val)); direct_values.push_back(std::make_pair(subsurface_node_id, val));
} }
boost::optional<MeshLib::PropertyVector<double>&> pv( auto* const pv =
surface_mesh->getProperties().createNewPropertyVector<double>( surface_mesh->getProperties().createNewPropertyVector<double>(
property_out_arg.getValue(), MeshLib::MeshItemType::Node, 1)); property_out_arg.getValue(), MeshLib::MeshItemType::Node, 1);
(*pv).resize(surface_mesh->getNodes().size()); pv->resize(surface_mesh->getNodes().size());
for (std::size_t k(0); k<surface_mesh->getNodes().size(); ++k) { for (std::size_t k(0); k<surface_mesh->getNodes().size(); ++k) {
(*pv)[k] = direct_values[k].second; (*pv)[k] = direct_values[k].second;
} }
......
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