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