ParaView
vtkPExtractHistogram.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPExtractHistogram.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 =========================================================================*/
23 #ifndef vtkPExtractHistogram_h
24 #define vtkPExtractHistogram_h
25 
26 #include "vtkExtractHistogram.h"
27 #include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
28 
29 class vtkMultiProcessController;
30 
31 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkPExtractHistogram : public vtkExtractHistogram
32 {
33 public:
34  static vtkPExtractHistogram* New();
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
39 
43  virtual void SetController(vtkMultiProcessController*);
44  vtkGetObjectMacro(Controller, vtkMultiProcessController);
46 
47 protected:
50 
55  virtual bool GetInputArrayRange(vtkInformationVector** inputVector, double range[2]);
56 
57  virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
58  vtkInformationVector* outputVector);
59 
60  vtkMultiProcessController* Controller;
61 
62 private:
63  vtkPExtractHistogram(const vtkPExtractHistogram&) VTK_DELETE_FUNCTION;
64  void operator=(const vtkPExtractHistogram&) VTK_DELETE_FUNCTION;
65 };
66 
67 #endif
void PrintSelf(ostream &os, vtkIndent indent)
vtkMultiProcessController * Controller
static vtkExtractHistogram * New()
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual bool GetInputArrayRange(vtkInformationVector **inputVector, double range[2])
Returns the data range for the input array to process.
Extract histogram for parallel dataset.
Extract histogram data (binned values) from any dataset.