VTK  9.1.0
vtkComputeQuartiles.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkComputeQuartiles.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=========================================================================*/
43#ifndef vtkComputeQuartiles_h
44#define vtkComputeQuartiles_h
45
46#include "vtkFiltersStatisticsModule.h" // For export macro
47#include "vtkTableAlgorithm.h"
48
49class vtkDataSet;
50class vtkDoubleArray;
51class vtkFieldData;
52class vtkTable;
53
54class VTKFILTERSSTATISTICS_EXPORT vtkComputeQuartiles : public vtkTableAlgorithm
55{
56public:
59 void PrintSelf(ostream& os, vtkIndent indent) override;
60
61protected:
64
66
67 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
68 vtkInformationVector* outputVector) override;
69
71
73
74private:
75 void operator=(const vtkComputeQuartiles&) = delete;
77
78 int GetInputFieldAssociation();
79 vtkFieldData* GetInputFieldData(vtkDataObject* input);
80};
81
82#endif
Extract quartiles and extremum values of all columns of a table or all fields of a dataset.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void ComputeTable(vtkDataObject *, vtkTable *, vtkIdType)
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
~vtkComputeQuartiles() override
static vtkComputeQuartiles * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
general representation of visualization data
Definition: vtkDataObject.h:69
abstract class to specify dataset behavior
Definition: vtkDataSet.h:66
dynamic, self-adjusting array of double
represent and manipulate fields of data
Definition: vtkFieldData.h:64
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkTables as output.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:72
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
int vtkIdType
Definition: vtkType.h:332