VTK  9.3.20240420
vtkPProbeFilter.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
15#ifndef vtkPProbeFilter_h
16#define vtkPProbeFilter_h
17
19#include "vtkFiltersParallelModule.h" // For export macro
20
21VTK_ABI_NAMESPACE_BEGIN
23
24class VTKFILTERSPARALLEL_EXPORT vtkPProbeFilter : public vtkCompositeDataProbeFilter
25{
26public:
28 void PrintSelf(ostream& os, vtkIndent indent) override;
29
31
33
37 vtkGetObjectMacro(Controller, vtkMultiProcessController);
39
40protected:
42 ~vtkPProbeFilter() override;
43
44 enum
45 {
46 PROBE_COMMUNICATION_TAG = 1970
47 };
48
49 // Usual data generation method
52 int FillInputPortInformation(int port, vtkInformation* info) override;
53
55
56private:
57 vtkPProbeFilter(const vtkPProbeFilter&) = delete;
58 void operator=(const vtkPProbeFilter&) = delete;
59};
60
61VTK_ABI_NAMESPACE_END
62#endif
subclass of vtkProbeFilter which supports composite datasets in the input.
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.
probe dataset in parallel
~vtkPProbeFilter() override
vtkMultiProcessController * Controller
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
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
Change input information to accept composite datasets as the input which is probed into.
static vtkPProbeFilter * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Handle composite input.
virtual void SetController(vtkMultiProcessController *)
Set and get the controller.