Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MostafaMollaali
dynamic
Commits
9c4873ce
Commit
9c4873ce
authored
6 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[MeL] Add non-const version of getPropertyVector.
parent
3d4ba28b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MeshLib/Properties-impl.h
+36
-0
36 additions, 0 deletions
MeshLib/Properties-impl.h
MeshLib/Properties.h
+8
-0
8 additions, 0 deletions
MeshLib/Properties.h
with
44 additions
and
0 deletions
MeshLib/Properties-impl.h
+
36
−
0
View file @
9c4873ce
...
@@ -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
;
}
This diff is collapsed.
Click to expand it.
MeshLib/Properties.h
+
8
−
0
View file @
9c4873ce
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment