VTK
vtkSplitByCellScalarFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSplitByCellScalarFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
33 #ifndef vtkSplitByCellScalarFilter_h
34 #define vtkSplitByCellScalarFilter_h
35 
36 #include "vtkFiltersGeneralModule.h" // For export macro
38 
39 
40 class VTKFILTERSGENERAL_EXPORT vtkSplitByCellScalarFilter : public vtkMultiBlockDataSetAlgorithm
41 {
42 public:
45  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
46 
48 
56  vtkGetMacro(PassAllPoints, bool);
57  vtkSetMacro(PassAllPoints, bool);
58  vtkBooleanMacro(PassAllPoints, bool);
60 
61 protected:
63  ~vtkSplitByCellScalarFilter() VTK_OVERRIDE;
64 
65  // Usual data generation method
66  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
67 
68  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
69 
70  bool PassAllPoints;
71 
72 private:
73  vtkSplitByCellScalarFilter(const vtkSplitByCellScalarFilter&) VTK_DELETE_FUNCTION;
74  void operator=(const vtkSplitByCellScalarFilter&) VTK_DELETE_FUNCTION;
75 };
76 
77 #endif
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
static vtkMultiBlockDataSetAlgorithm * New()
a simple class to control print indentation
Definition: vtkIndent.h:33
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Store zero or more vtkInformation instances.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
splits input dataset according an integer cell scalar array.