VTK  9.2.6
vtkPComputeQuartiles.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkPComputeQuartiles.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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2011 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
30 #ifndef vtkPComputeQuartiles_h
31 #define vtkPComputeQuartiles_h
32 
33 #include "vtkComputeQuartiles.h"
34 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
35 
36 class vtkOrderStatistics;
38 
39 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPComputeQuartiles : public vtkComputeQuartiles
40 {
41 public:
42  static vtkPComputeQuartiles* New();
44 
46 
50  virtual void SetController(vtkMultiProcessController*);
51  vtkGetObjectMacro(Controller, vtkMultiProcessController);
53 
54 protected:
56  ~vtkPComputeQuartiles() override;
57 
59 
61 
62 private:
64  void operator=(const vtkPComputeQuartiles&) = delete;
65 };
66 
67 #endif
virtual vtkOrderStatistics * CreateOrderStatisticsFilter()
vtkMultiProcessController * Controller
A class for univariate order statistics.
Extract quartiles and extremum values of all columns of a table or all fields of a dataset...
A class for parallel univariate order statistics.
static vtkComputeQuartiles * New()
Multiprocessing communication superclass.