VTK  9.3.20240425
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
24#ifndef vtkSplitByCellScalarFilter_h
25#define vtkSplitByCellScalarFilter_h
26
27#include "vtkFiltersGeneralModule.h" // For export macro
29
30VTK_ABI_NAMESPACE_BEGIN
31class VTKFILTERSGENERAL_EXPORT vtkSplitByCellScalarFilter : public vtkMultiBlockDataSetAlgorithm
32{
33public:
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
39
47 vtkGetMacro(PassAllPoints, bool);
48 vtkSetMacro(PassAllPoints, bool);
49 vtkBooleanMacro(PassAllPoints, bool);
51
52protected:
55
56 // Usual data generation method
58
59 int FillInputPortInformation(int port, vtkInformation* info) override;
60
62
63private:
65 void operator=(const vtkSplitByCellScalarFilter&) = delete;
66};
67
68VTK_ABI_NAMESPACE_END
69#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