VTK  9.3.1
vtkAlignImageDataSetFilter.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
21 #ifndef vtkAlignImageDataSetFilter_h
22 #define vtkAlignImageDataSetFilter_h
23 
24 #include "vtkFiltersParallelModule.h" // for export macros
26 
27 VTK_ABI_NAMESPACE_BEGIN
29 
30 class VTKFILTERSPARALLEL_EXPORT vtkAlignImageDataSetFilter : public vtkPassInputTypeAlgorithm
31 {
32 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
38 
42  void SetController(vtkMultiProcessController*);
43  vtkGetObjectMacro(Controller, vtkMultiProcessController);
45 
47 
50  vtkSetVector3Macro(MinimumExtent, int);
51  vtkGetVector3Macro(MinimumExtent, int);
53 protected:
55  ~vtkAlignImageDataSetFilter() override;
56 
59 
60 private:
62  void operator=(const vtkAlignImageDataSetFilter&) = delete;
63  vtkMultiProcessController* Controller;
64  int MinimumExtent[3];
65 };
66 VTK_ABI_NAMESPACE_END
67 
68 #endif
Superclass for algorithms that produce output of the same type as input.
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:28
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
align collection of image datasets to use a global origin
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkPassInputTypeAlgorithm * New()
Multiprocessing communication superclass.