VTK
vtkExtractFunctionalBagPlot.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractFunctionalBagPlot.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
30 #ifndef vtkExtractFunctionalBagPlot_h
31 #define vtkExtractFunctionalBagPlot_h
32 
33 #include "vtkFiltersStatisticsModule.h" // For export macro
34 #include "vtkTableAlgorithm.h"
35 
36 
37 class VTKFILTERSSTATISTICS_EXPORT vtkExtractFunctionalBagPlot : public vtkTableAlgorithm
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
44  // Density value for the median quartile.
45  vtkSetMacro(DensityForP50, double);
46 
48 
51  vtkSetMacro(DensityForPUser, double);
52  vtkSetMacro(PUser, int);
54 
55 protected:
57  ~vtkExtractFunctionalBagPlot() override;
58 
61  vtkInformationVector*) override;
62 
63  char *P50String;
64  char *PUserString;
65  double DensityForP50;
67  int PUser;
68 
69 private:
71  void operator = ( const vtkExtractFunctionalBagPlot& ) = delete;
72 };
73 
74 #endif // vtkExtractFunctionalBagPlot_h
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.
From an input table containing series on port 0 and another table describing densities on port 1 (for...