Skip to content

Refactored ProcessLib::getIntegrationPointMetaData

Jeremie Lagraviere requested to merge lagraviereScience/ogs:refactorings into master

Refactored ProcessLib::getIntegrationPointMetaData() Before:

IntegrationPointMetaData getIntegrationPointMetaData(MeshLib::Mesh const& mesh,
                                                     std::string const& name);

After:

IntegrationPointMetaData getIntegrationPointMetaData(MeshLib::Properties const& properties,
                                                     std::string const& name);

Now the function takes as a parameters a MeshLib::properties instead of the whole mesh

Edited by Jeremie Lagraviere

Merge request reports