Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Kevin Griffin
VTK
Commits
103f9e03
Commit
103f9e03
authored
2 months ago
by
Nicolas Vuaille
Browse files
Options
Downloads
Patches
Plain Diff
Factorize enum-to-string conversion
parent
2e33c604
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
Filters/Hybrid/vtkTemporalArrayOperatorFilter.cxx
+24
-20
24 additions, 20 deletions
Filters/Hybrid/vtkTemporalArrayOperatorFilter.cxx
Filters/Hybrid/vtkTemporalArrayOperatorFilter.h
+5
-0
5 additions, 0 deletions
Filters/Hybrid/vtkTemporalArrayOperatorFilter.h
with
29 additions
and
20 deletions
Filters/Hybrid/vtkTemporalArrayOperatorFilter.cxx
+
24
−
20
View file @
103f9e03
...
...
@@ -41,7 +41,8 @@ vtkTemporalArrayOperatorFilter::~vtkTemporalArrayOperatorFilter()
void
vtkTemporalArrayOperatorFilter
::
PrintSelf
(
ostream
&
os
,
vtkIndent
indent
)
{
this
->
Superclass
::
PrintSelf
(
os
,
indent
);
os
<<
indent
<<
"Operator: "
<<
this
->
Operator
<<
endl
;
os
<<
indent
<<
"Operator: "
<<
this
->
GetOperatorAsString
()
<<
" ("
<<
this
->
Operator
<<
")"
<<
endl
;
os
<<
indent
<<
"First time step: "
<<
this
->
FirstTimeStepIndex
<<
endl
;
os
<<
indent
<<
"Second time step: "
<<
this
->
SecondTimeStepIndex
<<
endl
;
os
<<
indent
<<
"Output array name suffix: "
...
...
@@ -355,31 +356,16 @@ vtkDataArray* vtkTemporalArrayOperatorFilter::ProcessDataArray(
outputDataArray
->
SetNumberOfTuples
(
inputArray0
->
GetNumberOfTuples
());
outputDataArray
->
CopyComponentNames
(
inputArray0
);
std
::
string
s
=
inputArray0
->
GetName
()
?
inputArray0
->
GetName
()
:
"input_array"
;
std
::
string
arrayName
=
inputArray0
->
GetName
()
?
inputArray0
->
GetName
()
:
"input_array"
;
if
(
this
->
OutputArrayNameSuffix
&&
strlen
(
this
->
OutputArrayNameSuffix
)
!=
0
)
{
s
+=
this
->
OutputArrayNameSuffix
;
arrayName
+=
this
->
OutputArrayNameSuffix
;
}
else
{
switch
(
this
->
Operator
)
{
case
SUB
:
s
+=
"_sub"
;
break
;
case
MUL
:
s
+=
"_mul"
;
break
;
case
DIV
:
s
+=
"_div"
;
break
;
case
ADD
:
default:
s
+=
"_add"
;
break
;
}
arrayName
+=
"_"
+
this
->
GetOperatorAsString
();
}
outputDataArray
->
SetName
(
s
.
c_str
());
outputDataArray
->
SetName
(
arrayName
.
c_str
());
// Let's perform the operation on the array
TemporalDataOperatorWorker
worker
(
this
->
Operator
);
...
...
@@ -392,4 +378,22 @@ vtkDataArray* vtkTemporalArrayOperatorFilter::ProcessDataArray(
return
outputDataArray
;
}
//------------------------------------------------------------------------------
std
::
string
vtkTemporalArrayOperatorFilter
::
GetOperatorAsString
()
{
switch
(
this
->
Operator
)
{
case
OperatorType
::
SUB
:
return
"sub"
;
case
OperatorType
::
MUL
:
return
"mul"
;
case
OperatorType
::
DIV
:
return
"div"
;
case
OperatorType
::
ADD
:
default:
return
"add"
;
}
}
VTK_ABI_NAMESPACE_END
This diff is collapsed.
Click to expand it.
Filters/Hybrid/vtkTemporalArrayOperatorFilter.h
+
5
−
0
View file @
103f9e03
...
...
@@ -89,6 +89,11 @@ private:
vtkTemporalArrayOperatorFilter
(
const
vtkTemporalArrayOperatorFilter
&
)
=
delete
;
void
operator
=
(
const
vtkTemporalArrayOperatorFilter
&
)
=
delete
;
/**
* Return a lower-case string for Operator
*/
std
::
string
GetOperatorAsString
();
int
Operator
=
OperatorType
::
ADD
;
int
FirstTimeStepIndex
=
0
;
int
SecondTimeStepIndex
=
0
;
...
...
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