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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Mathieu Westphal (Kitware)
VTK
Commits
5932419e
Commit
5932419e
authored
9 years ago
by
Mathieu Westphal (Kitware)
Browse files
Options
Downloads
Patches
Plain Diff
Allow the use of any kind of dataset as an input to periodicFilter
parent
f7e845a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Filters/Parallel/vtkPeriodicFilter.cxx
+31
-2
31 additions, 2 deletions
Filters/Parallel/vtkPeriodicFilter.cxx
Filters/Parallel/vtkPeriodicFilter.h
+3
-0
3 additions, 0 deletions
Filters/Parallel/vtkPeriodicFilter.h
with
34 additions
and
2 deletions
Filters/Parallel/vtkPeriodicFilter.cxx
+
31
−
2
View file @
5932419e
...
...
@@ -16,7 +16,9 @@
#include
"vtkPeriodicFilter.h"
#include
"vtkDataObjectTreeIterator.h"
#include
"vtkDataSet.h"
#include
"vtkInformationVector.h"
#include
"vtkInformation.h"
#include
"vtkMultiBlockDataSet.h"
#include
"vtkMultiProcessController.h"
...
...
@@ -69,15 +71,37 @@ void vtkPeriodicFilter::RemoveAllIndices()
this
->
Modified
();
}
//----------------------------------------------------------------------------
int
vtkPeriodicFilter
::
FillInputPortInformation
(
int
vtkNotUsed
(
port
),
vtkInformation
*
info
)
{
// now add our info
info
->
Set
(
vtkAlgorithm
::
INPUT_REQUIRED_DATA_TYPE
(),
"vtkDataObject"
);
return
1
;
}
//----------------------------------------------------------------------------
int
vtkPeriodicFilter
::
RequestData
(
vtkInformation
*
vtkNotUsed
(
request
),
vtkInformationVector
**
inputVector
,
vtkInformationVector
*
outputVector
)
{
vtkMultiBlockDataSet
*
input
=
vtkMultiBlockDataSet
::
GetData
(
inputVector
[
0
],
0
);
// Recover casted dataset
vtkDataObject
*
inputObject
=
vtkDataObject
::
GetData
(
inputVector
[
0
],
0
);
vtkDataObjectTree
*
input
=
vtkDataObjectTree
::
SafeDownCast
(
inputObject
);
vtkDataSet
*
dsInput
=
vtkDataSet
::
SafeDownCast
(
inputObject
);
vtkMultiBlockDataSet
*
mb
=
NULL
;
vtkMultiBlockDataSet
*
output
=
vtkMultiBlockDataSet
::
GetData
(
outputVector
,
0
);
if
(
this
->
Indices
.
empty
())
if
(
dsInput
)
{
mb
=
vtkMultiBlockDataSet
::
New
();
mb
->
SetNumberOfBlocks
(
1
);
mb
->
SetBlock
(
0
,
dsInput
);
this
->
AddIndex
(
1
);
input
=
mb
;
}
else
if
(
this
->
Indices
.
empty
())
{
// Trivial case
output
->
ShallowCopy
(
input
);
...
...
@@ -144,5 +168,10 @@ int vtkPeriodicFilter::RequestData(vtkInformation *vtkNotUsed(request),
delete
[]
reducedPeriodNumbers
;
}
iter
->
Delete
();
if
(
mb
!=
NULL
)
{
mb
->
Delete
();
}
return
1
;
}
This diff is collapsed.
Click to expand it.
Filters/Parallel/vtkPeriodicFilter.h
+
3
−
0
View file @
5932419e
...
...
@@ -92,6 +92,9 @@ protected:
vtkPeriodicFilter
();
~
vtkPeriodicFilter
();
// see algorithm for more info
virtual
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
virtual
int
RequestData
(
vtkInformation
*
,
vtkInformationVector
**
,
vtkInformationVector
*
);
...
...
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