Loading [MathJax]/extensions/tex2jax.js
VTK  9.4.20250404
vtkSplitByCellScalarFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
28#ifndef vtkSplitByCellScalarFilter_h
29#define vtkSplitByCellScalarFilter_h
30
31#include "vtkFiltersGeneralModule.h" // For export macro
33
34VTK_ABI_NAMESPACE_BEGIN
35class VTKFILTERSGENERAL_EXPORT vtkSplitByCellScalarFilter : public vtkMultiBlockDataSetAlgorithm
36{
37public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
43
51 vtkGetMacro(PassAllPoints, bool);
52 vtkSetMacro(PassAllPoints, bool);
53 vtkBooleanMacro(PassAllPoints, bool);
55
56protected:
59
60 // Usual data generation method
62
63 int FillInputPortInformation(int port, vtkInformation* info) override;
64
66
67private:
69 void operator=(const vtkSplitByCellScalarFilter&) = delete;
70};
71
72VTK_ABI_NAMESPACE_END
73#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
splits input dataset according an integer cell scalar array.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkSplitByCellScalarFilter * New()
~vtkSplitByCellScalarFilter() override